Enum Class BlockType

java.lang.Object
java.lang.Enum<BlockType>
org.symbol.sdk.symbol.models.BlockType
All Implemented Interfaces:
Serializable, Comparable<BlockType>, Constable, Serializer

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

    • NEMESIS

      public static final BlockType NEMESIS
    • NORMAL

      public static final BlockType NORMAL
    • IMPORTANCE

      public static final BlockType IMPORTANCE
  • Method Details

    • values

      public static BlockType[] values()
      BlockType.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 BlockType valueOf(String name)
      BlockType.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()
      BlockType.getValue
      Gets the value field.
      Returns:
      The value field.
    • fromValue

      public static BlockType fromValue(int value)
      BlockType.fromValue
      Creates an instance from its underlying numeric value.
      Parameters:
      value - Value.
      Returns:
      Instance corresponding to the numeric value.
    • parse

      public static BlockType parse(Object rawValue)
      BlockType.parse
      Parses a raw value into an instance.
      Parameters:
      rawValue - Raw value to parse.
      Returns:
      Parsed instance.
    • size

      public int size()
      BlockType.size
      Calculates the size of the object.
      Specified by:
      size in interface Serializer
      Returns:
      Size of this object in bytes.
    • deserialize

      public static BlockType deserialize(ByteBuffer buffer)
      BlockType.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()
      BlockType.serialize
      Serializes this object to bytes.
      Specified by:
      serialize in interface Serializer
      Returns:
      Serialized bytes.
    • toString

      public String toString()
      BlockType.toString
      Returns a string representation of this object.
      Overrides:
      toString in class Enum<BlockType>
      Returns:
      String representation of this object.
    • toJson

      public int toJson()
      BlockType.toJson
      Converts this object to a JSON-serializable representation.
      Returns:
      JSON-serializable representation of this object.