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