public static enum BaselineProfile.ImageType extends Enum<BaselineProfile.ImageType>
| Enum Constant and Description |
|---|
BILEVEL
Bilevel (black and white).
|
CIELab
CIELab.
|
CMYK
CMYK.
|
GRAYSCALE
Crayscale.
|
PALETTE
Palette-color.
|
RGB
RGB.
|
TRANSPARENCY_MASK
The transparency mask.
|
UNDEFINED
Undefined.
|
YCbCr
YCbCr.
|
| Modifier and Type | Method and Description |
|---|---|
static BaselineProfile.ImageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaselineProfile.ImageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaselineProfile.ImageType BILEVEL
public static final BaselineProfile.ImageType GRAYSCALE
public static final BaselineProfile.ImageType PALETTE
public static final BaselineProfile.ImageType TRANSPARENCY_MASK
public static final BaselineProfile.ImageType RGB
public static final BaselineProfile.ImageType CMYK
public static final BaselineProfile.ImageType YCbCr
public static final BaselineProfile.ImageType CIELab
public static final BaselineProfile.ImageType UNDEFINED
public static BaselineProfile.ImageType[] values()
for (BaselineProfile.ImageType c : BaselineProfile.ImageType.values()) System.out.println(c);
public static BaselineProfile.ImageType 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 nullCopyright © 2015–2020. All rights reserved.