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