|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Device>
com.github.gwtbootstrap.client.ui.constants.Device
public enum Device
The kind of device the application is currently running on.
Determined by the screen size.
Enum Constant Summary | |
---|---|
DESKTOP
In the default configuration these are devices with a screen width of 768 px and above. |
|
PHONE
In the default configuration these are devices with a screen width of 480 px and below. |
|
TABLET
In the default configuration these are devices with a screen width of 767 px and below. |
Method Summary | |
---|---|
String |
get()
Gets the CSS class name (or a part thereof) associated with this constant. |
static Device |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Device[] |
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 Device PHONE
public static final Device TABLET
public static final Device DESKTOP
Method Detail |
---|
public static Device[] values()
for (Device c : Device.values()) System.out.println(c);
public static Device 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 | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |