public enum ThumbnailSize extends Enum<ThumbnailSize>
Enum Constant and Description |
---|
W1024H768
1024 by 768.
|
W128H128
128 by 128 px.
|
W32H32
32 by 32 px.
|
W640H480
640 by 480 px.
|
W64H64
64 by 64 px.
|
Modifier and Type | Method and Description |
---|---|
static ThumbnailSize |
valueOf(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 W640H480
public static final ThumbnailSize W1024H768
public static ThumbnailSize[] values()
for (ThumbnailSize c : ThumbnailSize.values()) System.out.println(c);
public static ThumbnailSize 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