public enum ImageSize extends Enum<ImageSize>
Enum Constant and Description |
---|
BIGGER
73px x 73px
|
MINI
24px x 24px
|
NORMAL
48px x 48px
|
ORIGINAL
The original image size
|
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 MINI
public static final ImageSize NORMAL
public static final ImageSize BIGGER
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