public enum ImageSize extends Enum<ImageSize>
Enum Constant and Description |
---|
EXTRALARGE |
HUGE |
LARGE |
LARGESQUARE |
MEDIUM |
MEGA |
ORIGINAL |
SMALL |
Modifier and Type | Method and Description |
---|---|
static ImageSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageSize SMALL
public static final ImageSize MEDIUM
public static final ImageSize LARGE
public static final ImageSize LARGESQUARE
public static final ImageSize HUGE
public static final ImageSize EXTRALARGE
public static final ImageSize MEGA
public static final ImageSize ORIGINAL
public static ImageSize[] values()
for (ImageSize c : ImageSize.values()) System.out.println(c);
public static ImageSize 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 null