JavaScript is disabled on your browser.
Enum Constant Summary
Enum Constants
Non-static direct (non-overridable) method, that is, a private method or a constructor
method.
Special case of CUSTOM used to implement lambda functions.
Special higher-level invocation type combining new-instance
and a (direct)
constructor call.
Signature-polymorphic method.
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
NEW
Special higher-level invocation type combining
new-instance
and a (direct)
constructor call. Reserved for
IDNewInfo
.
VIRTUAL
Standard virtual method.
SUPER
Super class method.
DIRECT
Non-static direct (non-overridable) method, that is, a private method or a constructor
method.
INTERFACE
Interface method.
POLYMORPHIC
Signature-polymorphic method. Reserved for internal use.
CUSTOM
Custom calls. Reserved for internal use.
LAMBDA
Special case of CUSTOM used to implement lambda functions. Reserved for internal use.
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 name
NullPointerException
- if the argument is null