Package com.io7m.coffeepick.api
Class CoffeePickCatalogEventRepositoryAdded
java.lang.Object
com.io7m.coffeepick.api.CoffeePickCatalogEventRepositoryAdded
- All Implemented Interfaces:
CoffeePickCatalogEventRepositoryAddedType
,CoffeePickCatalogEventType
,CoffeePickEventType
public final class CoffeePickCatalogEventRepositoryAdded extends java.lang.Object implements CoffeePickCatalogEventRepositoryAddedType
A repository was added to the registry.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CoffeePickCatalogEventRepositoryAdded.Builder
Builds instances of typeCoffeePickCatalogEventRepositoryAdded
.Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity
-
Method Summary
Modifier and Type Method Description static CoffeePickCatalogEventRepositoryAdded.Builder
builder()
Creates a builder forCoffeePickCatalogEventRepositoryAdded
.static CoffeePickCatalogEventRepositoryAdded
copyOf(CoffeePickCatalogEventRepositoryAddedType instance)
Creates an immutable copy of aCoffeePickCatalogEventRepositoryAddedType
value.boolean
equals(java.lang.Object another)
This instance is equal to all instances ofCoffeePickCatalogEventRepositoryAdded
that have equal attribute values.int
hashCode()
Computes a hash code from attributes:uri
.static CoffeePickCatalogEventRepositoryAdded
of(java.net.URI uri)
Construct a new immutableCoffeePickCatalogEventRepositoryAdded
instance.java.lang.String
toString()
Prints the immutable valueCoffeePickCatalogEventRepositoryAdded
with attribute values.java.net.URI
uri()
CoffeePickCatalogEventRepositoryAdded
withUri(java.net.URI value)
Copy the current immutable object by setting a value for theuri
attribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.io7m.coffeepick.api.CoffeePickCatalogEventRepositoryAddedType
severity
-
Method Details
-
uri
public java.net.URI uri()- Specified by:
uri
in interfaceCoffeePickCatalogEventRepositoryAddedType
- Returns:
- The URI of the repository
-
withUri
Copy the current immutable object by setting a value for theuri
attribute. 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
this
object
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRepositoryAdded
that have equal attribute values.- Overrides:
equals
in classjava.lang.Object
- Returns:
true
ifthis
is equal toanother
instance
-
hashCode
public int hashCode()Computes a hash code from attributes:uri
.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueCoffeePickCatalogEventRepositoryAdded
with attribute values.- Overrides:
toString
in classjava.lang.Object
- Returns:
- A string representation of the value
-
of
Construct a new immutableCoffeePickCatalogEventRepositoryAdded
instance.- Parameters:
uri
- The value for theuri
attribute- Returns:
- An immutable CoffeePickCatalogEventRepositoryAdded instance
-
copyOf
public static CoffeePickCatalogEventRepositoryAdded copyOf(CoffeePickCatalogEventRepositoryAddedType instance)Creates an immutable copy of aCoffeePickCatalogEventRepositoryAddedType
value. 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 CoffeePickCatalogEventRepositoryAdded instance
-
builder
Creates a builder forCoffeePickCatalogEventRepositoryAdded
.CoffeePickCatalogEventRepositoryAdded.builder() .setUri(java.net.URI) // required
uri
.build();- Returns:
- A new CoffeePickCatalogEventRepositoryAdded builder
-