public enum StructuredExpansionKind extends Enum<StructuredExpansionKind>
| Enum Constant and Description |
|---|
ARRAY_ELEMENT
Array elements expanded to rows, e.g.
|
MAP_ENTRY
Map entries expanded to (key, value) rows.
|
RECORD_SET
Record set expanded to typed rows, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static StructuredExpansionKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StructuredExpansionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StructuredExpansionKind ARRAY_ELEMENT
public static final StructuredExpansionKind MAP_ENTRY
public static final StructuredExpansionKind RECORD_SET
public static StructuredExpansionKind[] values()
for (StructuredExpansionKind c : StructuredExpansionKind.values()) System.out.println(c);
public static StructuredExpansionKind 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 null