| Enum Constant and Description |
|---|
moveBoth
Move both images - new image replaces the old one.
|
moveNew
Move new image over old one.
|
moveOld
Move old image away.
|
random
Any random slide type each time (always first in enum).
|
| Modifier and Type | Method and Description |
|---|---|
static SlideType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SlideType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SlideType random
public static final SlideType moveNew
public static final SlideType moveOld
public static final SlideType moveBoth
public static SlideType[] values()
for (SlideType c : SlideType.values()) System.out.println(c);
public static SlideType 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