public enum FormStatus extends java.lang.Enum<FormStatus>
This enumeration describes the degree to which the Form is found acceptable.
Enum Constant and Description |
---|
InfoError
This literal means that some invalid information was submitted in the
Form.
|
InReview
This literal means that the Form is still in review after a prior version
was submitted.
|
NeedsInfo
This literal means that the previous Form submitted was accepted, but
another Form with additional information must be submitted.
|
Processed
This literal means that the Form has been previously and completely
processed for its current configuration.
|
Processing
This literal means that the Form is currently being processed.
|
ReadyToProcess
This literal means that the Form has all of the information it needs and
can be processed.
|
Unacceptable
This literal means that the Form is unacceptable for some reason outside
of its own nature.
|
Modifier and Type | Method and Description |
---|---|
static FormStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FormStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FormStatus NeedsInfo
This literal means that the previous Form submitted was accepted, but another Form with additional information must be submitted.
public static final FormStatus ReadyToProcess
This literal means that the Form has all of the information it needs and can be processed.
public static final FormStatus Processing
This literal means that the Form is currently being processed.
public static final FormStatus Processed
This literal means that the Form has been previously and completely processed for its current configuration.
public static final FormStatus InReview
This literal means that the Form is still in review after a prior version was submitted.
public static final FormStatus InfoError
This literal means that some invalid information was submitted in the Form.
public static final FormStatus Unacceptable
This literal means that the Form is unacceptable for some reason outside of its own nature. It does not mean that Form is erroneous or not capable of being processed, but instead it means that the Form can not be processed, reviewed or used in any other way except as a source of information.
public static FormStatus[] values()
for (FormStatus c : FormStatus.values()) System.out.println(c);
public static FormStatus 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