public enum CheckBoxType extends Enum<CheckBoxType>
| Enum Constant and Description |
|---|
CHECK |
CIRCLE |
CROSS |
DIAMOND |
SQUARE |
STAR |
| Modifier and Type | Method and Description |
|---|---|
static CheckBoxType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckBoxType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckBoxType CHECK
public static final CheckBoxType CIRCLE
public static final CheckBoxType CROSS
public static final CheckBoxType DIAMOND
public static final CheckBoxType SQUARE
public static final CheckBoxType STAR
public static CheckBoxType[] values()
for (CheckBoxType c : CheckBoxType.values()) System.out.println(c);
public static CheckBoxType 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 © 1998–2025 Apryse Group NV. All rights reserved.