Package com.spotify.github
Class ImmutableHref.Builder<T>
- java.lang.Object
-
- com.spotify.github.ImmutableHref.Builder<T>
-
- Enclosing class:
- ImmutableHref<T>
@NotThreadSafe public static final class ImmutableHref.Builder<T> extends Object
Builds instances of typeImmutableHref. 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 ImmutableHref<T>build()Builds a newImmutableHref.ImmutableHref.Builder<T>from(Links.Href<T> instance)Fill a builder with attribute values from the providedHrefinstance.ImmutableHref.Builder<T>href(T href)Initializes the value for thehrefattribute.
-
-
-
Method Detail
-
from
@CanIgnoreReturnValue public final ImmutableHref.Builder<T> from(Links.Href<T> instance)
Fill a builder with attribute values from the providedHrefinstance. 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
-
href
@CanIgnoreReturnValue public final ImmutableHref.Builder<T> href(T href)
Initializes the value for thehrefattribute.- Parameters:
href- The value for href- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableHref<T> build()
Builds a newImmutableHref.- Returns:
- An immutable instance of Href
- Throws:
IllegalStateException- if any required attributes are missing
-
-