Enum ET

java.lang.Object
java.lang.Enum<ET>
com.googlecode.dex2jar.ir.ET
All Implemented Interfaces:
Serializable, Comparable<ET>, java.lang.constant.Constable

public enum ET extends Enum<ET>
The number of argument
See Also:
  • Enum Constant Details

    • E0

      public static final ET E0
      no argument
    • E1

      public static final ET E1
      1 argument
    • E2

      public static final ET E2
      2 argument
    • En

      public static final ET En
      3+ argument
  • Method Details

    • values

      public static ET[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ET valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null