Class ImmutableItemRef

java.lang.Object
io.dialob.session.engine.session.model.ImmutableItemRef
All Implemented Interfaces:
ItemId, ItemRef, Serializable

@Generated(from="ItemRef", generator="Immutables") @ParametersAreNonnullByDefault @Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableItemRef extends Object implements ItemRef
Immutable implementation of ItemRef.

Use the builder to create immutable instances: ImmutableItemRef.builder(). Use the static factory method to create immutable instances: ImmutableItemRef.of().

See Also:
  • Method Details

    • getParent

      public Optional<ItemId> getParent()
      Specified by:
      getParent in interface ItemId
      Returns:
      The value of the parent attribute
    • getId

      public String getId()
      Specified by:
      getId in interface ItemRef
      Returns:
      The value of the id attribute
    • withParent

      public final ImmutableItemRef withParent(ItemId value)
      Copy the current immutable object by setting a present value for the optional parent attribute.
      Specified by:
      withParent in interface ItemId
      Parameters:
      value - The value for parent
      Returns:
      A modified copy or this if not changed
    • withParent

      public final ImmutableItemRef withParent(Optional<? extends ItemId> optional)
      Copy the current immutable object by setting an optional value for the parent attribute. A shallow reference equality check is used on unboxed optional value to prevent copying of the same value by returning this.
      Specified by:
      withParent in interface ItemId
      Parameters:
      optional - An optional value for parent
      Returns:
      A modified copy or this if not changed
    • withId

      public final ImmutableItemRef withId(String value)
      Copy the current immutable object by setting a value for the id attribute. An equals check used to prevent copying of the same value by returning this.
      Parameters:
      value - A new value for id
      Returns:
      A modified copy or the this object
    • equals

      public boolean equals(@Nullable Object another)
      This instance is equal to all instances of ImmutableItemRef that have equal attribute values.
      Overrides:
      equals in class Object
      Returns:
      true if this is equal to another instance
    • hashCode

      public int hashCode()
      Computes a hash code from attributes: parent, id.
      Overrides:
      hashCode in class Object
      Returns:
      hashCode value
    • toString

      public String toString()
      Prints the immutable value ItemRef with attribute values.
      Overrides:
      toString in class Object
      Returns:
      A string representation of the value
    • of

      public static ImmutableItemRef of(String id, Optional<? extends ItemId> parent)
      Construct a new immutable ItemRef instance.
      Parameters:
      id - The value for the id attribute
      parent - The value for the parent attribute
      Returns:
      An immutable ItemRef instance
    • copyOf

      public static ImmutableItemRef copyOf(ItemRef instance)
      Creates an immutable copy of a ItemRef value. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.
      Parameters:
      instance - The instance to copy
      Returns:
      A copied immutable ItemRef instance
    • builder

      public static ImmutableItemRef.Builder builder()
      Creates a builder for ImmutableItemRef.
       ImmutableItemRef.builder()
          .parent(Optional<io.dialob.session.engine.session.model.ItemId>) // optional parent
          .id(String) // required id
          .build();
       
      Returns:
      A new ImmutableItemRef builder