public enum DynamicMenuType extends java.lang.Enum<DynamicMenuType>
| Enum Constant and Description |
|---|
fade
Components fade in and fade out.
|
list
Simple list-like menu
|
roll
Roll components to their positions.
|
shutter
Camera shutter-like animation.
|
star
Move components from middle to their positions
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isPlainMenu() |
boolean |
isRoundMenu() |
static DynamicMenuType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DynamicMenuType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamicMenuType roll
public static final DynamicMenuType star
public static final DynamicMenuType shutter
public static final DynamicMenuType fade
public static final DynamicMenuType list
public static DynamicMenuType[] values()
for (DynamicMenuType c : DynamicMenuType.values()) System.out.println(c);
public static DynamicMenuType 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 nullpublic boolean isRoundMenu()
public boolean isPlainMenu()