net.scheinerman.phoenix.interpreter.variables
Class Constants

java.lang.Object
  extended by net.scheinerman.phoenix.interpreter.variables.Constants

public class Constants
extends java.lang.Object

Contains variable constants for use in the Phoenix programming language.

Since:
1.5
Version:
1.0
Author:
Jonah Scheinerman

Field Summary
static NumberVariable DEF_NUM
          The constant for a default number variable.
static StringVariable DEF_STR
          The constant for a default string variable.
static NumberVariable FALSE
          The constant for a false value which is a number variable with a value of 0.
static NumberVariable TRUE
          The constant for a true value which is a number variable with a value of 1.
 
Constructor Summary
Constants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TRUE

public static final NumberVariable TRUE
The constant for a true value which is a number variable with a value of 1.


FALSE

public static final NumberVariable FALSE
The constant for a false value which is a number variable with a value of 0.


DEF_NUM

public static final NumberVariable DEF_NUM
The constant for a default number variable. The default number variable has a value of 0.


DEF_STR

public static final StringVariable DEF_STR
The constant for a default string variable. The default string variable has a value of "" (empty string).

Constructor Detail

Constants

public Constants()