Enum Class Tables.ConstType

java.lang.Object
java.lang.Enum<Tables.ConstType>
org.openjdk.asmtools.jasm.Tables.ConstType
All Implemented Interfaces:
Serializable, Comparable<Tables.ConstType>, Constable
Enclosing class:
Tables

public static enum Tables.ConstType extends Enum<Tables.ConstType>
ConstType A (typed) tag (constant) representing the type of Constant in the Constant Pool.
  • Enum Constant Details

  • Field Details

    • maxTag

      public static final int maxTag
      See Also:
    • value

      private final int value
    • parseKey

      private final String parseKey
    • printval

      private final String printval
  • Constructor Details

    • ConstType

      private ConstType(int val, String print, String parse)
  • Method Details

    • values

      public static Tables.ConstType[] 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 Tables.ConstType valueOf(String name)
      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
    • value

      public int value()
    • parseKey

      public String parseKey()
    • printval

      public String printval()
    • print

      public void print(PrintWriter out)
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Tables.ConstType>