Class ImmutableCheckRunEvent.Builder
- java.lang.Object
-
- com.spotify.github.v3.activity.events.ImmutableCheckRunEvent.Builder
-
- Enclosing class:
- ImmutableCheckRunEvent
@NotThreadSafe public static final class ImmutableCheckRunEvent.Builder extends Object
Builds instances of typeImmutableCheckRunEvent. 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 ImmutableCheckRunEvent.Builderaction(String action)Initializes the value for theactionattribute.ImmutableCheckRunEventbuild()Builds a newImmutableCheckRunEvent.ImmutableCheckRunEvent.BuildercheckRun(CheckRunResponse checkRun)Initializes the value for thecheckRunattribute.ImmutableCheckRunEvent.BuildercreatedAt(GitHubInstant createdAt)Initializes the value for thecreatedAtattribute.ImmutableCheckRunEvent.BuildereventInstallation(EventInstallation eventInstallation)Initializes the value for theeventInstallationattribute.ImmutableCheckRunEvent.Builderfrom(UpdateTracking instance)Fill a builder with attribute values from the providedcom.spotify.github.UpdateTrackinginstance.ImmutableCheckRunEvent.Builderfrom(BaseEvent instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.BaseEventinstance.ImmutableCheckRunEvent.Builderfrom(CheckRunEvent instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.CheckRunEventinstance.ImmutableCheckRunEvent.Builderrepository(Repository repository)Initializes the value for therepositoryattribute.ImmutableCheckRunEvent.Buildersender(User sender)Initializes the value for thesenderattribute.ImmutableCheckRunEvent.BuilderupdatedAt(GitHubInstant updatedAt)Initializes the value for theupdatedAtattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.Builder from(CheckRunEvent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.activity.events.CheckRunEventinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.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
-
from
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.Builder from(UpdateTracking instance)
Fill a builder with attribute values from the providedcom.spotify.github.UpdateTrackinginstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
repository
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.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 ImmutableCheckRunEvent.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 ImmutableCheckRunEvent.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
-
createdAt
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.Builder createdAt(@Nullable GitHubInstant createdAt)
Initializes the value for thecreatedAtattribute.- Parameters:
createdAt- The value for createdAt (can benull)- Returns:
thisbuilder for use in a chained invocation
-
updatedAt
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.Builder updatedAt(@Nullable GitHubInstant updatedAt)
Initializes the value for theupdatedAtattribute.- Parameters:
updatedAt- The value for updatedAt (can benull)- Returns:
thisbuilder for use in a chained invocation
-
action
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.Builder action(@Nullable String action)
Initializes the value for theactionattribute.- Parameters:
action- The value for action (can benull)- Returns:
thisbuilder for use in a chained invocation
-
checkRun
@CanIgnoreReturnValue public final ImmutableCheckRunEvent.Builder checkRun(@Nullable CheckRunResponse checkRun)
Initializes the value for thecheckRunattribute.- Parameters:
checkRun- The value for checkRun (can benull)- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableCheckRunEvent build()
Builds a newImmutableCheckRunEvent.- Returns:
- An immutable instance of CheckRunEvent
- Throws:
IllegalStateException- if any required attributes are missing
-
-