Package io.dialob.api.rest
Class ImmutableMetadata.Builder
- java.lang.Object
-
- io.dialob.api.rest.ImmutableMetadata.Builder
-
- Enclosing class:
- ImmutableMetadata
@NotThreadSafe public static final class ImmutableMetadata.Builder extends Object
Builds instances of typeImmutableMetadata. 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 ImmutableMetadatabuild()Builds a newImmutableMetadata.ImmutableMetadata.Buildercreated(Date created)Initializes the value for thecreatedattribute.ImmutableMetadata.Builderdescription(String description)Initializes the value for thedescriptionattribute.ImmutableMetadata.Builderfrom(Metadata instance)Fill a builder with attribute values from the providedMetadatainstance.ImmutableMetadata.Builderlabel(String label)Initializes the value for thelabelattribute.ImmutableMetadata.BuilderlastSaved(Date lastSaved)Initializes the value for thelastSavedattribute.ImmutableMetadata.Buildervalid(Boolean valid)Initializes the value for thevalidattribute.
-
-
-
Method Detail
-
from
public final ImmutableMetadata.Builder from(Metadata instance)
Fill a builder with attribute values from the providedMetadatainstance. 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
-
description
public final ImmutableMetadata.Builder description(String description)
Initializes the value for thedescriptionattribute.- Parameters:
description- The value for description (can benull)- Returns:
thisbuilder for use in a chained invocation
-
label
public final ImmutableMetadata.Builder label(String label)
Initializes the value for thelabelattribute.- Parameters:
label- The value for label- Returns:
thisbuilder for use in a chained invocation
-
created
public final ImmutableMetadata.Builder created(Date created)
Initializes the value for thecreatedattribute.- Parameters:
created- The value for created (can benull)- Returns:
thisbuilder for use in a chained invocation
-
lastSaved
public final ImmutableMetadata.Builder lastSaved(Date lastSaved)
Initializes the value for thelastSavedattribute.- Parameters:
lastSaved- The value for lastSaved (can benull)- Returns:
thisbuilder for use in a chained invocation
-
valid
public final ImmutableMetadata.Builder valid(Boolean valid)
Initializes the value for thevalidattribute.- Parameters:
valid- The value for valid (can benull)- Returns:
thisbuilder for use in a chained invocation
-
build
public ImmutableMetadata build()
Builds a newImmutableMetadata.- Returns:
- An immutable instance of Metadata
- Throws:
IllegalStateException- if any required attributes are missing
-
-