public enum EffectMode extends Enum<EffectMode>
Modifier and Type | Method and Description |
---|---|
String |
getMode() |
String |
toString() |
static EffectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EffectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EffectMode DEFAULT
public static final EffectMode SHOW
public static final EffectMode HIDE
public static EffectMode[] values()
for (EffectMode c : EffectMode.values()) System.out.println(c);
public static EffectMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getMode()
public String toString()
toString
in class Enum<EffectMode>
Copyright © 2015. All rights reserved.