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