public static enum Node.Mode extends Enum<Node.Mode>
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
String |
getName() |
static Node.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Node.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.Mode NORMAL
public static final Node.Mode EXCLUSIVE
public static Node.Mode[] values()
for (Node.Mode c : Node.Mode.values()) System.out.println(c);
public static Node.Mode 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 nullpublic String getDescription()
public String getName()
Copyright © 2004–2022. All rights reserved.