cz.cuni.amis.pogamut.ut2004.t3dgenerator.datatypes
Enum ELightType
java.lang.Object
java.lang.Enum<ELightType>
cz.cuni.amis.pogamut.ut2004.t3dgenerator.datatypes.ELightType
- All Implemented Interfaces:
- Serializable, Comparable<ELightType>
public enum ELightType
- extends Enum<ELightType>
- Author:
- Martin Cerny
|
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. |
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
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.