public enum JpegColorSpace extends java.lang.Enum<JpegColorSpace>
Modifier and Type | Method | Description |
---|---|---|
static JpegColorSpace |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static JpegColorSpace[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JpegColorSpace RGB
public static final JpegColorSpace GRAY
public static final JpegColorSpace CMYK
public static JpegColorSpace[] values()
for (JpegColorSpace c : JpegColorSpace.values()) System.out.println(c);
public static JpegColorSpace 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