public static enum StructuredData.Type extends Enum<StructuredData.Type>
| Enum Constant and Description |
|---|
bool |
floatingPoint |
integral |
list |
map |
string |
undefined |
| Modifier and Type | Method and Description |
|---|---|
static StructuredData.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredData.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredData.Type bool
public static final StructuredData.Type integral
public static final StructuredData.Type floatingPoint
public static final StructuredData.Type string
public static final StructuredData.Type undefined
public static final StructuredData.Type list
public static final StructuredData.Type map
public static StructuredData.Type[] values()
for (StructuredData.Type c : StructuredData.Type.values()) System.out.println(c);
public static StructuredData.Type 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 nullCopyright © 2015 Red Hat, Inc.. All rights reserved.