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