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