public enum Style extends Enum<Style>
Enum Constant and Description |
---|
DEEP_OBJECT |
FORM |
LABEL |
MATRIX |
PIPE_DELIMITED |
SIMPLE |
SPACE_DELIMITED |
Modifier and Type | Method and Description |
---|---|
static Style |
defaultByLocation(Location in) |
static Style |
parse(String style) |
String |
toString() |
static Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style MATRIX
public static final Style LABEL
public static final Style FORM
public static final Style SIMPLE
public static final Style SPACE_DELIMITED
public static final Style PIPE_DELIMITED
public static final Style DEEP_OBJECT
public static Style[] values()
for (Style c : Style.values()) System.out.println(c);
public static 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 © 2023 Eclipse. All rights reserved.