public enum CheckBoxType extends Enum<CheckBoxType> implements CssType
Enum Constant and Description |
---|
FILLED |
INTERMEDIATE |
EMPTY_CSS_TYPE
Modifier and Type | Method and Description |
---|---|
static CheckBoxType |
fromStyleName(String styleName) |
String |
getCssName() |
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 FILLED
public static final CheckBoxType INTERMEDIATE
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 nullpublic String getCssName()
getCssName
in interface com.google.gwt.dom.client.Style.HasCssName
public static CheckBoxType fromStyleName(String styleName)
Copyright © 2018. All rights reserved.