Enum Class ClassInfo.TypeLookup
- All Implemented Interfaces:
Serializable,Comparable<ClassInfo.TypeLookup>,Constable
- Enclosing class:
ClassInfo
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.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionReturn the type as declared in the descriptor.Legacy behaviour. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClassInfo.TypeLookupReturns the enum constant of this class with the specified name.static ClassInfo.TypeLookup[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
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 class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
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 nameNullPointerException- if the argument is null
-