public static enum Slideshow.Status extends Enum<Slideshow.Status>
| Enum Constant and Description |
|---|
CONVERTED |
CONVERTING |
FAILED |
QUEUED |
| Modifier and Type | Method and Description |
|---|---|
static Slideshow.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Slideshow.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Slideshow.Status QUEUED
public static final Slideshow.Status CONVERTING
public static final Slideshow.Status CONVERTED
public static final Slideshow.Status FAILED
public static Slideshow.Status[] values()
for (Slideshow.Status c : Slideshow.Status.values()) System.out.println(c);
public static Slideshow.Status 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.