Package com.io7m.coffeepick.api
Class CoffeePickCatalogEventRuntimeDownloadFinished
java.lang.Object
com.io7m.coffeepick.api.CoffeePickCatalogEventRuntimeDownloadFinished
- All Implemented Interfaces:
CoffeePickCatalogEventRuntimeDownloadFinishedType,CoffeePickCatalogEventType,CoffeePickEventType
public final class CoffeePickCatalogEventRuntimeDownloadFinished extends java.lang.Object implements CoffeePickCatalogEventRuntimeDownloadFinishedType
A download has finished.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickCatalogEventRuntimeDownloadFinished.BuilderBuilds instances of typeCoffeePickCatalogEventRuntimeDownloadFinished.Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity -
Method Summary
Modifier and Type Method Description static CoffeePickCatalogEventRuntimeDownloadFinished.Builderbuilder()Creates a builder forCoffeePickCatalogEventRuntimeDownloadFinished.static CoffeePickCatalogEventRuntimeDownloadFinishedcopyOf(CoffeePickCatalogEventRuntimeDownloadFinishedType instance)Creates an immutable copy of aCoffeePickCatalogEventRuntimeDownloadFinishedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRuntimeDownloadFinishedthat have equal attribute values.inthashCode()Computes a hash code from attributes:id.java.lang.Stringid()static CoffeePickCatalogEventRuntimeDownloadFinishedof(java.lang.String id)Construct a new immutableCoffeePickCatalogEventRuntimeDownloadFinishedinstance.java.lang.StringtoString()Prints the immutable valueCoffeePickCatalogEventRuntimeDownloadFinishedwith attribute values.CoffeePickCatalogEventRuntimeDownloadFinishedwithId(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.CoffeePickCatalogEventRuntimeDownloadFinishedType
severity
-
Method Details
-
id
public java.lang.String id()- Specified by:
idin interfaceCoffeePickCatalogEventRuntimeDownloadFinishedType- Returns:
- The ID of the runtime
-
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
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofCoffeePickCatalogEventRuntimeDownloadFinishedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:id.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueCoffeePickCatalogEventRuntimeDownloadFinishedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
Construct a new immutableCoffeePickCatalogEventRuntimeDownloadFinishedinstance.- Parameters:
id- The value for theidattribute- Returns:
- An immutable CoffeePickCatalogEventRuntimeDownloadFinished instance
-
copyOf
public static CoffeePickCatalogEventRuntimeDownloadFinished copyOf(CoffeePickCatalogEventRuntimeDownloadFinishedType instance)Creates an immutable copy of aCoffeePickCatalogEventRuntimeDownloadFinishedTypevalue. 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 CoffeePickCatalogEventRuntimeDownloadFinished instance
-
builder
Creates a builder forCoffeePickCatalogEventRuntimeDownloadFinished.CoffeePickCatalogEventRuntimeDownloadFinished.builder() .setId(String) // requiredid.build();- Returns:
- A new CoffeePickCatalogEventRuntimeDownloadFinished builder
-