com.sun.electric.database.geometry
Enum EGraphics.J3DTransparencyOption

java.lang.Object
  extended by java.lang.Enum<EGraphics.J3DTransparencyOption>
      extended by com.sun.electric.database.geometry.EGraphics.J3DTransparencyOption
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EGraphics.J3DTransparencyOption>
Enclosing class:
EGraphics

public static enum EGraphics.J3DTransparencyOption
extends java.lang.Enum<EGraphics.J3DTransparencyOption>


Enum Constant Summary
BLENDED
           
FASTEST
           
NICEST
           
NONE
           
SCREEN_DOOR
           
 
Field Summary
 int mode
           
 
Method Summary
static EGraphics.J3DTransparencyOption valueOf(int mode)
           
static EGraphics.J3DTransparencyOption valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EGraphics.J3DTransparencyOption[] 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

FASTEST

public static final EGraphics.J3DTransparencyOption FASTEST

NICEST

public static final EGraphics.J3DTransparencyOption NICEST

BLENDED

public static final EGraphics.J3DTransparencyOption BLENDED

SCREEN_DOOR

public static final EGraphics.J3DTransparencyOption SCREEN_DOOR

NONE

public static final EGraphics.J3DTransparencyOption NONE
Field Detail

mode

public final int mode
Method Detail

values

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

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

valueOf

public static EGraphics.J3DTransparencyOption 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

valueOf

public static EGraphics.J3DTransparencyOption valueOf(int mode)