public enum ExpandCollapseState extends Enum<ExpandCollapseState>
| Enum Constant and Description |
|---|
ExpandCollapseState_Collapsed
The value of this constant is 0
|
ExpandCollapseState_Expanded
The value of this constant is 1
|
ExpandCollapseState_LeafNode
The value of this constant is 3
|
ExpandCollapseState_PartiallyExpanded
The value of this constant is 2
|
| Modifier and Type | Method and Description |
|---|---|
static ExpandCollapseState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpandCollapseState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpandCollapseState ExpandCollapseState_Collapsed
The value of this constant is 0
public static final ExpandCollapseState ExpandCollapseState_Expanded
The value of this constant is 1
public static final ExpandCollapseState ExpandCollapseState_PartiallyExpanded
The value of this constant is 2
public static final ExpandCollapseState ExpandCollapseState_LeafNode
The value of this constant is 3
public static ExpandCollapseState[] values()
for (ExpandCollapseState c : ExpandCollapseState.values()) System.out.println(c);
public static ExpandCollapseState 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 © 2016. All rights reserved.