public enum JiffleType extends Enum<JiffleType>
Enum Constant and Description |
---|
D
Scalar double
|
LIST
List
|
UNKNOWN
Not known (a placeholder type for the compiler).
|
Modifier and Type | Method and Description |
---|---|
static JiffleType |
get(String label)
Gets the type with the given label (case-insensitive).
|
static JiffleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JiffleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JiffleType D
public static final JiffleType LIST
public static final JiffleType UNKNOWN
public static JiffleType[] values()
for (JiffleType c : JiffleType.values()) System.out.println(c);
public static JiffleType 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 static JiffleType get(String label) throws JiffleTypeException
label
- type labelJiffleTypeException
- if no match existsCopyright © 2006–2018 GeoSolutions. All rights reserved.