public enum Extended extends Enum<Extended>
| Enum Constant and Description |
|---|
FULL |
FULLIMAGES |
IMAGES |
MINIMAL |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Extended |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Extended[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Extended MINIMAL
public static final Extended IMAGES
public static final Extended FULL
public static final Extended FULLIMAGES
public static Extended[] values()
for (Extended c : Extended.values()) System.out.println(c);
public static Extended 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 © 2016-2017. All Rights Reserved.