public static enum Slideshow.SlideshowType extends Enum<Slideshow.SlideshowType>
| Enum Constant and Description |
|---|
DOCUMENT |
PORTFOLIO |
PRESENTATION |
VIDEO |
| Modifier and Type | Method and Description |
|---|---|
static Slideshow.SlideshowType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Slideshow.SlideshowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Slideshow.SlideshowType PRESENTATION
public static final Slideshow.SlideshowType DOCUMENT
public static final Slideshow.SlideshowType PORTFOLIO
public static final Slideshow.SlideshowType VIDEO
public static Slideshow.SlideshowType[] values()
for (Slideshow.SlideshowType c : Slideshow.SlideshowType.values()) System.out.println(c);
public static Slideshow.SlideshowType 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 © 2015. All rights reserved.