Class ImmutableEventInstallation
- java.lang.Object
-
- com.spotify.github.v3.activity.events.ImmutableEventInstallation
-
- All Implemented Interfaces:
EventInstallation
@ParametersAreNonnullByDefault @Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableEventInstallation extends Object implements EventInstallation
Immutable implementation ofEventInstallation
.Use the builder to create immutable instances:
ImmutableEventInstallation.builder()
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ImmutableEventInstallation.Builder
Builds instances of typeImmutableEventInstallation
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImmutableEventInstallation.Builder
builder()
Creates a builder forImmutableEventInstallation
.static ImmutableEventInstallation
copyOf(EventInstallation instance)
Creates an immutable copy of aEventInstallation
value.boolean
equals(Object another)
This instance is equal to all instances ofImmutableEventInstallation
that have equal attribute values.int
hashCode()
Computes a hash code from attributes:id
.Integer
id()
The Installation ID.String
toString()
Prints the immutable valueEventInstallation
with attribute values.ImmutableEventInstallation
withId(Integer value)
Copy the current immutable object by setting a value for theid
attribute.
-
-
-
Method Detail
-
id
public Integer id()
The Installation ID.- Specified by:
id
in interfaceEventInstallation
- Returns:
- the ID
-
withId
public final ImmutableEventInstallation withId(Integer value)
Copy the current immutable object by setting a value for theid
attribute. 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
this
object
-
equals
public boolean equals(@Nullable Object another)
This instance is equal to all instances ofImmutableEventInstallation
that have equal attribute values.
-
hashCode
public int hashCode()
Computes a hash code from attributes:id
.
-
toString
public String toString()
Prints the immutable valueEventInstallation
with attribute values.
-
copyOf
public static ImmutableEventInstallation copyOf(EventInstallation instance)
Creates an immutable copy of aEventInstallation
value. 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 EventInstallation instance
-
builder
public static ImmutableEventInstallation.Builder builder()
Creates a builder forImmutableEventInstallation
.ImmutableEventInstallation.builder() .id(Integer) // required
id
.build();- Returns:
- A new ImmutableEventInstallation builder
-
-