public static enum Expecter.DequeueSetting extends java.lang.Enum<Expecter.DequeueSetting>
Enum Constant and Description |
---|
ALLOW_EXTRA_TUPLES
When passed to expect* routines, extra tuples are permitted as
long as the expected tuples show up with in the timeout.
|
DISALLOW_EXTRA_TUPLES
When passed to expect* routines, extra tuples are not permitted.
|
Modifier and Type | Method and Description |
---|---|
static Expecter.DequeueSetting |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Expecter.DequeueSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expecter.DequeueSetting ALLOW_EXTRA_TUPLES
public static final Expecter.DequeueSetting DISALLOW_EXTRA_TUPLES
public static Expecter.DequeueSetting[] values()
for (Expecter.DequeueSetting c : Expecter.DequeueSetting.values()) System.out.println(c);
public static Expecter.DequeueSetting 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 null