org.collada._2005._11.colladaschema
Enum CommonProfileParam

java.lang.Object
  extended by java.lang.Enum<CommonProfileParam>
      extended by org.collada._2005._11.colladaschema.CommonProfileParam
All Implemented Interfaces:
Serializable, Comparable<CommonProfileParam>

public enum CommonProfileParam
extends Enum<CommonProfileParam>

Java class for Common_profile_param.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="Common_profile_param">
   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
     <enumeration value="A"/>
     <enumeration value="ANGLE"/>
     <enumeration value="B"/>
     <enumeration value="DOUBLE_SIDED"/>
     <enumeration value="G"/>
     <enumeration value="P"/>
     <enumeration value="Q"/>
     <enumeration value="R"/>
     <enumeration value="S"/>
     <enumeration value="T"/>
     <enumeration value="TIME"/>
     <enumeration value="U"/>
     <enumeration value="V"/>
     <enumeration value="W"/>
     <enumeration value="X"/>
     <enumeration value="Y"/>
     <enumeration value="Z"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
A
           
ANGLE
           
B
           
DOUBLE_SIDED
           
G
           
P
           
Q
           
R
           
S
           
T
           
TIME
           
U
           
V
           
W
           
X
           
Y
           
Z
           
 
Method Summary
static CommonProfileParam fromValue(String v)
           
 String value()
           
static CommonProfileParam valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CommonProfileParam[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

A

public static final CommonProfileParam A

ANGLE

public static final CommonProfileParam ANGLE

B

public static final CommonProfileParam B

DOUBLE_SIDED

public static final CommonProfileParam DOUBLE_SIDED

G

public static final CommonProfileParam G

P

public static final CommonProfileParam P

Q

public static final CommonProfileParam Q

R

public static final CommonProfileParam R

S

public static final CommonProfileParam S

T

public static final CommonProfileParam T

TIME

public static final CommonProfileParam TIME

U

public static final CommonProfileParam U

V

public static final CommonProfileParam V

W

public static final CommonProfileParam W

X

public static final CommonProfileParam X

Y

public static final CommonProfileParam Y

Z

public static final CommonProfileParam Z
Method Detail

values

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

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

valueOf

public static CommonProfileParam valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name

value

public String value()

fromValue

public static CommonProfileParam fromValue(String v)

CroftSoft Javadoc

CroftSoft COLLADA JAXB Javadoc (2006-11-13 15:08:25)