Package tech.kronicle.sdk.models
Class Test
- java.lang.Object
-
- tech.kronicle.sdk.models.Test
-
public final class Test extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTest.TestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Test.TestBuilderbuilder()booleanequals(java.lang.Object o)java.lang.StringgetDescription()java.lang.StringgetId()java.lang.StringgetNotes()PrioritygetPriority()inthashCode()Test.TestBuildertoBuilder()java.lang.StringtoString()TestwithDescription(java.lang.String description)TestwithId(java.lang.String id)TestwithNotes(java.lang.String notes)TestwithPriority(Priority priority)
-
-
-
Constructor Detail
-
Test
@ConstructorProperties({"id","description","notes","priority"}) public Test(java.lang.String id, java.lang.String description, java.lang.String notes, Priority priority)
-
-
Method Detail
-
builder
public static Test.TestBuilder builder()
-
toBuilder
public Test.TestBuilder toBuilder()
-
getId
public java.lang.String getId()
-
getDescription
public java.lang.String getDescription()
-
getNotes
public java.lang.String getNotes()
-
getPriority
public Priority getPriority()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
withId
public Test withId(java.lang.String id)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withDescription
public Test withDescription(java.lang.String description)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
withNotes
public Test withNotes(java.lang.String notes)
- Returns:
- a clone of this object, except with this updated property (returns
thisif an identical value is passed).
-
-