public static enum XCollection.Style extends java.lang.Enum<XCollection.Style>
Enum Constant and Description |
---|
v1
Old style as AbstractCollection(surroundWithTag = false).
|
v2
Wrap not using option tag (OptionTag), but simple tag (Tag).
|
Modifier and Type | Method and Description |
---|---|
static XCollection.Style |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XCollection.Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XCollection.Style v1
public static final XCollection.Style v2
public static XCollection.Style[] values()
for (XCollection.Style c : XCollection.Style.values()) System.out.println(c);
public static XCollection.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 null