Uses of Class
org.hackystat.telemetry.analyzer.language.ast.Constant

Packages that use Constant
org.hackystat.telemetry.analyzer.evaluator Provides the evaluator for Telemetry Language expressions, which given a definition, a Project, and a time interval, returns one of TelemetryReportObject, TelemetryChartObject, or TelemetryStreamsObject. 
org.hackystat.telemetry.analyzer.language.ast Provides the implementation of the Telemetry Language abstract syntax tree. 
org.hackystat.telemetry.analyzer.language.parser.impl Provides the JavaCC parser that parses the Telemetry Language. 
 

Uses of Constant in org.hackystat.telemetry.analyzer.evaluator
 

Methods in org.hackystat.telemetry.analyzer.evaluator that return Constant
 Constant VariableResolver.resolve(Variable variable)
          Resolves a variable to a constant.
 

Methods in org.hackystat.telemetry.analyzer.evaluator with parameters of type Constant
 void VariableResolver.add(Variable variable, Constant constant)
          Adds a variable-constant pair so that later the variable can be resolved.
 

Uses of Constant in org.hackystat.telemetry.analyzer.language.ast
 

Subclasses of Constant in org.hackystat.telemetry.analyzer.language.ast
 class NumberConstant
          Number constant in telemetry language.
 class StringConstant
          String constant in telemetry language.
 

Methods in org.hackystat.telemetry.analyzer.language.ast that return Constant
 Constant[] DrawCommand.getParameters()
          Gets the parameters.
 

Constructors in org.hackystat.telemetry.analyzer.language.ast with parameters of type Constant
DrawCommand(java.lang.String telemetryDefinitionName, Constant[] parameters, TextPosition textPosition)
          Constructs this instance.
 

Uses of Constant in org.hackystat.telemetry.analyzer.language.parser.impl
 

Methods in org.hackystat.telemetry.analyzer.language.parser.impl that return Constant
 Constant[] TelemetryLanguageParserImpl.constants()