public enum ValidationType extends Enum<ValidationType>
Enum Constant and Description |
---|
COMPLIANT |
EXCLUDED |
OVER_ALLOCATED |
UNDER_ALLOCATED |
Modifier and Type | Method and Description |
---|---|
static ValidationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationType COMPLIANT
public static final ValidationType EXCLUDED
public static final ValidationType OVER_ALLOCATED
public static final ValidationType UNDER_ALLOCATED
public static ValidationType[] values()
for (ValidationType c : ValidationType.values()) System.out.println(c);
public static ValidationType 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–2022 Appendium - Portfolio Financing Platform. All rights reserved.