Uses of Class
parser.Variable
| Package | Description |
|---|---|
| parser |
Classes designed to parse a mathematical expression.
|
| util | |
| util.io |
-
Uses of Variable in parser
Fields in parser declared as Variable Modifier and Type Field Description static VariableVariable. ansThe last answer variable used for flexibility on computational systems.static VariableVariable. estatic VariableVariable. PIThe constant PIMethods in parser that return Variable Modifier and Type Method Description VariableFunction. getDependentVariable()VariableFunction. getIndependentVariable(java.lang.String name)static VariableVariable. parse(java.lang.String enc)Methods in parser that return types with arguments of type Variable Modifier and Type Method Description java.util.ArrayList<Variable>Function. getIndependentVariables()java.util.ArrayList<Variable>MathExpression. getVars()Methods in parser with parameters of type Variable Modifier and Type Method Description voidFunction. setDependentVariable(Variable dependentVariable)Method parameters in parser with type arguments of type Variable Modifier and Type Method Description voidFunction. setIndependentVariables(java.util.ArrayList<Variable> independentVariables) -
Uses of Variable in util
Fields in util with type parameters of type Variable Modifier and Type Field Description static java.util.Map<java.lang.String,Variable>VariableManager. VARIABLESMethods in util that return Variable Modifier and Type Method Description VariableVariableGenerator. generateVariable()static VariableVariableManager. getVariable(java.lang.String vName)static VariableVariableManager. lookUp(java.lang.String vName)Attempts to retrieve a Variable object from a VariableManager based on its name.VariableVariableManager. parseSingleCommand(java.lang.String cmd)Parses a command that creates a single variable or changes its value.Methods in util that return types with arguments of type Variable Modifier and Type Method Description static java.util.ArrayList<Variable>VariableManager. getVariables()java.util.Map<java.lang.String,Variable>VariableManager. getVarStore()Methods in util with parameters of type Variable Modifier and Type Method Description static voidVariableManager. add(Variable var)Introduces a Variablestatic voidVariableManager. add(Variable... vars)Introduces an array or variable-args list of VariableMethod parameters in util with type arguments of type Variable Modifier and Type Method Description static voidVariableManager. load(java.util.Collection<Variable> variables)static voidVariableManager. load(java.util.Map<java.lang.String,Variable> variables)static voidVariableManager. load(java.util.Map<java.lang.String,Variable> variables, boolean clearFirst) -
Uses of Variable in util.io
Method parameters in util.io with type arguments of type Variable Modifier and Type Method Description static voidVariableBackup. read(java.util.Map<java.lang.String,Variable> map, java.io.File file)This reads the lines of text in a file into aMap.static voidVariableBackup. readFileLinesToMap(java.util.Map<java.lang.String,Variable> map, java.io.File fileToRead)This reads the lines of text in a file into aMap.static voidVariableBackup. writeMapItemsToFileLineByLine(java.util.Map<java.lang.String,Variable> map, java.io.File file)This writes items on a queue to a file.