public enum SvgColorModeEnum extends Enum<SvgColorModeEnum>
Сolor mode for SVG images.
Enum Constant and Description |
---|
Cmyk
CMYK image.
|
Grayscale
The Grayscale image.
|
Rgb
The RGB Color mode.
|
YCbCr
YCbCr image, standard option for SVG images.
|
Ycck
The YCCK color image.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static SvgColorModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SvgColorModeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvgColorModeEnum Grayscale
The Grayscale image.
public static final SvgColorModeEnum YCbCr
YCbCr image, standard option for SVG images.
public static final SvgColorModeEnum Cmyk
CMYK image.
public static final SvgColorModeEnum Ycck
The YCCK color image.
public static final SvgColorModeEnum Rgb
The RGB Color mode.
public static SvgColorModeEnum[] values()
for (SvgColorModeEnum c : SvgColorModeEnum.values()) System.out.println(c);
public static SvgColorModeEnum 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 int getType()