Class CstShort

All Implemented Interfaces:
TypeBearer, ToHuman, Comparable<Constant>

public final class CstShort extends CstLiteral32
Constants of type short.
  • Field Details

    • VALUE_0

      public static final CstShort VALUE_0
      non-null; the value 0 as an instance of this class
  • Method Details

    • make

      public static CstShort make(short value)
      Makes an instance for the given value. This may (but does not necessarily) return an already-allocated instance.
      Parameters:
      value - the short value
      Returns:
      non-null; the appropriate instance
    • make

      public static CstShort make(int value)
      Makes an instance for the given int value. This may (but does not necessarily) return an already-allocated instance.
      Parameters:
      value - the value, which must be in range for a short
      Returns:
      non-null; the appropriate instance
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getType

      public Type getType()
      Gets the type associated with this instance.
      Returns:
      non-null; the type
    • typeName

      public String typeName()
      Returns the human name for the particular type of constant this instance is.
      Specified by:
      typeName in class Constant
      Returns:
      non-null; the name
    • toHuman

      public String toHuman()
      Return the "human" string form of this instance. This is generally less "debuggy" than toString().
      Returns:
      non-null; the human string form
    • getValue

      public short getValue()
      Gets the short value.
      Returns:
      the value