public enum ControlIntention extends Enum<ControlIntention>
Enum Constant and Description |
---|
CONTINUE
The current control flow has not yet completed, but the most recent event
has not been ignored and in fact has probably been buffered.
|
DONE
The current control flow has completed successfully and the state model
has reached the end of a terminal control flow.
|
EXCEPTION
An unexpected state has been reached that lies is outside of the state
model's design specification.
|
FAIL
A current control flow has completed with a controlled rejection of
input; an input was not appropriate, but was within design parameters for
the state model.
|
REJECT
A current control flow has not advanced and the input was rejected.
|
SUCCESS
The current control flow has completed successfully and the state model
is ready for additional events.
|
UNKNOWN
No control intention has been explicitly identified; don't care.
|
WAIT
A current control flow has not yet completed, but the most recent event
may have been ignored.
|
Modifier and Type | Method and Description |
---|---|
static ControlIntention |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControlIntention[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlIntention CONTINUE
public static final ControlIntention DONE
public static final ControlIntention EXCEPTION
public static final ControlIntention FAIL
public static final ControlIntention REJECT
public static final ControlIntention SUCCESS
public static final ControlIntention UNKNOWN
public static final ControlIntention WAIT
public static ControlIntention[] values()
for (ControlIntention c : ControlIntention.values()) System.out.println(c);
public static ControlIntention 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 nullCopyright © 2006-2012 Ware-Squared Software Development. All Rights Reserved.