public enum NodeResolution extends Enum<NodeResolution>
| Enum Constant and Description |
|---|
INCLUDED |
OMITTED_FOR_CONFLICT |
OMITTED_FOR_CYCLE |
OMITTED_FOR_DUPLICATE |
| Modifier and Type | Method and Description |
|---|---|
static NodeResolution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeResolution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeResolution INCLUDED
public static final NodeResolution OMITTED_FOR_DUPLICATE
public static final NodeResolution OMITTED_FOR_CONFLICT
public static final NodeResolution OMITTED_FOR_CYCLE
public static NodeResolution[] values()
for (NodeResolution c : NodeResolution.values()) System.out.println(c);
public static NodeResolution 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 © 2017. All rights reserved.