Enum Class ClassInfo.TypeLookup

java.lang.Object
java.lang.Enum<ClassInfo.TypeLookup>
org.spongepowered.asm.mixin.transformer.ClassInfo.TypeLookup
All Implemented Interfaces:
Serializable, Comparable<ClassInfo.TypeLookup>, Constable
Enclosing class:
ClassInfo

public static enum ClassInfo.TypeLookup extends Enum<ClassInfo.TypeLookup>
When using ClassInfo.forType, determines whether an array type should be returned as declared (eg. as Object ) or whether the element type should be returned instead.
  • Enum Constant Details

    • DECLARED_TYPE

      public static final ClassInfo.TypeLookup DECLARED_TYPE
      Return the type as declared in the descriptor. This means that array types will be treated Object for the purposes of type hierarchy lookups returning the correct member methods.
    • ELEMENT_TYPE

      public static final ClassInfo.TypeLookup ELEMENT_TYPE
      Legacy behaviour. A lookup by type will return the element type.
  • Method Details

    • values

      public static ClassInfo.TypeLookup[] 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 ClassInfo.TypeLookup 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