public static enum SPConstants.Layout extends Enum<SPConstants.Layout>
| Enum Constant and Description |
|---|
Lax |
LaxTsFirst |
LaxTsLast |
Strict |
| Modifier and Type | Method and Description |
|---|---|
static SPConstants.Layout |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SPConstants.Layout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SPConstants.Layout Lax
public static final SPConstants.Layout Strict
public static final SPConstants.Layout LaxTsFirst
public static final SPConstants.Layout LaxTsLast
public static SPConstants.Layout[] values()
for (SPConstants.Layout c : SPConstants.Layout.values()) System.out.println(c);
public static SPConstants.Layout 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 nullApache CXF