Package com.spotify.github.v3.issues
Class ImmutableLabel
- java.lang.Object
-
- com.spotify.github.v3.issues.ImmutableLabel
-
- All Implemented Interfaces:
Label
@ParametersAreNonnullByDefault @Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableLabel extends Object implements Label
Immutable implementation ofLabel.Use the builder to create immutable instances:
ImmutableLabel.builder().
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImmutableLabel.BuilderBuilds instances of typeImmutableLabel.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImmutableLabel.Builderbuilder()Creates a builder forImmutableLabel.Stringcolor()Colorstatic ImmutableLabelcopyOf(Label instance)Creates an immutable copy of aLabelvalue.Stringdescription()booleanequals(Object another)This instance is equal to all instances ofImmutableLabelthat have equal attribute values.inthashCode()Computes a hash code from attributes:id,nodeId,url,name,color,description,isDefault.Longid()IdbooleanisDefault()DefaultStringname()NameStringnodeId()StringtoString()Prints the immutable valueLabelwith attribute values.URIurl()URLImmutableLabelwithColor(String value)Copy the current immutable object by setting a value for thecolorattribute.ImmutableLabelwithDescription(String value)Copy the current immutable object by setting a value for thedescriptionattribute.ImmutableLabelwithId(Long value)Copy the current immutable object by setting a value for theidattribute.ImmutableLabelwithIsDefault(boolean value)Copy the current immutable object by setting a value for theisDefaultattribute.ImmutableLabelwithName(String value)Copy the current immutable object by setting a value for thenameattribute.ImmutableLabelwithNodeId(String value)Copy the current immutable object by setting a value for thenodeIdattribute.ImmutableLabelwithUrl(URI value)Copy the current immutable object by setting a value for theurlattribute.
-
-
-
Method Detail
-
nodeId
@Nullable public String nodeId()
-
description
@Nullable public String description()
- Specified by:
descriptionin interfaceLabel- Returns:
- The value of the
descriptionattribute
-
withId
public final ImmutableLabel withId(Long 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
-
withNodeId
public final ImmutableLabel withNodeId(@Nullable String value)
Copy the current immutable object by setting a value for thenodeIdattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for nodeId (can benull)- Returns:
- A modified copy of the
thisobject
-
withUrl
public final ImmutableLabel withUrl(@Nullable URI value)
Copy the current immutable object by setting a value for theurlattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for url (can benull)- Returns:
- A modified copy of the
thisobject
-
withName
public final ImmutableLabel withName(@Nullable String value)
Copy the current immutable object by setting a value for thenameattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for name (can benull)- Returns:
- A modified copy of the
thisobject
-
withColor
public final ImmutableLabel withColor(@Nullable String value)
Copy the current immutable object by setting a value for thecolorattribute. An equals check used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for color (can benull)- Returns:
- A modified copy of the
thisobject
-
withDescription
public final ImmutableLabel withDescription(@Nullable 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 (can benull)- Returns:
- A modified copy of the
thisobject
-
withIsDefault
public final ImmutableLabel withIsDefault(boolean value)
Copy the current immutable object by setting a value for theisDefaultattribute. A value equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for isDefault- Returns:
- A modified copy of the
thisobject
-
equals
public boolean equals(@Nullable Object another)This instance is equal to all instances ofImmutableLabelthat have equal attribute values.
-
hashCode
public int hashCode()
Computes a hash code from attributes:id,nodeId,url,name,color,description,isDefault.
-
toString
public String toString()
Prints the immutable valueLabelwith attribute values.
-
copyOf
public static ImmutableLabel copyOf(Label instance)
Creates an immutable copy of aLabelvalue. 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 Label instance
-
builder
public static ImmutableLabel.Builder builder()
Creates a builder forImmutableLabel.ImmutableLabel.builder() .id(Long) // requiredid.nodeId(String | null) // nullablenodeId.url(java.net.URI | null) // nullableurl.name(String | null) // nullablename.color(String | null) // nullablecolor.description(String | null) // nullabledescription.isDefault(boolean) // requiredisDefault.build();- Returns:
- A new ImmutableLabel builder
-
-