public static enum ListItem.ShowArrow extends Enum<ListItem.ShowArrow>
| Enum Constant and Description |
|---|
Default
Arrow visibility
|
False
Arrow visibility
|
True
Arrow visibility
|
| Modifier and Type | Method and Description |
|---|---|
static ListItem.ShowArrow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListItem.ShowArrow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListItem.ShowArrow Default
public static final ListItem.ShowArrow True
public static final ListItem.ShowArrow False
public static ListItem.ShowArrow[] values()
for (ListItem.ShowArrow c : ListItem.ShowArrow.values()) System.out.println(c);
public static ListItem.ShowArrow 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 © 2011–2015 SWM. All rights reserved.