Package io.keikaiex.ui.dialog
Enum FormatCellCtrl.InnerRotation
- java.lang.Object
-
- java.lang.Enum<FormatCellCtrl.InnerRotation>
-
- io.keikaiex.ui.dialog.FormatCellCtrl.InnerRotation
-
- All Implemented Interfaces:
Serializable
,Comparable<FormatCellCtrl.InnerRotation>
- Enclosing class:
- FormatCellCtrl
public static enum FormatCellCtrl.InnerRotation extends Enum<FormatCellCtrl.InnerRotation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HORIZONTAL
NEGATIVE_NINETY_DEGREE
NINETY_DEGREE
VERTIACAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getRotation()
static FormatCellCtrl.InnerRotation
getRotation(int rotation)
String
toString()
static FormatCellCtrl.InnerRotation
valueOf(String name)
Returns the enum constant of this type with the specified name.static FormatCellCtrl.InnerRotation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HORIZONTAL
public static final FormatCellCtrl.InnerRotation HORIZONTAL
-
VERTIACAL
public static final FormatCellCtrl.InnerRotation VERTIACAL
-
NINETY_DEGREE
public static final FormatCellCtrl.InnerRotation NINETY_DEGREE
-
NEGATIVE_NINETY_DEGREE
public static final FormatCellCtrl.InnerRotation NEGATIVE_NINETY_DEGREE
-
-
Method Detail
-
values
public static FormatCellCtrl.InnerRotation[] 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.InnerRotation c : FormatCellCtrl.InnerRotation.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.InnerRotation 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
-
getRotation
public static FormatCellCtrl.InnerRotation getRotation(int rotation)
-
getRotation
public int getRotation()
-
toString
public String toString()
- Overrides:
toString
in classEnum<FormatCellCtrl.InnerRotation>
-
-