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