Class ImmutableIssuesEvent.Builder
- java.lang.Object
-
- com.spotify.github.v3.activity.events.ImmutableIssuesEvent.Builder
-
- Enclosing class:
- ImmutableIssuesEvent
@NotThreadSafe public static final class ImmutableIssuesEvent.Builder extends Object
Builds instances of typeImmutableIssuesEvent
. Initialize attributes and then invoke thebuild()
method to create an immutable instance.Builder
is 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 ImmutableIssuesEvent.Builder
action(String action)
Initializes the value for theaction
attribute.ImmutableIssuesEvent
build()
Builds a newImmutableIssuesEvent
.ImmutableIssuesEvent.Builder
eventInstallation(EventInstallation eventInstallation)
Initializes the value for theeventInstallation
attribute.ImmutableIssuesEvent.Builder
from(BaseEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.BaseEvent
instance.ImmutableIssuesEvent.Builder
from(IssuesEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.IssuesEvent
instance.ImmutableIssuesEvent.Builder
issue(Issue issue)
Initializes the value for theissue
attribute.ImmutableIssuesEvent.Builder
repository(Repository repository)
Initializes the value for therepository
attribute.ImmutableIssuesEvent.Builder
sender(User sender)
Initializes the value for thesender
attribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder from(IssuesEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.IssuesEvent
instance.- Parameters:
instance
- The instance from which to copy values- Returns:
this
builder for use in a chained invocation
-
from
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder from(BaseEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.BaseEvent
instance.- Parameters:
instance
- The instance from which to copy values- Returns:
this
builder for use in a chained invocation
-
repository
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder repository(@Nullable Repository repository)
Initializes the value for therepository
attribute.- Parameters:
repository
- The value for repository (can benull
)- Returns:
this
builder for use in a chained invocation
-
sender
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder sender(@Nullable User sender)
Initializes the value for thesender
attribute.- Parameters:
sender
- The value for sender (can benull
)- Returns:
this
builder for use in a chained invocation
-
eventInstallation
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder eventInstallation(@Nullable EventInstallation eventInstallation)
Initializes the value for theeventInstallation
attribute.- Parameters:
eventInstallation
- The value for eventInstallation (can benull
)- Returns:
this
builder for use in a chained invocation
-
action
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder action(@Nullable String action)
Initializes the value for theaction
attribute.- Parameters:
action
- The value for action (can benull
)- Returns:
this
builder for use in a chained invocation
-
issue
@CanIgnoreReturnValue public final ImmutableIssuesEvent.Builder issue(@Nullable Issue issue)
Initializes the value for theissue
attribute.- Parameters:
issue
- The value for issue (can benull
)- Returns:
this
builder for use in a chained invocation
-
build
public ImmutableIssuesEvent build()
Builds a newImmutableIssuesEvent
.- Returns:
- An immutable instance of IssuesEvent
- Throws:
IllegalStateException
- if any required attributes are missing
-
-