public enum CvnStatus extends Enum<CvnStatus>
| Enum Constant and Description |
|---|
MATCHED |
NO_RESULT |
NOT_MATCHED |
NOT_PROCESSED |
NOT_PROVIDED |
NOT_SUPPORTED |
NOT_VALIDATED |
REJECTED |
UNRECOGNIZED_RESULT |
| Modifier and Type | Method and Description |
|---|---|
static CvnStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CvnStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CvnStatus NO_RESULT
public static final CvnStatus UNRECOGNIZED_RESULT
public static final CvnStatus NOT_SUPPORTED
public static final CvnStatus NOT_PROVIDED
public static final CvnStatus NOT_PROCESSED
public static final CvnStatus NOT_MATCHED
public static final CvnStatus MATCHED
public static final CvnStatus NOT_VALIDATED
public static final CvnStatus REJECTED
public static CvnStatus[] values()
for (CvnStatus c : CvnStatus.values()) System.out.println(c);
public static CvnStatus 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 © 2017 SAP SE. All Rights Reserved.