public static enum Slideshow.Position extends Enum<Slideshow.Position>
| Enum Constant and Description |
|---|
east |
lineEnd |
lineStart |
none |
north |
south |
west |
| Modifier and Type | Method and Description |
|---|---|
static Slideshow.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Slideshow.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Slideshow.Position lineStart
public static final Slideshow.Position lineEnd
public static final Slideshow.Position east
public static final Slideshow.Position north
public static final Slideshow.Position south
public static final Slideshow.Position west
public static final Slideshow.Position none
public static Slideshow.Position[] values()
for (Slideshow.Position c : Slideshow.Position.values()) System.out.println(c);
public static Slideshow.Position 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 © 2014. All rights reserved.