public enum ImageConvertFormat extends Enum<ImageConvertFormat>
Enum Constant and Description |
---|
JPEG
Represents a JPEG image format.
|
JPEG2K
Represents a JPEG2000 image format.
|
PNG
Represents a PNG image format.
|
TIFF
Represents a TIFF image format.
|
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Retrieves the description of the image conversion format.
|
String |
getName()
Retrieves the value of the image conversion format.
|
static ImageConvertFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageConvertFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageConvertFormat JPEG
public static final ImageConvertFormat JPEG2K
public static final ImageConvertFormat PNG
public static final ImageConvertFormat TIFF
public static ImageConvertFormat[] values()
for (ImageConvertFormat c : ImageConvertFormat.values()) System.out.println(c);
public static ImageConvertFormat 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 nullpublic String getDescription()
public String getName()
Copyright © 1982–2022 Adobe Systems Inc.. All rights reserved.