public static enum Meta.Style extends Enum<Meta.Style>
| Enum Constant and Description |
|---|
ARRAY |
LIST |
MAP |
OBJECT |
RECORD |
RECORD_PROJECTION |
| Modifier and Type | Method and Description |
|---|---|
static Meta.Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Meta.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Meta.Style OBJECT
public static final Meta.Style RECORD
public static final Meta.Style RECORD_PROJECTION
public static final Meta.Style ARRAY
public static final Meta.Style LIST
public static final Meta.Style MAP
public static Meta.Style[] values()
for (Meta.Style c : Meta.Style.values()) System.out.println(c);
public static Meta.Style 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 © 2012–2015 The Apache Software Foundation. All rights reserved.