maslab.orc
Enum Orc.DrawMode

java.lang.Object
  extended by java.lang.Enum<Orc.DrawMode>
      extended by maslab.orc.Orc.DrawMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Orc.DrawMode>
Enclosing class:
Orc

public static enum Orc.DrawMode
extends java.lang.Enum<Orc.DrawMode>


Enum Constant Summary
DRAW
           
ERASE
           
XOR
           
 
Method Summary
 int getCode()
           
static Orc.DrawMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Orc.DrawMode[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

ERASE

public static final Orc.DrawMode ERASE

DRAW

public static final Orc.DrawMode DRAW

XOR

public static final Orc.DrawMode XOR
Method Detail

values

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

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

valueOf

public static Orc.DrawMode 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

getCode

public int getCode()