| Enum Constant and Description |
|---|
FLAG |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMessage() |
java.lang.String |
getSymbol() |
java.lang.String |
getType() |
static SlowTest |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SlowTest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SlowTest FLAG
public static SlowTest[] values()
for (SlowTest c : SlowTest.values()) System.out.println(c);
public static SlowTest valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getType()
getType in interface net.thucydides.core.model.flags.Flagpublic java.lang.String getMessage()
getMessage in interface net.thucydides.core.model.flags.Flagpublic java.lang.String getSymbol()
getSymbol in interface net.thucydides.core.model.flags.Flag