Class ImmutableSuspensionReason.Builder
- java.lang.Object
-
- com.spotify.github.v3.user.requests.ImmutableSuspensionReason.Builder
-
- Enclosing class:
- ImmutableSuspensionReason
@NotThreadSafe public static final class ImmutableSuspensionReason.Builder extends Object
Builds instances of typeImmutableSuspensionReason. Initialize attributes and then invoke thebuild()method to create an immutable instance.Builderis not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImmutableSuspensionReasonbuild()Builds a newImmutableSuspensionReason.ImmutableSuspensionReason.Builderfrom(SuspensionReason instance)Fill a builder with attribute values from the providedSuspensionReasoninstance.ImmutableSuspensionReason.Builderreason(String reason)Initializes the value for thereasonattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableSuspensionReason.Builder from(SuspensionReason instance)
Fill a builder with attribute values from the providedSuspensionReasoninstance. Regular attribute values will be replaced with those from the given instance. Absent optional values will not replace present values.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
reason
@CanIgnoreReturnValue public final ImmutableSuspensionReason.Builder reason(String reason)
Initializes the value for thereasonattribute.- Parameters:
reason- The value for reason- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableSuspensionReason build()
Builds a newImmutableSuspensionReason.- Returns:
- An immutable instance of SuspensionReason
- Throws:
IllegalStateException- if any required attributes are missing
-
-