public enum JvmMethodParameterKind extends java.lang.Enum<JvmMethodParameterKind>
Enum Constant and Description |
---|
ENUM_NAME |
ENUM_ORDINAL |
OUTER |
RECEIVER |
SHARED_VAR |
SUPER_CALL_PARAM |
THIS |
VALUE |
Modifier and Type | Method and Description |
---|---|
static JvmMethodParameterKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JvmMethodParameterKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JvmMethodParameterKind VALUE
public static final JvmMethodParameterKind THIS
public static final JvmMethodParameterKind OUTER
public static final JvmMethodParameterKind RECEIVER
public static final JvmMethodParameterKind SHARED_VAR
public static final JvmMethodParameterKind ENUM_NAME
public static final JvmMethodParameterKind ENUM_ORDINAL
public static final JvmMethodParameterKind SUPER_CALL_PARAM
public static JvmMethodParameterKind[] values()
for (JvmMethodParameterKind c : JvmMethodParameterKind.values()) System.out.println(c);
public static JvmMethodParameterKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null