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
All Methods Static Methods Instance Methods Concrete Methods 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.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.io7m.coffeepick.api.CoffeePickTaskEventStartedType
severity
-
-
-
-
Method Detail
-
description
public java.lang.String description()
- Specified by:
descriptionin interfaceCoffeePickTaskEventStartedType- Specified by:
descriptionin interfaceCoffeePickTaskEventType- Returns:
- The value of the
descriptionattribute
-
withDescription
public final CoffeePickTaskEventStarted withDescription(java.lang.String value)
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
public static CoffeePickTaskEventStarted copyOf(CoffeePickTaskEventStartedType instance)
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
public static CoffeePickTaskEventStarted.Builder builder()
Creates a builder forCoffeePickTaskEventStarted.CoffeePickTaskEventStarted.builder() .setDescription(String) // requireddescription.build();- Returns:
- A new CoffeePickTaskEventStarted builder
-
-