Package com.spotify.github.v3.repos
Class ImmutableContent.Builder
- java.lang.Object
-
- com.spotify.github.v3.repos.ImmutableContent.Builder
-
- Enclosing class:
- ImmutableContent
@NotThreadSafe public static final class ImmutableContent.Builder extends Object
Builds instances of typeImmutableContent. 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 ImmutableContentbuild()Builds a newImmutableContent.ImmutableContent.Buildercontent(String content)Initializes the value for thecontentattribute.ImmutableContent.BuilderdownloadUrl(URI downloadUrl)Initializes the value for thedownloadUrlattribute.ImmutableContent.Builderencoding(String encoding)Initializes the value for theencodingattribute.ImmutableContent.Builderfrom(ShaLink instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.git.ShaLinkinstance.ImmutableContent.Builderfrom(Content instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.repos.Contentinstance.ImmutableContent.Builderfrom(FolderContent instance)Fill a builder with attribute values from the providedcom.spotify.github.v3.repos.FolderContentinstance.ImmutableContent.BuildergitUrl(URI gitUrl)Initializes the value for thegitUrlattribute.ImmutableContent.BuilderhtmlUrl(URI htmlUrl)Initializes the value for thehtmlUrlattribute.ImmutableContent.Buildername(String name)Initializes the value for thenameattribute.ImmutableContent.Builderpath(String path)Initializes the value for thepathattribute.ImmutableContent.Buildersha(String sha)Initializes the value for theshaattribute.ImmutableContent.Buildersize(Integer size)Initializes the value for thesizeattribute.ImmutableContent.Buildertype(String type)Initializes the value for thetypeattribute.ImmutableContent.Builderurl(URI url)Initializes the value for theurlattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableContent.Builder from(FolderContent instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.repos.FolderContentinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
@CanIgnoreReturnValue public final ImmutableContent.Builder from(ShaLink instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.git.ShaLinkinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
from
@CanIgnoreReturnValue public final ImmutableContent.Builder from(Content instance)
Fill a builder with attribute values from the providedcom.spotify.github.v3.repos.Contentinstance.- Parameters:
instance- The instance from which to copy values- Returns:
thisbuilder for use in a chained invocation
-
sha
@CanIgnoreReturnValue public final ImmutableContent.Builder sha(@Nullable String sha)
Initializes the value for theshaattribute.- Parameters:
sha- The value for sha (can benull)- Returns:
thisbuilder for use in a chained invocation
-
url
@CanIgnoreReturnValue public final ImmutableContent.Builder url(@Nullable URI url)
Initializes the value for theurlattribute.- Parameters:
url- The value for url (can benull)- Returns:
thisbuilder for use in a chained invocation
-
type
@CanIgnoreReturnValue public final ImmutableContent.Builder type(@Nullable String type)
Initializes the value for thetypeattribute.- Parameters:
type- The value for type (can benull)- Returns:
thisbuilder for use in a chained invocation
-
size
@CanIgnoreReturnValue public final ImmutableContent.Builder size(@Nullable Integer size)
Initializes the value for thesizeattribute.- Parameters:
size- The value for size (can benull)- Returns:
thisbuilder for use in a chained invocation
-
name
@CanIgnoreReturnValue public final ImmutableContent.Builder name(@Nullable String name)
Initializes the value for thenameattribute.- Parameters:
name- The value for name (can benull)- Returns:
thisbuilder for use in a chained invocation
-
path
@CanIgnoreReturnValue public final ImmutableContent.Builder path(@Nullable String path)
Initializes the value for thepathattribute.- Parameters:
path- The value for path (can benull)- Returns:
thisbuilder for use in a chained invocation
-
gitUrl
@CanIgnoreReturnValue public final ImmutableContent.Builder gitUrl(@Nullable URI gitUrl)
Initializes the value for thegitUrlattribute.- Parameters:
gitUrl- The value for gitUrl (can benull)- Returns:
thisbuilder for use in a chained invocation
-
htmlUrl
@CanIgnoreReturnValue public final ImmutableContent.Builder htmlUrl(@Nullable URI htmlUrl)
Initializes the value for thehtmlUrlattribute.- Parameters:
htmlUrl- The value for htmlUrl (can benull)- Returns:
thisbuilder for use in a chained invocation
-
downloadUrl
@CanIgnoreReturnValue public final ImmutableContent.Builder downloadUrl(@Nullable URI downloadUrl)
Initializes the value for thedownloadUrlattribute.- Parameters:
downloadUrl- The value for downloadUrl (can benull)- Returns:
thisbuilder for use in a chained invocation
-
encoding
@CanIgnoreReturnValue public final ImmutableContent.Builder encoding(@Nullable String encoding)
Initializes the value for theencodingattribute.- Parameters:
encoding- The value for encoding (can benull)- Returns:
thisbuilder for use in a chained invocation
-
content
@CanIgnoreReturnValue public final ImmutableContent.Builder content(@Nullable String content)
Initializes the value for thecontentattribute.- Parameters:
content- The value for content (can benull)- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableContent build()
Builds a newImmutableContent.- Returns:
- An immutable instance of Content
- Throws:
IllegalStateException- if any required attributes are missing
-
-