Enum Constant and Description |
---|
ICON
The icon is a small thumbnail usable as icon in file browsers.
|
PREVIEW
The preview is a large thumbnail.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static ImageType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageType ICON
public static final ImageType PREVIEW
public static ImageType[] values()
for (ImageType c : ImageType.values()) System.out.println(c);
public static ImageType 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<ImageType>