javax.media.j3d
Enum ImageComponentRetained.ImageFormatType

java.lang.Object
  extended by java.lang.Enum<ImageComponentRetained.ImageFormatType>
      extended by javax.media.j3d.ImageComponentRetained.ImageFormatType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ImageComponentRetained.ImageFormatType>
Enclosing class:
ImageComponentRetained

static enum ImageComponentRetained.ImageFormatType
extends java.lang.Enum<ImageComponentRetained.ImageFormatType>


Enum Constant Summary
TYPE_BYTE_ABGR
           
TYPE_BYTE_BGR
           
TYPE_BYTE_GRAY
           
TYPE_BYTE_LA
           
TYPE_BYTE_RGB
           
TYPE_BYTE_RGBA
           
TYPE_INT_ARGB
           
TYPE_INT_BGR
           
TYPE_INT_RGB
           
TYPE_UNKNOWN
           
TYPE_USHORT_GRAY
           
 
Method Summary
static ImageComponentRetained.ImageFormatType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ImageComponentRetained.ImageFormatType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TYPE_UNKNOWN

public static final ImageComponentRetained.ImageFormatType TYPE_UNKNOWN

TYPE_BYTE_BGR

public static final ImageComponentRetained.ImageFormatType TYPE_BYTE_BGR

TYPE_BYTE_RGB

public static final ImageComponentRetained.ImageFormatType TYPE_BYTE_RGB

TYPE_BYTE_ABGR

public static final ImageComponentRetained.ImageFormatType TYPE_BYTE_ABGR

TYPE_BYTE_RGBA

public static final ImageComponentRetained.ImageFormatType TYPE_BYTE_RGBA

TYPE_BYTE_LA

public static final ImageComponentRetained.ImageFormatType TYPE_BYTE_LA

TYPE_BYTE_GRAY

public static final ImageComponentRetained.ImageFormatType TYPE_BYTE_GRAY

TYPE_USHORT_GRAY

public static final ImageComponentRetained.ImageFormatType TYPE_USHORT_GRAY

TYPE_INT_BGR

public static final ImageComponentRetained.ImageFormatType TYPE_INT_BGR

TYPE_INT_RGB

public static final ImageComponentRetained.ImageFormatType TYPE_INT_RGB

TYPE_INT_ARGB

public static final ImageComponentRetained.ImageFormatType TYPE_INT_ARGB
Method Detail

values

public static ImageComponentRetained.ImageFormatType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ImageComponentRetained.ImageFormatType c : ImageComponentRetained.ImageFormatType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ImageComponentRetained.ImageFormatType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null


Copyright 1996-2008 Sun Microsystems, Inc. All Rights Reserved. Use is subject to license terms.