public enum NodeModifier extends Enum<NodeModifier>
| Enum Constant and Description |
|---|
ENUM |
INTERFACE |
STATIC |
SYNCHRONIZED |
| Modifier and Type | Method and Description |
|---|---|
static NodeModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeModifier STATIC
public static final NodeModifier INTERFACE
public static final NodeModifier ENUM
public static final NodeModifier SYNCHRONIZED
public static NodeModifier[] values()
for (NodeModifier c : NodeModifier.values()) System.out.println(c);
public static NodeModifier 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.