public enum PathOperator extends Enum<PathOperator>
Enum Constant and Description |
---|
ENTRY |
FETCH_INNER |
FETCH_OUTER |
INNER |
KEY |
NAVIGATION |
NONE |
OUTER |
ROOT |
VALUE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static PathOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PathOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PathOperator NONE
public static final PathOperator INNER
public static final PathOperator OUTER
public static final PathOperator FETCH_INNER
public static final PathOperator FETCH_OUTER
public static final PathOperator NAVIGATION
public static final PathOperator KEY
public static final PathOperator ROOT
public static final PathOperator VALUE
public static final PathOperator ENTRY
public static PathOperator[] values()
for (PathOperator c : PathOperator.values()) System.out.println(c);
public static PathOperator 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 toString()
toString
in class Enum<PathOperator>
Copyright © 2006–2020 Apache Software Foundation. All rights reserved.