Class ImmutableDeleteEvent.Builder
- java.lang.Object
-
- com.spotify.github.v3.activity.events.ImmutableDeleteEvent.Builder
-
- Enclosing class:
- ImmutableDeleteEvent
@NotThreadSafe public static final class ImmutableDeleteEvent.Builder extends Object
Builds instances of typeImmutableDeleteEvent. 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 ImmutableDeleteEventbuild()Builds a newImmutableDeleteEvent.ImmutableDeleteEvent.BuildereventInstallation(EventInstallation eventInstallation)Initializes the value for theeventInstallationattribute.ImmutableDeleteEvent.Builderfrom(BaseEvent instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.BaseEventinstance.ImmutableDeleteEvent.Builderfrom(DeleteEvent instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.DeleteEventinstance.ImmutableDeleteEvent.BuilderpusherType(String pusherType)Initializes the value for thepusherTypeattribute.ImmutableDeleteEvent.Builderref(String ref)Initializes the value for therefattribute.ImmutableDeleteEvent.BuilderrefType(String refType)Initializes the value for therefTypeattribute.ImmutableDeleteEvent.Builderrepository(Repository repository)Initializes the value for therepositoryattribute.ImmutableDeleteEvent.Buildersender(User sender)Initializes the value for thesenderattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder from(DeleteEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.DeleteEventinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder from(BaseEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.BaseEventinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
repository
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder repository(@Nullable Repository repository)
Initializes the value for therepositoryattribute.- Parameters:
repository- The value for repository (can benull)- Returns:
thisbuilder for use in a chained invocation
-
sender
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder sender(@Nullable User sender)
Initializes the value for thesenderattribute.- Parameters:
sender- The value for sender (can benull)- Returns:
thisbuilder for use in a chained invocation
-
eventInstallation
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder eventInstallation(@Nullable EventInstallation eventInstallation)
Initializes the value for theeventInstallationattribute.- Parameters:
eventInstallation- The value for eventInstallation (can benull)- Returns:
thisbuilder for use in a chained invocation
-
ref
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder ref(@Nullable String ref)
Initializes the value for therefattribute.- Parameters:
ref- The value for ref (can benull)- Returns:
thisbuilder for use in a chained invocation
-
refType
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder refType(@Nullable String refType)
Initializes the value for therefTypeattribute.- Parameters:
refType- The value for refType (can benull)- Returns:
thisbuilder for use in a chained invocation
-
pusherType
@CanIgnoreReturnValue public final ImmutableDeleteEvent.Builder pusherType(@Nullable String pusherType)
Initializes the value for thepusherTypeattribute.- Parameters:
pusherType- The value for pusherType (can benull)- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableDeleteEvent build()
Builds a newImmutableDeleteEvent.- Returns:
- An immutable instance of DeleteEvent
- Throws:
IllegalStateException- if any required attributes are missing
-
-