public static enum Node.Status extends Enum<Node.Status>
| Modifier and Type | Method and Description |
|---|---|
static Node.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Node.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Node.Status NONE
public static final Node.Status CHANGED
public static final Node.Status IMPACTED
public static Node.Status[] values()
for (Node.Status c : Node.Status.values()) System.out.println(c);
public static Node.Status 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 © 2001–2021 JBoss by Red Hat. All rights reserved.