public static enum AutoHidePolicy.ExpandMode extends Enum<AutoHidePolicy.ExpandMode>
Enum Constant and Description |
---|
EXPAND_ON_CLICK
Expand after click
|
EXPAND_ON_ROLLOVER
Expand on rollover
|
Modifier and Type | Method and Description |
---|---|
static AutoHidePolicy.ExpandMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoHidePolicy.ExpandMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoHidePolicy.ExpandMode EXPAND_ON_ROLLOVER
public static final AutoHidePolicy.ExpandMode EXPAND_ON_CLICK
public static AutoHidePolicy.ExpandMode[] values()
for (AutoHidePolicy.ExpandMode c : AutoHidePolicy.ExpandMode.values()) System.out.println(c);
public static AutoHidePolicy.ExpandMode 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 null© Copyright 2004-2013 Lilian Chamontin. All Rights Reserved.