Package com.io7m.coffeepick.api
Class CoffeePickCatalogEventRepositoryRemoved
java.lang.Object
com.io7m.coffeepick.api.CoffeePickCatalogEventRepositoryRemoved
- All Implemented Interfaces:
CoffeePickCatalogEventRepositoryRemovedType,CoffeePickCatalogEventType,CoffeePickEventType
public final class CoffeePickCatalogEventRepositoryRemoved extends java.lang.Object implements CoffeePickCatalogEventRepositoryRemovedType
A repository was removed from the registry.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickCatalogEventRepositoryRemoved.BuilderBuilds instances of typeCoffeePickCatalogEventRepositoryRemoved.Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity -
Method Summary
Modifier and Type Method Description static CoffeePickCatalogEventRepositoryRemoved.Builderbuilder()Creates a builder forCoffeePickCatalogEventRepositoryRemoved.static CoffeePickCatalogEventRepositoryRemovedcopyOf(CoffeePickCatalogEventRepositoryRemovedType instance)Creates an immutable copy of aCoffeePickCatalogEventRepositoryRemovedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRepositoryRemovedthat have equal attribute values.inthashCode()Computes a hash code from attributes:uri.static CoffeePickCatalogEventRepositoryRemovedof(java.net.URI uri)Construct a new immutableCoffeePickCatalogEventRepositoryRemovedinstance.java.lang.StringtoString()Prints the immutable valueCoffeePickCatalogEventRepositoryRemovedwith attribute values.java.net.URIuri()CoffeePickCatalogEventRepositoryRemovedwithUri(java.net.URI value)Copy the current immutable object by setting a value for theuriattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.coffeepick.api.CoffeePickCatalogEventRepositoryRemovedType
severity
-
Method Details
-
uri
public java.net.URI uri()- Specified by:
uriin interfaceCoffeePickCatalogEventRepositoryRemovedType- Returns:
- The URI of the repository
-
withUri
Copy the current immutable object by setting a value for theuriattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for uri- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRepositoryRemovedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:uri.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueCoffeePickCatalogEventRepositoryRemovedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
Construct a new immutableCoffeePickCatalogEventRepositoryRemovedinstance.- Parameters:
uri- The value for theuriattribute- Returns:
- An immutable CoffeePickCatalogEventRepositoryRemoved instance
-
copyOf
public static CoffeePickCatalogEventRepositoryRemoved copyOf(CoffeePickCatalogEventRepositoryRemovedType instance)Creates an immutable copy of aCoffeePickCatalogEventRepositoryRemovedTypevalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable CoffeePickCatalogEventRepositoryRemoved instance
-
builder
Creates a builder forCoffeePickCatalogEventRepositoryRemoved.CoffeePickCatalogEventRepositoryRemoved.builder() .setUri(java.net.URI) // requireduri.build();- Returns:
- A new CoffeePickCatalogEventRepositoryRemoved builder
-