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

Variable Index

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

Variables

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index