public enum CheckBoxStyle extends Enum<CheckBoxStyle>
Enum Constant and Description |
---|
CHECKBOX
Conventional check box face.
|
ICON
Icon button looking face.
|
SWITCH
Light switch looking face.
|
Modifier and Type | Method and Description |
---|---|
static CheckBoxStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckBoxStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckBoxStyle CHECKBOX
public static final CheckBoxStyle SWITCH
public static final CheckBoxStyle ICON
public static CheckBoxStyle[] values()
for (CheckBoxStyle c : CheckBoxStyle.values()) System.out.println(c);
public static CheckBoxStyle 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 © 2016 com.github.ilyes4j. All rights reserved.