Package com.io7m.coffeepick.api
Class CoffeePickCatalogEventRuntimeDownloadFailed
java.lang.Object
com.io7m.coffeepick.api.CoffeePickCatalogEventRuntimeDownloadFailed
- All Implemented Interfaces:
CoffeePickCatalogEventRuntimeDownloadFailedType,CoffeePickCatalogEventType,CoffeePickEventType
public final class CoffeePickCatalogEventRuntimeDownloadFailed extends java.lang.Object implements CoffeePickCatalogEventRuntimeDownloadFailedType
A download has failed.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickCatalogEventRuntimeDownloadFailed.BuilderBuilds instances of typeCoffeePickCatalogEventRuntimeDownloadFailed.Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity -
Method Summary
Modifier and Type Method Description static CoffeePickCatalogEventRuntimeDownloadFailed.Builderbuilder()Creates a builder forCoffeePickCatalogEventRuntimeDownloadFailed.static CoffeePickCatalogEventRuntimeDownloadFailedcopyOf(CoffeePickCatalogEventRuntimeDownloadFailedType instance)Creates an immutable copy of aCoffeePickCatalogEventRuntimeDownloadFailedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRuntimeDownloadFailedthat have equal attribute values.java.lang.Exceptionexception()inthashCode()Computes a hash code from attributes:id,exception.java.lang.Stringid()static CoffeePickCatalogEventRuntimeDownloadFailedof(java.lang.String id, java.lang.Exception exception)Construct a new immutableCoffeePickCatalogEventRuntimeDownloadFailedinstance.java.lang.StringtoString()Prints the immutable valueCoffeePickCatalogEventRuntimeDownloadFailedwith attribute values.CoffeePickCatalogEventRuntimeDownloadFailedwithException(java.lang.Exception value)Copy the current immutable object by setting a value for theexceptionattribute.CoffeePickCatalogEventRuntimeDownloadFailedwithId(java.lang.String value)Copy the current immutable object by setting a value for theidattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.coffeepick.api.CoffeePickCatalogEventRuntimeDownloadFailedType
severity
-
Method Details
-
id
public java.lang.String id()- Specified by:
idin interfaceCoffeePickCatalogEventRuntimeDownloadFailedType- Returns:
- The ID of the runtime
-
exception
public java.lang.Exception exception()- Specified by:
exceptionin interfaceCoffeePickCatalogEventRuntimeDownloadFailedType- Returns:
- The exception raised
-
withId
Copy the current immutable object by setting a value for theidattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for id- 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 ofCoffeePickCatalogEventRuntimeDownloadFailedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:id,exception.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueCoffeePickCatalogEventRuntimeDownloadFailedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static CoffeePickCatalogEventRuntimeDownloadFailed of(java.lang.String id, java.lang.Exception exception)Construct a new immutableCoffeePickCatalogEventRuntimeDownloadFailedinstance.- Parameters:
id- The value for theidattributeexception- The value for theexceptionattribute- Returns:
- An immutable CoffeePickCatalogEventRuntimeDownloadFailed instance
-
copyOf
public static CoffeePickCatalogEventRuntimeDownloadFailed copyOf(CoffeePickCatalogEventRuntimeDownloadFailedType instance)Creates an immutable copy of aCoffeePickCatalogEventRuntimeDownloadFailedTypevalue. 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 CoffeePickCatalogEventRuntimeDownloadFailed instance
-
builder
Creates a builder forCoffeePickCatalogEventRuntimeDownloadFailed.CoffeePickCatalogEventRuntimeDownloadFailed.builder() .setId(String) // requiredid.setException(Exception) // requiredexception.build();- Returns:
- A new CoffeePickCatalogEventRuntimeDownloadFailed builder
-