public enum ProgramStatus extends Enum<ProgramStatus>
| Enum Constant and Description |
|---|
ACTIVE |
APPROVED |
DRAFT |
NOTAPPROVED |
SUPERSEDED |
| Modifier and Type | Method and Description |
|---|---|
ProgramStatus |
getNextStatus() |
String |
getValue() |
static ProgramStatus |
of(DataModel programModel) |
static ProgramStatus |
of(String value) |
static ProgramStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgramStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgramStatus SUPERSEDED
public static final ProgramStatus ACTIVE
public static final ProgramStatus APPROVED
public static final ProgramStatus DRAFT
public static final ProgramStatus NOTAPPROVED
public static ProgramStatus[] values()
for (ProgramStatus c : ProgramStatus.values()) System.out.println(c);
public static ProgramStatus 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 ProgramStatus getNextStatus()
public static ProgramStatus of(String value)
public static ProgramStatus of(DataModel programModel)
Copyright © 2004-2013 The Kuali Foundation. All Rights Reserved.