public enum ThumbnailSize extends java.lang.Enum<ThumbnailSize>
| Enum Constant and Description | 
|---|
| W1024H7681024 by 768 px. | 
| W128H128128 by 128 px. | 
| W2048H15362048 by 1536 px. | 
| W256H256256 by 256 px. | 
| W32H3232 by 32 px. | 
| W480H320480 by 320 px. | 
| W640H480640 by 480 px. | 
| W64H6464 by 64 px. | 
| W960H640960 by 640 px. | 
| Modifier and Type | Method and Description | 
|---|---|
| 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 W32H32
public static final ThumbnailSize W64H64
public static final ThumbnailSize W128H128
public static final ThumbnailSize W256H256
public static final ThumbnailSize W480H320
public static final ThumbnailSize W640H480
public static final ThumbnailSize W960H640
public static final ThumbnailSize W1024H768
public static final ThumbnailSize W2048H1536
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 null