Enum ClassInfo.TypeLookup
java.lang.Object
java.lang.Enum<ClassInfo.TypeLookup>
org.spongepowered.asm.mixin.transformer.ClassInfo.TypeLookup
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ClassInfo.TypeLookup>,java.lang.constant.Constable
- Enclosing class:
- ClassInfo
public static enum ClassInfo.TypeLookup extends java.lang.Enum<ClassInfo.TypeLookup>
When using
ClassInfo.forType(org.objectweb.asm.Type, org.spongepowered.asm.mixin.transformer.ClassInfo.TypeLookup), determines whether an array type
should be returned as declared (eg. as Object) or whether the
element type should be returned instead.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description DECLARED_TYPEReturn the type as declared in the descriptor.ELEMENT_TYPELegacy behaviour. -
Method Summary
Modifier and Type Method Description static ClassInfo.TypeLookupvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ClassInfo.TypeLookup[]values()Returns an array containing the constants of this enum type, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
-
Enum Constant Details
-
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
Legacy behaviour. A lookup by type will return the element type.
-
-
Method Details
-
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
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-