public enum PixelMapMode extends java.lang.Enum<PixelMapMode>
| Enum Constant and Description |
|---|
READ_ONLY
The pixels are mapped only for reading.
|
READ_WRITE
The pixels are mapped for both reading and writing.
|
WRITE_ONLY
The pixels are mapped only for writing.
|
| Modifier and Type | Method and Description |
|---|---|
static PixelMapMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PixelMapMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PixelMapMode READ_ONLY
public static final PixelMapMode READ_WRITE
public static final PixelMapMode WRITE_ONLY
public static PixelMapMode[] values()
for (PixelMapMode c : PixelMapMode.values()) System.out.println(c);
public static PixelMapMode 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