Package com.spotify.github
Class ImmutableLinks.Builder
- java.lang.Object
-
- com.spotify.github.ImmutableLinks.Builder
-
- Enclosing class:
- ImmutableLinks
@NotThreadSafe public static final class ImmutableLinks.Builder extends Object
Builds instances of typeImmutableLinks. 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 ImmutableLinksbuild()Builds a newImmutableLinks.ImmutableLinks.Builderfrom(Links instance)Fill a builder with attribute values from the providedLinksinstance.ImmutableLinks.Builderhtml(Links.Href<URI> html)Initializes the value for thehtmlattribute.ImmutableLinks.Builderself(Links.Href<URI> self)Initializes the value for theselfattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableLinks.Builder from(Links instance)
Fill a builder with attribute values from the providedLinksinstance. 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
-
self
@CanIgnoreReturnValue public final ImmutableLinks.Builder self(@Nullable Links.Href<URI> self)
Initializes the value for theselfattribute.- Parameters:
self- The value for self (can benull)- Returns:
thisbuilder for use in a chained invocation
-
html
@CanIgnoreReturnValue public final ImmutableLinks.Builder html(@Nullable Links.Href<URI> html)
Initializes the value for thehtmlattribute.- Parameters:
html- The value for html (can benull)- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableLinks build()
Builds a newImmutableLinks.- Returns:
- An immutable instance of Links
- Throws:
IllegalStateException- if any required attributes are missing
-
-