Interface polarDust.calculator.CalcConstants
All Packages Class Hierarchy This Package Previous Next Index
Interface polarDust.calculator.CalcConstants
- public interface CalcConstants
- extends Object
The interface CalcConstants represents constants defined
throughout polarDust.calculator package.
To use these constants just add implements CalcConstants
to the
class declaration.
The source code.
- Version:
- 0.9, 1996.06.04
- Author:
- Sorin Lazareanu
-
ACOS
- Arccosinus (x=arccos(x)) code.
-
ADD
- Add code.
-
ASIN
- Arcsinus (x=arcsin(x)) code.
-
ATAN
- Arctangent (x=arctan(x)) code.
-
BINARY
- Binary type operation.
-
CALC_KEY_0
- Value (hashCode) for key zero (0).
-
CALC_KEY_1
- Value (hashCode) for key one (1).
-
CALC_KEY_2
- Value (hashCode) for key two (2).
-
CALC_KEY_3
- Value (hashCode) for key three (3).
-
CALC_KEY_4
- Value (hashCode) for key four (4).
-
CALC_KEY_5
- Value (hashCode) for key five (5).
-
CALC_KEY_6
- Value (hashCode) for key six (6).
-
CALC_KEY_7
- Value (hashCode) for key seven (7).
-
CALC_KEY_8
- Value (hashCode) for key eight (8).
-
CALC_KEY_9
- Value (hashCode) for key nine (9).
-
CALC_KEY_ADD
-
-
CALC_KEY_CE
-
-
CALC_KEY_CLR
-
-
CALC_KEY_DIV
-
-
CALC_KEY_DOT
- Value (hashCode) for key dot (.).
-
CALC_KEY_EQU
-
-
CALC_KEY_MADD
-
-
CALC_KEY_MC
-
-
CALC_KEY_MR
-
-
CALC_KEY_MSUB
-
-
CALC_KEY_MUL
-
-
CALC_KEY_PRC
-
-
CALC_KEY_SUB
-
-
CE
- Clear Entry (x=0) code.
-
CLR
- Clear All (x=0, y=0, m=0, etc.) code.
-
COS
- Cosinus (x=cos(x)) code.
-
COURIER
- Courier typeface.
-
DIV
- Divided by code.
-
DOT
- Dot code.
-
EIGHT
- Digit eight.
-
EQU
- Result (equal) code.
-
EXP
- Exponential function (x=e^x) code.
-
FIVE
- Digit five.
-
FOUR
- Digit four.
-
HELVETICA
- Helvetica typeface.
-
INV
- Inverse (x=1/x) code.
-
LN
- Natural logarithm code.
-
LOG
- Decimal logarithm code.
-
MADD
- Add to memory (m+=x) code.
-
MC
- Memory clear (m=0) code.
-
MR
- Memory read (x=m) code.
-
MSUB
- Substract from memory (m-=x) code.
-
MUL
- Multiply by code.
-
NINE
- Digit nine.
-
NUL
- A null (nil) representation.
-
ONE
- Digit one.
-
POW
- At power (x=x^y) code.
-
PRC
- Percentage code.
-
RESULT
- Result operation i.e.
-
SEVEN
- Digit seven.
-
SGN
- Change sign (x=-x) code.
-
SIN
- Sinus (x=sin(x)) code.
-
SIX
- Digit six.
-
SQR
- At square (x*x) code.
-
SQRT
- Square root code.
-
STR_0
- Digit zero as a string.
-
STR_1
- Digit one as a string.
-
STR_2
- Digit two as a string.
-
STR_3
- Digit three as a string.
-
STR_4
- Digit four as a string.
-
STR_5
- Digit five as a string.
-
STR_6
- Digit six as a string.
-
STR_7
- Digit seven as a string.
-
STR_8
- Digit eight as a string.
-
STR_9
- Digit nine as a string.
-
STR_ACOS
- Arccosinus - string representation.
-
STR_ADD
- Add - string representation.
-
STR_ASIN
- Arcsinus - string representation.
-
STR_ATAN
- Arctangent - string representation.
-
STR_CE
- Clear Entry - string representation.
-
STR_CLR
- Clear All - string representation.
-
STR_COS
- Cosinus - string representation.
-
STR_DIV
- Divided by - string representation.
-
STR_DOT
- Dot - string representation.
-
STR_EQU
- Result (equal) - string representation.
-
STR_EXP
- Exponential function - string representation.
-
STR_INV
- Inverse - string representation.
-
STR_LN
- Natural logarithm - string representation.
-
STR_LOG
- Decimal logarithm - string representation.
-
STR_MADD
- Add to memory - string representation.
-
STR_MC
- Memory Clear - string representation.
-
STR_MR
- Memory Read - string representation.
-
STR_MSUB
- Substract from memory - string representation.
-
STR_MUL
- Multiply by - string representation.
-
STR_NUL
- The string representation for NULL : ""
-
STR_POW
- At power - string representation.
-
STR_PRC
- Percentage - string representation.
-
STR_SGN
- Change sign - string representation.
-
STR_SIN
- Sinus - string representation.
-
STR_SQR
- At square - string representation.
-
STR_SQRT
- Square root - string representation.
-
STR_SUB
- Substract - string representation.
-
STR_SWAP
- Swap registers - string representation.
-
STR_TAN
- Tangent - string representation.
-
STR_VE
- Value of e - string representation.
-
STR_VPI
- Value PI - string representation.
-
SUB
- Substract code.
-
SWAP
- Swap registers (x->y, y->x) code.
-
TAN
- Tangent (x=tan(x)) code.
-
THREE
- Digit three.
-
TWO
- Digit two.
-
UNARY
- Unary type operation.
-
VE
- Value of e code.
-
VPI
- Value of PI code.
-
ZERO
- Digit zero.
HELVETICA
public final static String HELVETICA
- Helvetica typeface.
COURIER
public final static String COURIER
- Courier typeface.
UNARY
public final static int UNARY
- Unary type operation.
BINARY
public final static int BINARY
- Binary type operation.
RESULT
public final static int RESULT
- Result operation i.e. =, %, x^y etc.
NUL
public final static int NUL
- A null (nil) representation.
STR_NUL
public final static String STR_NUL
- The string representation for NULL : ""
ZERO
public final static int ZERO
- Digit zero.
STR_0
public final static String STR_0
- Digit zero as a string.
CALC_KEY_0
public final static int CALC_KEY_0
- Value (hashCode) for key zero (0).
ONE
public final static int ONE
- Digit one.
STR_1
public final static String STR_1
- Digit one as a string.
CALC_KEY_1
public final static int CALC_KEY_1
- Value (hashCode) for key one (1).
TWO
public final static int TWO
- Digit two.
STR_2
public final static String STR_2
- Digit two as a string.
CALC_KEY_2
public final static int CALC_KEY_2
- Value (hashCode) for key two (2).
THREE
public final static int THREE
- Digit three.
STR_3
public final static String STR_3
- Digit three as a string.
CALC_KEY_3
public final static int CALC_KEY_3
- Value (hashCode) for key three (3).
FOUR
public final static int FOUR
- Digit four.
STR_4
public final static String STR_4
- Digit four as a string.
CALC_KEY_4
public final static int CALC_KEY_4
- Value (hashCode) for key four (4).
FIVE
public final static int FIVE
- Digit five.
STR_5
public final static String STR_5
- Digit five as a string.
CALC_KEY_5
public final static int CALC_KEY_5
- Value (hashCode) for key five (5).
SIX
public final static int SIX
- Digit six.
STR_6
public final static String STR_6
- Digit six as a string.
CALC_KEY_6
public final static int CALC_KEY_6
- Value (hashCode) for key six (6).
SEVEN
public final static int SEVEN
- Digit seven.
STR_7
public final static String STR_7
- Digit seven as a string.
CALC_KEY_7
public final static int CALC_KEY_7
- Value (hashCode) for key seven (7).
EIGHT
public final static int EIGHT
- Digit eight.
STR_8
public final static String STR_8
- Digit eight as a string.
CALC_KEY_8
public final static int CALC_KEY_8
- Value (hashCode) for key eight (8).
NINE
public final static int NINE
- Digit nine.
STR_9
public final static String STR_9
- Digit nine as a string.
CALC_KEY_9
public final static int CALC_KEY_9
- Value (hashCode) for key nine (9).
DOT
public final static int DOT
- Dot code.
STR_DOT
public final static String STR_DOT
- Dot - string representation.
CALC_KEY_DOT
public final static int CALC_KEY_DOT
- Value (hashCode) for key dot (.).
ADD
public final static int ADD
- Add code.
STR_ADD
public final static String STR_ADD
- Add - string representation.
CALC_KEY_ADD
public final static int CALC_KEY_ADD
SUB
public final static int SUB
- Substract code.
STR_SUB
public final static String STR_SUB
- Substract - string representation.
CALC_KEY_SUB
public final static int CALC_KEY_SUB
MUL
public final static int MUL
- Multiply by code.
STR_MUL
public final static String STR_MUL
- Multiply by - string representation.
CALC_KEY_MUL
public final static int CALC_KEY_MUL
DIV
public final static int DIV
- Divided by code.
STR_DIV
public final static String STR_DIV
- Divided by - string representation.
CALC_KEY_DIV
public final static int CALC_KEY_DIV
EQU
public final static int EQU
- Result (equal) code.
STR_EQU
public final static String STR_EQU
- Result (equal) - string representation.
CALC_KEY_EQU
public final static int CALC_KEY_EQU
PRC
public final static int PRC
- Percentage code.
STR_PRC
public final static String STR_PRC
- Percentage - string representation.
CALC_KEY_PRC
public final static int CALC_KEY_PRC
CLR
public final static int CLR
- Clear All (x=0, y=0, m=0, etc.) code.
STR_CLR
public final static String STR_CLR
- Clear All - string representation.
CALC_KEY_CLR
public final static int CALC_KEY_CLR
CE
public final static int CE
- Clear Entry (x=0) code.
STR_CE
public final static String STR_CE
- Clear Entry - string representation.
CALC_KEY_CE
public final static int CALC_KEY_CE
MR
public final static int MR
- Memory read (x=m) code.
STR_MR
public final static String STR_MR
- Memory Read - string representation.
CALC_KEY_MR
public final static int CALC_KEY_MR
MC
public final static int MC
- Memory clear (m=0) code.
STR_MC
public final static String STR_MC
- Memory Clear - string representation.
CALC_KEY_MC
public final static int CALC_KEY_MC
MADD
public final static int MADD
- Add to memory (m+=x) code.
STR_MADD
public final static String STR_MADD
- Add to memory - string representation.
CALC_KEY_MADD
public final static int CALC_KEY_MADD
MSUB
public final static int MSUB
- Substract from memory (m-=x) code.
STR_MSUB
public final static String STR_MSUB
- Substract from memory - string representation.
CALC_KEY_MSUB
public final static int CALC_KEY_MSUB
SWAP
public final static int SWAP
- Swap registers (x->y, y->x) code.
STR_SWAP
public final static String STR_SWAP
- Swap registers - string representation.
SQR
public final static int SQR
- At square (x*x) code.
STR_SQR
public final static String STR_SQR
- At square - string representation.
SQRT
public final static int SQRT
- Square root code.
STR_SQRT
public final static String STR_SQRT
- Square root - string representation.
VPI
public final static int VPI
- Value of PI code.
STR_VPI
public final static String STR_VPI
- Value PI - string representation.
LN
public final static int LN
- Natural logarithm code.
STR_LN
public final static String STR_LN
- Natural logarithm - string representation.
LOG
public final static int LOG
- Decimal logarithm code.
STR_LOG
public final static String STR_LOG
- Decimal logarithm - string representation.
EXP
public final static int EXP
- Exponential function (x=e^x) code.
STR_EXP
public final static String STR_EXP
- Exponential function - string representation.
SIN
public final static int SIN
- Sinus (x=sin(x)) code.
STR_SIN
public final static String STR_SIN
- Sinus - string representation.
ASIN
public final static int ASIN
- Arcsinus (x=arcsin(x)) code.
STR_ASIN
public final static String STR_ASIN
- Arcsinus - string representation.
COS
public final static int COS
- Cosinus (x=cos(x)) code.
STR_COS
public final static String STR_COS
- Cosinus - string representation.
ACOS
public final static int ACOS
- Arccosinus (x=arccos(x)) code.
STR_ACOS
public final static String STR_ACOS
- Arccosinus - string representation.
TAN
public final static int TAN
- Tangent (x=tan(x)) code.
STR_TAN
public final static String STR_TAN
- Tangent - string representation.
ATAN
public final static int ATAN
- Arctangent (x=arctan(x)) code.
STR_ATAN
public final static String STR_ATAN
- Arctangent - string representation.
POW
public final static int POW
- At power (x=x^y) code.
STR_POW
public final static String STR_POW
- At power - string representation.
INV
public final static int INV
- Inverse (x=1/x) code.
STR_INV
public final static String STR_INV
- Inverse - string representation.
SGN
public final static int SGN
- Change sign (x=-x) code.
STR_SGN
public final static String STR_SGN
- Change sign - string representation.
VE
public final static int VE
- Value of e code.
STR_VE
public final static String STR_VE
- Value of e - string representation.
All Packages Class Hierarchy This Package Previous Next Index