public enum PassFailReason extends Enum<PassFailReason>
| Enum Constant and Description |
|---|
GRACE_PERIOD |
OVERRIDE |
SCAN_FREQUENCY |
UNASSESSED |
| Modifier and Type | Method and Description |
|---|---|
Integer |
getId() |
String |
getName() |
static PassFailReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PassFailReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PassFailReason UNASSESSED
public static final PassFailReason OVERRIDE
public static final PassFailReason GRACE_PERIOD
public static final PassFailReason SCAN_FREQUENCY
public static PassFailReason[] values()
for (PassFailReason c : PassFailReason.values()) System.out.println(c);
public static PassFailReason 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 Integer getId()
public String getName()
Copyright © 2004-2016. All Rights Reserved.