public enum JvmModifier extends java.lang.Enum<JvmModifier>
Enum Constant and Description |
---|
ABSTRACT |
FINAL |
NATIVE |
PACKAGE_LOCAL |
PRIVATE |
PROTECTED |
PUBLIC |
STATIC |
STRICTFP |
SYNCHRONIZED |
TRANSIENT |
TRANSITIVE |
VOLATILE |
Modifier and Type | Method and Description |
---|---|
static JvmModifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JvmModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JvmModifier PUBLIC
public static final JvmModifier PROTECTED
public static final JvmModifier PRIVATE
public static final JvmModifier PACKAGE_LOCAL
public static final JvmModifier STATIC
public static final JvmModifier ABSTRACT
public static final JvmModifier FINAL
public static final JvmModifier NATIVE
public static final JvmModifier SYNCHRONIZED
public static final JvmModifier STRICTFP
public static final JvmModifier TRANSIENT
public static final JvmModifier VOLATILE
public static final JvmModifier TRANSITIVE
public static JvmModifier[] values()
for (JvmModifier c : JvmModifier.values()) System.out.println(c);
public static JvmModifier 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