Class ImmutableMemoWrapper.Builder

java.lang.Object
org.xrpl.xrpl4j.model.transactions.ImmutableMemoWrapper.Builder
Enclosing class:
ImmutableMemoWrapper

@NotThreadSafe public static final class ImmutableMemoWrapper.Builder extends Object
Builds instances of type ImmutableMemoWrapper. 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

      @CanIgnoreReturnValue public final ImmutableMemoWrapper.Builder from(MemoWrapper instance)
      Fill a builder with attribute values from the provided MemoWrapper 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
    • memo

      @CanIgnoreReturnValue public final ImmutableMemoWrapper.Builder memo(Memo memo)
      Initializes the value for the memo attribute.
      Parameters:
      memo - The value for memo
      Returns:
      this builder for use in a chained invocation
    • build

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