public static enum Parameter.Style extends java.lang.Enum<Parameter.Style>
Enum Constant and Description |
---|
DEEPOBJECT |
FORM |
LABEL |
MATRIX |
PIPEDELIMITED |
SIMPLE |
SPACEDELIMITED |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static Parameter.Style |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.Style MATRIX
public static final Parameter.Style LABEL
public static final Parameter.Style FORM
public static final Parameter.Style SIMPLE
public static final Parameter.Style SPACEDELIMITED
public static final Parameter.Style PIPEDELIMITED
public static final Parameter.Style DEEPOBJECT
public static Parameter.Style[] values()
for (Parameter.Style c : Parameter.Style.values()) System.out.println(c);
public static Parameter.Style valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<Parameter.Style>