org.collada._2005._11.colladaschema
Enum GlLogicOpType

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

public enum GlLogicOpType
extends Enum<GlLogicOpType>

Java class for gl_logic_op_type.

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

 <simpleType name="gl_logic_op_type">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="CLEAR"/>
     <enumeration value="AND"/>
     <enumeration value="AND_REVERSE"/>
     <enumeration value="COPY"/>
     <enumeration value="AND_INVERTED"/>
     <enumeration value="NOOP"/>
     <enumeration value="XOR"/>
     <enumeration value="OR"/>
     <enumeration value="NOR"/>
     <enumeration value="EQUIV"/>
     <enumeration value="INVERT"/>
     <enumeration value="OR_REVERSE"/>
     <enumeration value="COPY_INVERTED"/>
     <enumeration value="NAND"/>
     <enumeration value="SET"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AND
           
AND_INVERTED
           
AND_REVERSE
           
CLEAR
           
COPY
           
COPY_INVERTED
           
EQUIV
           
INVERT
           
NAND
           
NOOP
           
NOR
           
OR
           
OR_REVERSE
           
SET
           
XOR
           
 
Method Summary
static GlLogicOpType fromValue(String v)
           
 String value()
           
static GlLogicOpType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GlLogicOpType[] 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

CLEAR

public static final GlLogicOpType CLEAR

AND

public static final GlLogicOpType AND

AND_REVERSE

public static final GlLogicOpType AND_REVERSE

COPY

public static final GlLogicOpType COPY

AND_INVERTED

public static final GlLogicOpType AND_INVERTED

NOOP

public static final GlLogicOpType NOOP

XOR

public static final GlLogicOpType XOR

OR

public static final GlLogicOpType OR

NOR

public static final GlLogicOpType NOR

EQUIV

public static final GlLogicOpType EQUIV

INVERT

public static final GlLogicOpType INVERT

OR_REVERSE

public static final GlLogicOpType OR_REVERSE

COPY_INVERTED

public static final GlLogicOpType COPY_INVERTED

NAND

public static final GlLogicOpType NAND

SET

public static final GlLogicOpType SET
Method Detail

values

public static final GlLogicOpType[] 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(GlLogicOpType c : GlLogicOpType.values())
        System.out.println(c);

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

valueOf

public static GlLogicOpType 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 GlLogicOpType fromValue(String v)

CroftSoft Javadoc

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