Package com.io7m.coffeepick.api
Class CoffeePickTaskEventStarted
java.lang.Object
com.io7m.coffeepick.api.CoffeePickTaskEventStarted
- All Implemented Interfaces:
CoffeePickEventType,CoffeePickTaskEventStartedType,CoffeePickTaskEventType
public final class CoffeePickTaskEventStarted extends java.lang.Object implements CoffeePickTaskEventStartedType
A task has started.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickTaskEventStarted.BuilderBuilds instances of typeCoffeePickTaskEventStarted.Nested classes/interfaces inherited from interface com.io7m.coffeepick.api.CoffeePickEventType
CoffeePickEventType.Severity -
Method Summary
Modifier and Type Method Description static CoffeePickTaskEventStarted.Builderbuilder()Creates a builder forCoffeePickTaskEventStarted.static CoffeePickTaskEventStartedcopyOf(CoffeePickTaskEventStartedType instance)Creates an immutable copy of aCoffeePickTaskEventStartedTypevalue.java.lang.Stringdescription()booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickTaskEventStartedthat have equal attribute values.inthashCode()Computes a hash code from attributes:description.java.lang.StringtoString()Prints the immutable valueCoffeePickTaskEventStartedwith attribute values.CoffeePickTaskEventStartedwithDescription(java.lang.String value)Copy the current immutable object by setting a value for thedescriptionattribute.
-
Method Details
-
description
public java.lang.String description()- Specified by:
descriptionin interfaceCoffeePickTaskEventStartedType- Specified by:
descriptionin interfaceCoffeePickTaskEventType- Returns:
- The value of the
descriptionattribute
-
withDescription
Copy the current immutable object by setting a value for thedescriptionattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for description- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(java.lang.Object another)This instance is equal to all instances ofCoffeePickTaskEventStartedthat have equal attribute values.- Overrides:
equalsin classjava.lang.Object- Returns:
trueifthisis equal toanotherinstance
-
hashCode
public int hashCode()Computes a hash code from attributes:description.- Overrides:
hashCodein classjava.lang.Object- Returns:
- hashCode value
-
toString
public java.lang.String toString()Prints the immutable valueCoffeePickTaskEventStartedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
copyOf
Creates an immutable copy of aCoffeePickTaskEventStartedTypevalue. 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 CoffeePickTaskEventStarted instance
-
builder
Creates a builder forCoffeePickTaskEventStarted.CoffeePickTaskEventStarted.builder() .setDescription(String) // requireddescription.build();- Returns:
- A new CoffeePickTaskEventStarted builder
-