public enum DateCheckStatus extends java.lang.Enum<DateCheckStatus> implements CheckStatus
| Enum Constant and Description |
|---|
CORRUPT_DATE_INFO |
INVALID_DATE |
VALID_DATE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getText() |
static DateCheckStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DateCheckStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DateCheckStatus VALID_DATE
public static final DateCheckStatus INVALID_DATE
public static final DateCheckStatus CORRUPT_DATE_INFO
public static DateCheckStatus[] values()
for (DateCheckStatus c : DateCheckStatus.values()) System.out.println(c);
public static DateCheckStatus 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 getText()
getText in interface CheckStatusCopyright © 2025. All rights reserved.