public enum ElementModifier extends Enum<ElementModifier>
ElementHolder,
AccessLevel| Enum Constant and Description |
|---|
ABSTRACT |
ANNOTATION |
BRIDGE |
DEPRECATED |
ENUM |
FINAL |
INTERFACE |
NATIVE |
STATIC |
STRICT |
SUPER |
SYNCHRONIZED |
SYNTHETIC |
TRANSIENT |
VARARGS |
VOLATILE |
| Modifier and Type | Method and Description |
|---|---|
static ElementModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementModifier ABSTRACT
public static final ElementModifier ANNOTATION
public static final ElementModifier BRIDGE
public static final ElementModifier DEPRECATED
public static final ElementModifier ENUM
public static final ElementModifier FINAL
public static final ElementModifier INTERFACE
public static final ElementModifier NATIVE
public static final ElementModifier STATIC
public static final ElementModifier STRICT
public static final ElementModifier SUPER
public static final ElementModifier SYNCHRONIZED
public static final ElementModifier SYNTHETIC
public static final ElementModifier TRANSIENT
public static final ElementModifier VARARGS
public static final ElementModifier VOLATILE
public static ElementModifier[] values()
for (ElementModifier c : ElementModifier.values()) System.out.println(c);
public static ElementModifier valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015. All rights reserved.