public enum Modifier extends Enum<Modifier >
Not all modifiers are applicable to all kinds of elements. When two or more modifiers appear in the source code of an element then it is customary, though not required, that they appear in the same order as the constants listed in the detail section below.
Note that it is possible additional modifiers will be added in future versions of the platform.
| Enum Constant and Description |
|---|
ABSTRACT
The modifier
abstract
|
DEFAULT
The modifier
default
|
FINAL
The modifier
final
|
NATIVE
The modifier
native
|
PRIVATE
The modifier
private
|
PROTECTED
The modifier
protected
|
PUBLIC
The modifier
public
|
STATIC
The modifier
static
|
STRICTFP
The modifier
strictfp
|
SYNCHRONIZED
The modifier
synchronized
|
TRANSIENT
The modifier
transient
|
VOLATILE
The modifier
volatile
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns this modifier's name in lowercase.
|
static Modifier |
valueOf(String
Returns the enum constant of this type with the specified name.
|
static Modifier |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ModifierPUBLIC
public
public static final ModifierPROTECTED
protected
public static final ModifierPRIVATE
private
public static final ModifierABSTRACT
abstract
public static final ModifierDEFAULT
default
public static final ModifierSTATIC
static
public static final ModifierFINAL
final
public static final ModifierTRANSIENT
transient
public static final ModifierVOLATILE
volatile
public static final ModifierSYNCHRONIZED
synchronized
public static final ModifierNATIVE
native
public static final ModifierSTRICTFP
strictfp
public static Modifier[] values()
for (Modifier c : Modifier.values()) System.out.println(c);
public static ModifiervalueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null