public enum AccountingPeriodMode extends Enum<AccountingPeriodMode>
| Enum Constant and Description |
|---|
DAILY |
HOURLY |
MINUTELY |
MONTHLY |
YEARLY |
| Modifier and Type | Method and Description |
|---|---|
static List<AccountingPeriodMode> |
asList() |
static AccountingPeriodMode |
getAccountingPeriodModeFromId(String id) |
String |
getId() |
String |
getLabel() |
String |
toString() |
static AccountingPeriodMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AccountingPeriodMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountingPeriodMode YEARLY
public static final AccountingPeriodMode MONTHLY
public static final AccountingPeriodMode DAILY
public static final AccountingPeriodMode HOURLY
public static final AccountingPeriodMode MINUTELY
public static AccountingPeriodMode[] values()
for (AccountingPeriodMode c : AccountingPeriodMode.values()) System.out.println(c);
public static AccountingPeriodMode 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 toString()
toString in class Enum<AccountingPeriodMode>public String getLabel()
public String getId()
public static AccountingPeriodMode getAccountingPeriodModeFromId(String id)
id - dipublic static List<AccountingPeriodMode> asList()
Copyright © 2024. All rights reserved.