public enum ValueSpace extends Enum<ValueSpace>
Modifier and Type | Method and Description |
---|---|
static ValueSpace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueSpace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueSpace STRING
public static final ValueSpace NUMBER
public static final ValueSpace DATETIME
public static ValueSpace[] values()
for (ValueSpace c : ValueSpace.values()) System.out.println(c);
public static ValueSpace 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 nullLicenced under the Apache License, Version 2.0