Package com.io7m.coffeepick.api
Class CoffeePickTaskEventFailed
- java.lang.Object
-
- com.io7m.coffeepick.api.CoffeePickTaskEventFailed
-
- All Implemented Interfaces:
CoffeePickEventType,CoffeePickTaskEventFailedType,CoffeePickTaskEventType
public final class CoffeePickTaskEventFailed extends java.lang.Object implements CoffeePickTaskEventFailedType
A task has completed with an error.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classCoffeePickTaskEventFailed.BuilderBuilds instances of typeCoffeePickTaskEventFailed.-
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 CoffeePickTaskEventFailed.Builderbuilder()Creates a builder forCoffeePickTaskEventFailed.static CoffeePickTaskEventFailedcopyOf(CoffeePickTaskEventFailedType instance)Creates an immutable copy of aCoffeePickTaskEventFailedTypevalue.java.lang.Stringdescription()booleanequals(java.lang.Object another)This instance is equal to all instances ofCoffeePickTaskEventFailedthat have equal attribute values.inthashCode()Computes a hash code from attributes:description.java.lang.StringtoString()Prints the immutable valueCoffeePickTaskEventFailedwith attribute values.CoffeePickTaskEventFailedwithDescription(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.CoffeePickTaskEventFailedType
severity
-
-
-
-
Method Detail
-
description
public java.lang.String description()
- Specified by:
descriptionin interfaceCoffeePickTaskEventFailedType- Specified by:
descriptionin interfaceCoffeePickTaskEventType- Returns:
- The value of the
descriptionattribute
-
withDescription
public final CoffeePickTaskEventFailed 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 ofCoffeePickTaskEventFailedthat 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 valueCoffeePickTaskEventFailedwith attribute values.- Overrides:
toStringin classjava.lang.Object- Returns:
- A string representation of the value
-
copyOf
public static CoffeePickTaskEventFailed copyOf(CoffeePickTaskEventFailedType instance)
Creates an immutable copy of aCoffeePickTaskEventFailedTypevalue. 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 CoffeePickTaskEventFailed instance
-
builder
public static CoffeePickTaskEventFailed.Builder builder()
Creates a builder forCoffeePickTaskEventFailed.CoffeePickTaskEventFailed.builder() .setDescription(String) // requireddescription.build();- Returns:
- A new CoffeePickTaskEventFailed builder
-
-