Package com.io7m.coffeepick.api
Class CoffeePickInventoryEventRuntimeLoaded
- java.lang.Object
-
- com.io7m.coffeepick.api.CoffeePickInventoryEventRuntimeLoaded
-
- All Implemented Interfaces:
CoffeePickEventType,CoffeePickInventoryEventRuntimeLoadedType,CoffeePickInventoryEventType
public final class CoffeePickInventoryEventRuntimeLoaded extends java.lang.Object implements CoffeePickInventoryEventRuntimeLoadedType
A runtime was loaded.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickInventoryEventRuntimeLoaded.BuilderBuilds instances of typeCoffeePickInventoryEventRuntimeLoaded.-
Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CoffeePickInventoryEventRuntimeLoaded.Builderbuilder()Creates a builder forCoffeePickInventoryEventRuntimeLoaded.static CoffeePickInventoryEventRuntimeLoadedcopyOf(CoffeePickInventoryEventRuntimeLoadedType instance)Creates an immutable copy of aCoffeePickInventoryEventRuntimeLoadedTypevalue.booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickInventoryEventRuntimeLoadedthat have equal attribute values.inthashCode()Computes a hash code from attributes:id.java.lang.Stringid()static CoffeePickInventoryEventRuntimeLoadedof(java.lang.String id)Construct a new immutableCoffeePickInventoryEventRuntimeLoadedinstance.java.lang.StringtoString()Prints the immutable valueCoffeePickInventoryEventRuntimeLoadedwith attribute values.CoffeePickInventoryEventRuntimeLoadedwithId(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, wait
-
Methods inherited from interface com.io7m.coffeepick.api.CoffeePickInventoryEventRuntimeLoadedType
severity
-
-
-
-
Method Detail
-
id
public java.lang.String id()
- Specified by:
idin interfaceCoffeePickInventoryEventRuntimeLoadedType- Returns:
- The ID of the runtime
-
withId
public final CoffeePickInventoryEventRuntimeLoaded withId(java.lang.String value)
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 ofCoffeePickInventoryEventRuntimeLoadedthat 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 valueCoffeePickInventoryEventRuntimeLoadedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
of
public static CoffeePickInventoryEventRuntimeLoaded of(java.lang.String id)
Construct a new immutableCoffeePickInventoryEventRuntimeLoadedinstance.- Parameters:
id- The value for theidattribute- Returns:
- An immutable CoffeePickInventoryEventRuntimeLoaded instance
-
copyOf
public static CoffeePickInventoryEventRuntimeLoaded copyOf(CoffeePickInventoryEventRuntimeLoadedType instance)
Creates an immutable copy of aCoffeePickInventoryEventRuntimeLoadedTypevalue. 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 CoffeePickInventoryEventRuntimeLoaded instance
-
builder
public static CoffeePickInventoryEventRuntimeLoaded.Builder builder()
Creates a builder forCoffeePickInventoryEventRuntimeLoaded.CoffeePickInventoryEventRuntimeLoaded.builder() .setId(String) // requiredid.build();- Returns:
- A new CoffeePickInventoryEventRuntimeLoaded builder
-
-