public static enum MediaHelper.ImageSize extends java.lang.Enum<MediaHelper.ImageSize>
| Enum Constant and Description |
|---|
Large
Large size (480x360).
|
Medium
Medium size (240x180).
|
Small
Small size (120x90).
|
XLarge
Extra large size (800x600).
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static MediaHelper.ImageSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MediaHelper.ImageSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaHelper.ImageSize Small
public static final MediaHelper.ImageSize Medium
public static final MediaHelper.ImageSize Large
public static final MediaHelper.ImageSize XLarge
public static MediaHelper.ImageSize[] values()
for (MediaHelper.ImageSize c : MediaHelper.ImageSize.values()) System.out.println(c);
public static MediaHelper.ImageSize valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<MediaHelper.ImageSize>