Enum BootstrapishBreakpoint
- java.lang.Object
-
- java.lang.Enum<BootstrapishBreakpoint>
-
- org.teamapps.ux.component.grid.bootstrap.BootstrapishBreakpoint
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<BootstrapishBreakpoint>
public enum BootstrapishBreakpoint extends java.lang.Enum<BootstrapishBreakpoint>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDefaultMinWidth()static BootstrapishBreakpointvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BootstrapishBreakpoint[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XS
public static final BootstrapishBreakpoint XS
-
SM
public static final BootstrapishBreakpoint SM
-
MD
public static final BootstrapishBreakpoint MD
-
LG
public static final BootstrapishBreakpoint LG
-
XL
public static final BootstrapishBreakpoint XL
-
-
Method Detail
-
values
public static BootstrapishBreakpoint[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BootstrapishBreakpoint c : BootstrapishBreakpoint.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BootstrapishBreakpoint valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getDefaultMinWidth
public int getDefaultMinWidth()
-
-