Enum Class LinkAction

java.lang.Object
java.lang.Enum<LinkAction>
org.symbol.sdk.symbol.models.LinkAction
All Implemented Interfaces:

Serializable, Comparable<LinkAction>, Constable, Serializer


public enum LinkAction extends Enum<LinkAction> implements Serializer
  • Enum Constant Details

  • Method Details

    • values

      public static LinkAction[] values()
      LinkAction.values

      Returns an array containing the constants of this enum class, in the order they are declared.

      Returns:

      an array containing the constants of this enum class, in the order they are declared

    • valueOf

      public static LinkAction valueOf(String name)
      LinkAction.valueOf

      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)

      Parameters:

      name - the name of the enum constant to be returned.

      Returns:

      the enum constant with the specified name

      Throws:

      IllegalArgumentException - if this enum class has no constant with the specified name

      NullPointerException - if the argument is null

    • getValue

      public int getValue()
      LinkAction.getValue

      Gets the value field.

      Returns:

      The value field.

    • fromValue

      public static LinkAction fromValue(int value)
      LinkAction.fromValue

      Creates an instance from its underlying numeric value.

      Parameters:

      value - Value.

      Returns:

      Instance corresponding to the numeric value.

    • parse

      public static LinkAction parse(Object rawValue)
      LinkAction.parse

      Parses a raw value into an instance.

      Parameters:

      rawValue - Raw value to parse.

      Returns:

      Parsed instance.

    • size

      public int size()
      LinkAction.size

      Calculates the size of the object.

      Specified by:

      size in interface Serializer

      Returns:

      Size of this object in bytes.

    • deserialize

      public static LinkAction deserialize(ByteBuffer buffer)
      LinkAction.deserialize

      Deserializes an instance of this object from a byte payload.

      Parameters:

      buffer - Output writer.

      Returns:

      Deserialized object.

      Throws:

      IndexOutOfBoundsException - if the buffer is truncated or a declared length overruns it

      IllegalArgumentException - if a field carries an invalid value (e.g. a reserved field or unknown discriminator)

    • serialize

      public byte[] serialize()
      LinkAction.serialize

      Serializes this object to bytes.

      Specified by:

      serialize in interface Serializer

      Returns:

      Serialized bytes.

    • toString

      public String toString()
      LinkAction.toString

      Returns a string representation of this object.

      Overrides:

      toString in class Enum<LinkAction>

      Returns:

      String representation of this object.

    • toJson

      public int toJson()
      LinkAction.toJson

      Converts this object to a JSON-serializable representation.

      Returns:

      JSON-serializable representation of this object.