Package com.io7m.coffeepick.api
Class CoffeePickCatalogEventRepositoryUpdateFailed
java.lang.Object
com.io7m.coffeepick.api.CoffeePickCatalogEventRepositoryUpdateFailed
- All Implemented Interfaces:
CoffeePickCatalogEventRepositoryUpdateFailedType,CoffeePickCatalogEventType,CoffeePickEventType
public final class CoffeePickCatalogEventRepositoryUpdateFailed extends java.lang.Object implements CoffeePickCatalogEventRepositoryUpdateFailedType
An update of the catalog failed.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickCatalogEventRepositoryUpdateFailed.BuilderBuilds instances of typeCoffeePickCatalogEventRepositoryUpdateFailed.Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity -
Method Summary
Modifier and Type Method Description static CoffeePickCatalogEventRepositoryUpdateFailed.Builderbuilder()Creates a builder forCoffeePickCatalogEventRepositoryUpdateFailed.static CoffeePickCatalogEventRepositoryUpdateFailedcopyOf(CoffeePickCatalogEventRepositoryUpdateFailedType instance)Creates an immutable copy of aCoffeePickCatalogEventRepositoryUpdateFailedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRepositoryUpdateFailedthat have equal attribute values.java.lang.Exceptionexception()inthashCode()Computes a hash code from attributes:uri,exception.static CoffeePickCatalogEventRepositoryUpdateFailedof(java.net.URI uri, java.lang.Exception exception)Construct a new immutableCoffeePickCatalogEventRepositoryUpdateFailedinstance.java.lang.StringtoString()Prints the immutable valueCoffeePickCatalogEventRepositoryUpdateFailedwith attribute values.java.net.URIuri()CoffeePickCatalogEventRepositoryUpdateFailedwithException(java.lang.Exception value)Copy the current immutable object by setting a value for theexceptionattribute.CoffeePickCatalogEventRepositoryUpdateFailedwithUri(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.CoffeePickCatalogEventRepositoryUpdateFailedType
severity
-
Method Details
-
uri
public java.net.URI uri()- Specified by:
uriin interfaceCoffeePickCatalogEventRepositoryUpdateFailedType- Returns:
- The URI of the repository
-
exception
public java.lang.Exception exception()- Specified by:
exceptionin interfaceCoffeePickCatalogEventRepositoryUpdateFailedType- Returns:
- The exception
-
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
-
withException
Copy the current immutable object by setting a value for theexceptionattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for exception- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRepositoryUpdateFailedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:uri,exception.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueCoffeePickCatalogEventRepositoryUpdateFailedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static CoffeePickCatalogEventRepositoryUpdateFailed of(java.net.URI uri, java.lang.Exception exception)Construct a new immutableCoffeePickCatalogEventRepositoryUpdateFailedinstance.- Parameters:
uri- The value for theuriattributeexception- The value for theexceptionattribute- Returns:
- An immutable CoffeePickCatalogEventRepositoryUpdateFailed instance
-
copyOf
public static CoffeePickCatalogEventRepositoryUpdateFailed copyOf(CoffeePickCatalogEventRepositoryUpdateFailedType instance)Creates an immutable copy of aCoffeePickCatalogEventRepositoryUpdateFailedTypevalue. 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 CoffeePickCatalogEventRepositoryUpdateFailed instance
-
builder
Creates a builder forCoffeePickCatalogEventRepositoryUpdateFailed.CoffeePickCatalogEventRepositoryUpdateFailed.builder() .setUri(java.net.URI) // requireduri.setException(Exception) // requiredexception.build();- Returns:
- A new CoffeePickCatalogEventRepositoryUpdateFailed builder
-