static enum NioImageBuffer.BufferType extends java.lang.Enum<NioImageBuffer.BufferType>
| Enum Constant and Description |
|---|
BYTE_BUFFER |
INT_BUFFER |
| Modifier and Type | Method and Description |
|---|---|
static NioImageBuffer.BufferType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NioImageBuffer.BufferType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NioImageBuffer.BufferType BYTE_BUFFER
public static final NioImageBuffer.BufferType INT_BUFFER
public static NioImageBuffer.BufferType[] values()
for (NioImageBuffer.BufferType c : NioImageBuffer.BufferType.values()) System.out.println(c);
public static NioImageBuffer.BufferType 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 nullCopyright 1996-2008 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.