public static enum ImageConverter.OutputFileType extends java.lang.Enum<ImageConverter.OutputFileType>
| Enum Constant and Description |
|---|
IMMUTABLE
Specifies that the generated file is an immutable file.
|
OTHER
Specifies that the generated file is another kind of resource.
|
RESOURCE
Specifies that the generated file is a binary resource.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageConverter.OutputFileType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImageConverter.OutputFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageConverter.OutputFileType RESOURCE
public static final ImageConverter.OutputFileType IMMUTABLE
public static final ImageConverter.OutputFileType OTHER
public static ImageConverter.OutputFileType[] values()
for (ImageConverter.OutputFileType c : ImageConverter.OutputFileType.values()) System.out.println(c);
public static ImageConverter.OutputFileType 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