public enum NodeType extends java.lang.Enum<NodeType>
FilePreferences node.| Enum Constant and Description |
|---|
SYSTEM
System Node.
|
USER
User Node.
|
| Modifier and Type | Method and Description |
|---|---|
@NotNull java.lang.String |
getPrefix()
Returns the prefix for building key names.
|
static NodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeType USER
public static final NodeType SYSTEM
public static NodeType[] values()
for (NodeType c : NodeType.values()) System.out.println(c);
public static NodeType 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@NotNull public @NotNull java.lang.String getPrefix()