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

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

public enum ELightType
extends Enum<ELightType>

Author:
Martin Cerny

Enum Constant Summary
BackdropLight
           
Blink
           
FadeOut
           
Flicker
           
None
           
Pulse
           
Steady
           
Strobe
           
SubtlePulse
           
TexturePaletteLoop
           
TexturePaletteOnce
           
 
Method Summary
static ELightType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ELightType[] 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 ELightType None

Steady

public static final ELightType Steady

Pulse

public static final ELightType Pulse

Blink

public static final ELightType Blink

Flicker

public static final ELightType Flicker

Strobe

public static final ELightType Strobe

BackdropLight

public static final ELightType BackdropLight

SubtlePulse

public static final ELightType SubtlePulse

TexturePaletteOnce

public static final ELightType TexturePaletteOnce

TexturePaletteLoop

public static final ELightType TexturePaletteLoop

FadeOut

public static final ELightType FadeOut
Method Detail

values

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

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

valueOf

public static ELightType 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.