Package io.keikaiex.ui.dialog
Enum FormatCellCtrl.InnerFillPattern
- java.lang.Object
-
- java.lang.Enum<FormatCellCtrl.InnerFillPattern>
-
- io.keikaiex.ui.dialog.FormatCellCtrl.InnerFillPattern
-
- All Implemented Interfaces:
Serializable
,Comparable<FormatCellCtrl.InnerFillPattern>
- Enclosing class:
- FormatCellCtrl
public static enum FormatCellCtrl.InnerFillPattern extends Enum<FormatCellCtrl.InnerFillPattern>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DARK_DOWN
DARK_GRAY
DARK_GRID
DARK_HORIZONTAL
DARK_TRELLIS
DARK_UP
DARK_VERTICAL
GRAY0625
GRAY125
LIGHT_DOWN
LIGHT_GRAY
LIGHT_GRID
LIGHT_HORIZONTAL
LIGHT_TRELLIS
LIGHT_UP
LIGHT_VERTICAL
MEDIUM_GRAY
NONE
SOLID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static FormatCellCtrl.InnerFillPattern
valueOf(String name)
Returns the enum constant of this type with the specified name.static FormatCellCtrl.InnerFillPattern[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final FormatCellCtrl.InnerFillPattern NONE
-
SOLID
public static final FormatCellCtrl.InnerFillPattern SOLID
-
MEDIUM_GRAY
public static final FormatCellCtrl.InnerFillPattern MEDIUM_GRAY
-
DARK_GRAY
public static final FormatCellCtrl.InnerFillPattern DARK_GRAY
-
LIGHT_GRAY
public static final FormatCellCtrl.InnerFillPattern LIGHT_GRAY
-
DARK_HORIZONTAL
public static final FormatCellCtrl.InnerFillPattern DARK_HORIZONTAL
-
DARK_VERTICAL
public static final FormatCellCtrl.InnerFillPattern DARK_VERTICAL
-
DARK_DOWN
public static final FormatCellCtrl.InnerFillPattern DARK_DOWN
-
DARK_UP
public static final FormatCellCtrl.InnerFillPattern DARK_UP
-
DARK_GRID
public static final FormatCellCtrl.InnerFillPattern DARK_GRID
-
DARK_TRELLIS
public static final FormatCellCtrl.InnerFillPattern DARK_TRELLIS
-
LIGHT_HORIZONTAL
public static final FormatCellCtrl.InnerFillPattern LIGHT_HORIZONTAL
-
LIGHT_VERTICAL
public static final FormatCellCtrl.InnerFillPattern LIGHT_VERTICAL
-
LIGHT_DOWN
public static final FormatCellCtrl.InnerFillPattern LIGHT_DOWN
-
LIGHT_UP
public static final FormatCellCtrl.InnerFillPattern LIGHT_UP
-
LIGHT_GRID
public static final FormatCellCtrl.InnerFillPattern LIGHT_GRID
-
LIGHT_TRELLIS
public static final FormatCellCtrl.InnerFillPattern LIGHT_TRELLIS
-
GRAY125
public static final FormatCellCtrl.InnerFillPattern GRAY125
-
GRAY0625
public static final FormatCellCtrl.InnerFillPattern GRAY0625
-
-
Method Detail
-
values
public static FormatCellCtrl.InnerFillPattern[] 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 (FormatCellCtrl.InnerFillPattern c : FormatCellCtrl.InnerFillPattern.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FormatCellCtrl.InnerFillPattern valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<FormatCellCtrl.InnerFillPattern>
-
-