public enum MetaValueType extends Enum<MetaValueType>
| Enum Constant and Description |
|---|
BOOLEAN
18.3.3 boolean
|
DATE
18.2W3C Schema Datatypes - date
|
FLOAT
18.2W3C Schema Datatypes - float
|
STRING
18.2W3C Schema Datatypes - string
|
TIME
18.2W3C Schema Datatypes - time
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static MetaValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetaValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetaValueType BOOLEAN
public static final MetaValueType DATE
public static final MetaValueType FLOAT
public static final MetaValueType TIME
public static final MetaValueType STRING
public static MetaValueType[] values()
for (MetaValueType c : MetaValueType.values()) System.out.println(c);
public static MetaValueType 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 getValue()
Copyright © 2016–2021. All rights reserved.