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