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 type ImmutableMetadata. Initialize attributes and then invoke the build() method to create an immutable instance.

Builder is not thread-safe and generally should not be stored in a field or collection, but instead used immediately to create instances.

  • Method Details

    • from

      public final ImmutableMetadata.Builder from(Metadata instance)
      Fill a builder with attribute values from the provided Metadata instance. 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:
      this builder for use in a chained invocation
    • description

      public final ImmutableMetadata.Builder description(String description)
      Initializes the value for the description attribute.
      Parameters:
      description - The value for description (can be null)
      Returns:
      this builder for use in a chained invocation
    • label

      public final ImmutableMetadata.Builder label(String label)
      Initializes the value for the label attribute.
      Parameters:
      label - The value for label
      Returns:
      this builder for use in a chained invocation
    • created

      public final ImmutableMetadata.Builder created(Date created)
      Initializes the value for the created attribute.
      Parameters:
      created - The value for created (can be null)
      Returns:
      this builder for use in a chained invocation
    • lastSaved

      public final ImmutableMetadata.Builder lastSaved(Date lastSaved)
      Initializes the value for the lastSaved attribute.
      Parameters:
      lastSaved - The value for lastSaved (can be null)
      Returns:
      this builder for use in a chained invocation
    • valid

      public final ImmutableMetadata.Builder valid(Boolean valid)
      Initializes the value for the valid attribute.
      Parameters:
      valid - The value for valid (can be null)
      Returns:
      this builder for use in a chained invocation
    • build

      public ImmutableMetadata build()
      Builds a new ImmutableMetadata.
      Returns:
      An immutable instance of Metadata
      Throws:
      IllegalStateException - if any required attributes are missing