|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ResponsiveStyle>
com.github.gwtbootstrap.client.ui.constants.ResponsiveStyle
public enum ResponsiveStyle
The way a responsive widget is shown.
Enum Constant Summary | |
---|---|
HIDDEN_DESKTOP
The widget is hidden on desktop computers . |
|
HIDDEN_PHONE
The widget is hidden on phones . |
|
HIDDEN_TABLET
The widget is hidden on tablets . |
|
VISIBLE_DESKTOP
The widget is only shown on desktop computers. |
|
VISIBLE_PHONE
The widget is only shown on phones. |
|
VISIBLE_TABLET
The widget is only shown on tablets. |
Method Summary | |
---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this constant. |
static ResponsiveStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ResponsiveStyle[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ResponsiveStyle VISIBLE_PHONE
phones.
public static final ResponsiveStyle HIDDEN_PHONE
phones
.
public static final ResponsiveStyle VISIBLE_TABLET
tablets.
public static final ResponsiveStyle HIDDEN_TABLET
tablets
.
public static final ResponsiveStyle VISIBLE_DESKTOP
desktop computers.
public static final ResponsiveStyle HIDDEN_DESKTOP
desktop computers
.
Method Detail |
---|
public static ResponsiveStyle[] values()
for (ResponsiveStyle c : ResponsiveStyle.values()) System.out.println(c);
public static ResponsiveStyle valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String get()
get
in interface Style
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |