public enum PathOption extends Enum<PathOption>
| Enum Constant and Description |
|---|
CHECK_MAP_ORDER
The order of map entries is checked.
|
CONTAINS_ONLY_ON_MAPS
The actual value entry set of maps can contain more values than the expected set.
|
IGNORE
The actual node and its subtree is ignored completely.
|
| Modifier and Type | Method and Description |
|---|---|
static PathOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathOption CONTAINS_ONLY_ON_MAPS
public static final PathOption CHECK_MAP_ORDER
public static final PathOption IGNORE
public static PathOption[] values()
for (PathOption c : PathOption.values()) System.out.println(c);
public static PathOption 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 © 2010–2017. All rights reserved.