Package net.sourceforge.uiq3.fx603p
Enum Calculator.Keyboard_Mode
- java.lang.Object
-
- java.lang.Enum<Calculator.Keyboard_Mode>
-
- net.sourceforge.uiq3.fx603p.Calculator.Keyboard_Mode
-
- All Implemented Interfaces:
Serializable,Comparable<Calculator.Keyboard_Mode>
- Enclosing class:
- Calculator
public static enum Calculator.Keyboard_Mode extends Enum<Calculator.Keyboard_Mode>
Keyboard is in normal mode- Keyboard_Normal
- Keyboard is in normal mode
- Keyboard_Inv
- Keyboard is in inverse mode
- Keyboard_Hyp
- Keyboard is in hyperbolic mode
- Keyboard_Inv_Hyp
- Keyboard is in inverse hyperbolic mode
- Keyboard_Alpha
- Keyboard is in alpha mode
- Keyboard_Inv_Alpha
- Keyboard is in inverse alpha mode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AlphaCaps_AlphaHypNormalSecondFSecondF_HypShiftShift_AlphaShift_Caps_AlphaShift_Hyp
-
Constructor Summary
Constructors Modifier Constructor Description privateKeyboard_Mode()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Calculator.Keyboard_ModevalueOf(String name)Returns the enum constant of this type with the specified name.static Calculator.Keyboard_Mode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Alpha
public static final Calculator.Keyboard_Mode Alpha
-
Caps_Alpha
public static final Calculator.Keyboard_Mode Caps_Alpha
-
Hyp
public static final Calculator.Keyboard_Mode Hyp
-
Normal
public static final Calculator.Keyboard_Mode Normal
-
SecondF
public static final Calculator.Keyboard_Mode SecondF
-
SecondF_Hyp
public static final Calculator.Keyboard_Mode SecondF_Hyp
-
Shift
public static final Calculator.Keyboard_Mode Shift
-
Shift_Alpha
public static final Calculator.Keyboard_Mode Shift_Alpha
-
Shift_Caps_Alpha
public static final Calculator.Keyboard_Mode Shift_Caps_Alpha
-
Shift_Hyp
public static final Calculator.Keyboard_Mode Shift_Hyp
-
-
Method Detail
-
values
public static Calculator.Keyboard_Mode[] 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 (Calculator.Keyboard_Mode c : Calculator.Keyboard_Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Calculator.Keyboard_Mode 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
-
-