public enum HideOn extends Enum<HideOn> implements CssType
Enum Constant and Description |
---|
HIDE_ON_LARGE |
HIDE_ON_MED |
HIDE_ON_MED_DOWN |
HIDE_ON_MED_UP |
HIDE_ON_SMALL |
HIDE_ON_SMALL_DOWN |
NONE |
EMPTY_CSS_TYPE
Modifier and Type | Method and Description |
---|---|
static HideOn |
fromStyleName(String styleName) |
String |
getCssName() |
static HideOn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HideOn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HideOn HIDE_ON_SMALL
public static final HideOn HIDE_ON_SMALL_DOWN
public static final HideOn HIDE_ON_MED
public static final HideOn HIDE_ON_MED_DOWN
public static final HideOn HIDE_ON_MED_UP
public static final HideOn HIDE_ON_LARGE
public static HideOn[] values()
for (HideOn c : HideOn.values()) System.out.println(c);
public static HideOn 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 HideOn fromStyleName(String styleName)
Copyright © 2018. All rights reserved.