|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ImageComponent.ImageClass>
javax.media.j3d.ImageComponent.ImageClass
public static enum ImageComponent.ImageClass
Used to specify the class of the image being wrapped.
Enum Constant Summary | |
---|---|
BUFFERED_IMAGE
Indicates that this ImageComponent object wraps a BufferedImage object. |
|
NIO_IMAGE_BUFFER
Indicates that this ImageComponent object wraps an NioImageBuffer object. |
|
RENDERED_IMAGE
Indicates that this ImageComponent object wraps a RenderedImage object that is not a BufferedImage. |
Method Summary | |
---|---|
static ImageComponent.ImageClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageComponent.ImageClass[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageComponent.ImageClass BUFFERED_IMAGE
public static final ImageComponent.ImageClass RENDERED_IMAGE
public static final ImageComponent.ImageClass NIO_IMAGE_BUFFER
Method Detail |
---|
public static ImageComponent.ImageClass[] values()
for (ImageComponent.ImageClass c : ImageComponent.ImageClass.values()) System.out.println(c);
public static ImageComponent.ImageClass 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |