public static enum SimScenario.Condition extends Enum<SimScenario.Condition>
| Enum Constant and Description |
|---|
EQUALS |
NOT_EQUALS |
NOT_NULL |
NULL |
| Modifier and Type | Method and Description |
|---|---|
static SimScenario.Condition |
get(String p) |
static SimScenario.Condition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimScenario.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimScenario.Condition EQUALS
public static final SimScenario.Condition NOT_EQUALS
public static final SimScenario.Condition NULL
public static final SimScenario.Condition NOT_NULL
public static SimScenario.Condition[] values()
for (SimScenario.Condition c : SimScenario.Condition.values()) System.out.println(c);
public static SimScenario.Condition 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 static SimScenario.Condition get(String p)
Copyright © 2000-2020 Apache Software Foundation. All Rights Reserved.