public enum VariableEffect extends Enum<VariableEffect>
| Modifier and Type | Method and Description |
|---|---|
VariableEffect |
combine(VariableEffect other) |
static VariableEffect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VariableEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableEffect NONE
public static final VariableEffect POSITIVE
public static final VariableEffect NEGATIVE
public static final VariableEffect DUAL
public static VariableEffect[] values()
for (VariableEffect c : VariableEffect.values()) System.out.println(c);
public static VariableEffect 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 VariableEffect combine(VariableEffect other)
Copyright © 2009–2020. All rights reserved.