public enum ComboBoxPeriodEnum extends Enum<ComboBoxPeriodEnum>
| Enum Constant and Description |
|---|
DATE |
FINANCIAL_PERIOD |
FISCAL_PERIOD |
PERIOD |
| Modifier and Type | Method and Description |
|---|---|
static String[] |
descriptions() |
String |
getDescription() |
static ComboBoxPeriodEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComboBoxPeriodEnum |
valueOfDescription(String description) |
static ComboBoxPeriodEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComboBoxPeriodEnum PERIOD
public static final ComboBoxPeriodEnum DATE
public static final ComboBoxPeriodEnum FISCAL_PERIOD
public static final ComboBoxPeriodEnum FINANCIAL_PERIOD
public static ComboBoxPeriodEnum[] values()
for (ComboBoxPeriodEnum c : ComboBoxPeriodEnum.values()) System.out.println(c);
public static ComboBoxPeriodEnum 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 getDescription()
public static String[] descriptions()
public static ComboBoxPeriodEnum valueOfDescription(String description)
Copyright © 2008–2013 CodeLutin. All rights reserved.