cz.cuni.amis.pogamut.ut2004.t3dgenerator.datatypes
Enum ELightEffect

Package class diagram package ELightEffect
java.lang.Object
  extended by java.lang.Enum<ELightEffect>
      extended by cz.cuni.amis.pogamut.ut2004.t3dgenerator.datatypes.ELightEffect
All Implemented Interfaces:
Serializable, Comparable<ELightEffect>

public enum ELightEffect
extends Enum<ELightEffect>

Author:
Martin Cerny

Enum Constant Summary
CloudCast
           
Cylinder
           
Disco
           
FastWave
           
FireWaver
           
Interference
           
Negative
           
None
           
NonIncidence
           
OmniBumpMap
           
QuadraticNonIncidence
           
Rotor
           
Searchlight
           
Shell
           
Shock
           
SlowWave
           
Spotlight
           
StaticSpot
           
Sunlight
           
TorchWaver
           
Warp
           
WateryShimmer
           
 
Method Summary
static ELightEffect valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ELightEffect[] 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

None

public static final ELightEffect None

TorchWaver

public static final ELightEffect TorchWaver

FireWaver

public static final ELightEffect FireWaver

WateryShimmer

public static final ELightEffect WateryShimmer

Searchlight

public static final ELightEffect Searchlight

SlowWave

public static final ELightEffect SlowWave

FastWave

public static final ELightEffect FastWave

CloudCast

public static final ELightEffect CloudCast

StaticSpot

public static final ELightEffect StaticSpot

Shock

public static final ELightEffect Shock

Disco

public static final ELightEffect Disco

Warp

public static final ELightEffect Warp

Spotlight

public static final ELightEffect Spotlight

NonIncidence

public static final ELightEffect NonIncidence

Shell

public static final ELightEffect Shell

OmniBumpMap

public static final ELightEffect OmniBumpMap

Interference

public static final ELightEffect Interference

Cylinder

public static final ELightEffect Cylinder

Rotor

public static final ELightEffect Rotor

Negative

public static final ELightEffect Negative

Sunlight

public static final ELightEffect Sunlight

QuadraticNonIncidence

public static final ELightEffect QuadraticNonIncidence
Method Detail

values

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

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

valueOf

public static ELightEffect 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
NullPointerException - if the argument is null


Copyright © 2013 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.