ValidatorStatus.public enum ValidatorStatus extends Enum<ValidatorStatus>
| Enum Constant and Description |
|---|
CONTINUE
Deprecated.
Specifies the validator status used to continue import process on the current record.
|
FAIL
Deprecated.
Specifies the validator status used to stop the table import process.
|
IGNORE
Deprecated.
Specifies the validator status used to ignore the import process on the current record.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isContinue()
Deprecated.
Returns
true if the validator status is CONTINUE. |
boolean |
isFail()
Deprecated.
Returns
true if the validator status is FAIL. |
boolean |
isIgnore()
Deprecated.
Returns
true if the validator status is IGNORE. |
static ValidatorStatus |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ValidatorStatus[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidatorStatus IGNORE
public static final ValidatorStatus CONTINUE
public static final ValidatorStatus FAIL
public static ValidatorStatus[] values()
for (ValidatorStatus c : ValidatorStatus.values()) System.out.println(c);
public static ValidatorStatus 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 boolean isIgnore()
true if the validator status is IGNORE.public boolean isContinue()
true if the validator status is CONTINUE.public boolean isFail()
true if the validator status is FAIL.