public static enum Element.DataKind extends Enum<Element.DataKind>
| Enum Constant and Description |
|---|
PIXEL_A |
PIXEL_DEPTH |
PIXEL_L |
PIXEL_LA |
PIXEL_RGB |
PIXEL_RGBA |
USER |
| Modifier and Type | Method and Description |
|---|---|
static Element.DataKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Element.DataKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Element.DataKind PIXEL_A
public static final Element.DataKind PIXEL_DEPTH
public static final Element.DataKind PIXEL_L
public static final Element.DataKind PIXEL_LA
public static final Element.DataKind PIXEL_RGB
public static final Element.DataKind PIXEL_RGBA
public static final Element.DataKind USER
public static Element.DataKind[] values()
for (Element.DataKind c : Element.DataKind.values()) System.out.println(c);
public static Element.DataKind 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 © 2008-2013. All Rights Reserved.