public enum AuditState extends Enum<AuditState>
| Enum Constant and Description |
|---|
ACCEPTED |
REJECTED |
SUBMITTED |
UNSUBMITTED |
| Modifier and Type | Method and Description |
|---|---|
String |
getEnName() |
String |
getFullName() |
String |
getName() |
static AuditState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditState UNSUBMITTED
public static final AuditState SUBMITTED
public static final AuditState ACCEPTED
public static final AuditState REJECTED
public static AuditState[] values()
for (AuditState c : AuditState.values()) System.out.println(c);
public static AuditState 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 String getEnName()
public String getName()
public String getFullName()
Copyright © 2005–2018 The OpenURP Software. All rights reserved.