public enum CollectionSplitType extends java.lang.Enum<CollectionSplitType>
| Enum Constant and Description |
|---|
SPLIT_DEFAULT
Default split based on view.
|
SPLIT_HORIZONTAL
Split vertical.
|
SPLIT_NONE
No split; show the navigator.
|
SPLIT_PREVIEW
No split; show the preview.
|
SPLIT_VERTICAL
Split horizontal.
|
| Modifier and Type | Method and Description |
|---|---|
static CollectionSplitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CollectionSplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionSplitType SPLIT_DEFAULT
public static final CollectionSplitType SPLIT_HORIZONTAL
public static final CollectionSplitType SPLIT_VERTICAL
public static final CollectionSplitType SPLIT_NONE
public static final CollectionSplitType SPLIT_PREVIEW
public static CollectionSplitType[] values()
for (CollectionSplitType c : CollectionSplitType.values()) System.out.println(c);
public static CollectionSplitType 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