Package space.maxus.flare.ui
Enum Class Dimensions
- All Implemented Interfaces:
Serializable,Comparable<Dimensions>,Constable
Possible dimensions for Flare UIs
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription5x94x96x93x93x3
These dimensions are experimental, and may not work as expected. -
Method Summary
Modifier and TypeMethodDescriptionintAmount of columns in these dimensionsintgetRows()Amount of rows in these dimensionsintTotal size of these dimensions in slotsstatic DimensionsReturns the enum constant of this class with the specified name.static Dimensions[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
THREE_BY_NINE
3x9 -
FOUR_BY_NINE
4x9 -
FIVE_BY_NINE
5x9 -
SIX_BY_NINE
6x9 -
THREE_BY_THREE
3x3
These dimensions are experimental, and may not work as expected.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getTotalSize
public int getTotalSize()Total size of these dimensions in slots -
getRows
public int getRows()Amount of rows in these dimensions -
getColumns
public int getColumns()Amount of columns in these dimensions
-