public enum ThumbnailSize extends java.lang.Enum<ThumbnailSize>
Enum Constant and Description |
---|
M
Size m - 128X128
|
S
Size s - 64X64
|
XS
Size xs - 24X24
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static ThumbnailSize |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThumbnailSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThumbnailSize XS
public static final ThumbnailSize S
public static final ThumbnailSize M
public static ThumbnailSize[] values()
for (ThumbnailSize c : ThumbnailSize.values()) System.out.println(c);
public static ThumbnailSize 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<ThumbnailSize>