Uses of Class
csheets.core.Value.Type

Packages that use Value.Type
csheets.core Provides the core classes for the application's data model, i.e. workbooks, spreadsheets, cells, addresses and values. 
csheets.core.formula Provides classes for representing formulas. 
csheets.core.formula.lang Provides the operators, functions and references supported by the formula language. 
 

Uses of Value.Type in csheets.core
 

Methods in csheets.core that return Value.Type
 Value.Type IllegalValueTypeException.getExpectedValueType()
          Returns the expected type of the value.
 Value.Type Value.getType()
          Returns the type of the value.
static Value.Type Value.Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Value.Type[] Value.Type.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in csheets.core with parameters of type Value.Type
 boolean Value.isOfType(Value.Type type)
          Returns whether the value is of the given type.
static Value Value.parseValue(String value, Value.Type... types)
          Attempts to parse a value from the given string.
 

Constructors in csheets.core with parameters of type Value.Type
IllegalValueTypeException(Value value, Value.Type expectedValueType)
          Creates a new illegal value type exception.
 

Uses of Value.Type in csheets.core.formula
 

Methods in csheets.core.formula that return Value.Type
 Value.Type Operator.getOperandValueType()
          Returns the type of value that the operator's operands can have.
 Value.Type FunctionParameter.getValueType()
          Returns the value type of the argument.
 

Constructors in csheets.core.formula with parameters of type Value.Type
FunctionParameter(Value.Type valueType, String name, boolean optional, String description)
          Creates a new function parameter.
 

Uses of Value.Type in csheets.core.formula.lang
 

Methods in csheets.core.formula.lang that return Value.Type
 Value.Type Subtracter.getOperandValueType()
           
 Value.Type RelationalOperator.getOperandValueType()
           
 Value.Type RangeReference.getOperandValueType()
           
 Value.Type Percent.getOperandValueType()
           
 Value.Type NotEqual.getOperandValueType()
           
 Value.Type Negator.getOperandValueType()
           
 Value.Type Multiplier.getOperandValueType()
           
 Value.Type LessThanOrEqual.getOperandValueType()
           
 Value.Type LessThan.getOperandValueType()
           
 Value.Type GreaterThanOrEqual.getOperandValueType()
           
 Value.Type GreaterThan.getOperandValueType()
           
 Value.Type Exponentiator.getOperandValueType()
           
 Value.Type Equal.getOperandValueType()
           
 Value.Type Divider.getOperandValueType()
           
 Value.Type Concatenator.getOperandValueType()
           
 Value.Type Adder.getOperandValueType()