Uses of Class
com.google.visualization.datasource.datatable.value.Value

Packages that use Value
com.google.visualization.datasource.datatable   
com.google.visualization.datasource.datatable.value   
com.google.visualization.datasource.query   
com.google.visualization.datasource.query.engine   
com.google.visualization.datasource.query.scalarfunction   
 

Uses of Value in com.google.visualization.datasource.datatable
 

Methods in com.google.visualization.datasource.datatable that return Value
 Value TableCell.getValue()
          Returns the inner value of this cell.
 Value DataTable.getValue(int rowIndex, int colIndex)
          Returns the value in the cell at the specified row and column indexes.
 Value ValueFormatter.parse(java.lang.String val)
          Creates the corresponding Value from the given string.
 

Methods in com.google.visualization.datasource.datatable with parameters of type Value
 void TableRow.addCell(Value value)
          Adds a value of a single cell to the end of the row.
 java.lang.String ValueFormatter.format(Value value)
          Formats a value to a string, using the given pattern.
 

Constructors in com.google.visualization.datasource.datatable with parameters of type Value
TableCell(Value value)
          Construct a new TableCell with the parameter as the inner value.
TableCell(Value value, java.lang.String formattedValue)
          Construct a new TableCell with the parameter as the inner value and with a FormattedValue representing this.value.
 

Uses of Value in com.google.visualization.datasource.datatable.value
 

Subclasses of Value in com.google.visualization.datasource.datatable.value
 class BooleanValue
          A value of type boolean.
 class DateTimeValue
          A value of type date-time.
 class DateValue
          A value of type date.
 class NumberValue
          A value of type number.
 class TextValue
          A value of type text (string).
 class TimeOfDayValue
          A value of type time-of-day.
 

Methods in com.google.visualization.datasource.datatable.value that return Value
 Value ValueType.createValue(java.lang.Object value)
          Creates a value of this ValueType.
static Value Value.getNullValueFromValueType(ValueType type)
          Returns the NullValue for the given type.
 

Methods in com.google.visualization.datasource.datatable.value that return types with arguments of type Value
static java.util.Comparator<Value> Value.getLocalizedComparator(com.ibm.icu.util.ULocale ulocale)
          Returns a comparator that compares values according to a given locale (in case of text values).
 

Methods in com.google.visualization.datasource.datatable.value with parameters of type Value
 int TextValue.compareTo(Value other)
          Compares this value to another value of the same type.
 int TimeOfDayValue.compareTo(Value other)
          Compares this value to another value of the same type.
 int DateValue.compareTo(Value other)
          Compares this value to another value of the same type.
 int DateTimeValue.compareTo(Value other)
          Compares this value to another value of the same type.
 int NumberValue.compareTo(Value other)
          Compares this value to another value of the same type.
 int BooleanValue.compareTo(Value other)
          Compares this cell to another cell of the same type.
 

Uses of Value in com.google.visualization.datasource.query
 

Methods in com.google.visualization.datasource.query that return Value
 Value ColumnValueFilter.getValue()
          Returns the value associated with this ColumnValueFilter.
 Value AbstractColumn.getValue(ColumnLookup lookup, TableRow row)
          Returns the value of the column in the given row.
 

Methods in com.google.visualization.datasource.query with parameters of type Value
protected  boolean ComparisonFilter.isOperatorMatch(Value v1, Value v2)
          Matches the given two values against the operator.
 

Constructors in com.google.visualization.datasource.query with parameters of type Value
ColumnValueFilter(AbstractColumn column, Value value, ComparisonFilter.Operator operator)
          Constructs a new ColumnValueFilter on a given column, constant value and operator.
ColumnValueFilter(AbstractColumn column, Value value, ComparisonFilter.Operator operator, boolean isComparisonOrderReversed)
          Constructs a new ColumnValueFilter on a given column, constant value, operator, and isComparisonOrderReversed.
 

Uses of Value in com.google.visualization.datasource.query.engine
 

Methods in com.google.visualization.datasource.query.engine that return Value
 Value TableAggregator.getAggregationValue(AggregationPath path, java.lang.String columnId, AggregationType type)
          Returns the aggregation value of a specific column and type.
 Value AggregationNode.getAggregationValue(java.lang.String columnId, AggregationType type)
          Returns the aggregation value of a specific column and type.
protected  Value AggregationNode.getValue()
          Returns the value of this node.
 

Methods in com.google.visualization.datasource.query.engine that return types with arguments of type Value
 java.util.Map<Value,AggregationNode> AggregationNode.getChildren()
          Returns a copy of the map of children of this node.
 java.util.List<Value> AggregationPath.getValues()
          Returns the list of values.
 

Methods in com.google.visualization.datasource.query.engine with parameters of type Value
 void AggregationPath.add(Value value)
          Adds a value to this path.
 void AggregationNode.addChild(Value key, java.util.Set<java.lang.String> columnsToAggregate, DataTable table)
          Adds a new child.
 boolean AggregationNode.containsChild(Value v)
          Returns true if a node contains a child (identified by value) and false otherwise.
 AggregationNode AggregationNode.getChild(Value v)
          Returns the child of this node defined by a specific value.
 

Method parameters in com.google.visualization.datasource.query.engine with type arguments of type Value
 void AggregationTree.aggregate(AggregationPath path, java.util.Map<java.lang.String,Value> valuesToAggregate)
          Aggregates values to all the nodes on a path.
 void AggregationNode.aggregate(java.util.Map<java.lang.String,Value> valuesByColumn)
          Aggregates values using the value aggregators of this node.
 

Uses of Value in com.google.visualization.datasource.query.scalarfunction
 

Methods in com.google.visualization.datasource.query.scalarfunction that return Value
 Value Sum.evaluate(java.util.List<Value> values)
          Executes the scalar function sum() on the given values.
 Value DateDiff.evaluate(java.util.List<Value> values)
          Executes this scalar function on the given values.
 Value ToDate.evaluate(java.util.List<Value> values)
          Executes the scalar function toDate() on the given values.
 Value Upper.evaluate(java.util.List<Value> values)
           
 Value Quotient.evaluate(java.util.List<Value> values)
          Executes the scalar function quotient() on the given values.
 Value Difference.evaluate(java.util.List<Value> values)
          Executes the scalar function difference() on the given values.
 Value Lower.evaluate(java.util.List<Value> values)
           
 Value CurrentDateTime.evaluate(java.util.List<Value> values)
          Evaluates this scalar function.
 Value TimeComponentExtractor.evaluate(java.util.List<Value> values)
          Executes the scalar function that extracts the timeComponent on the given values.
 Value Product.evaluate(java.util.List<Value> values)
          Executes the scalar function product() on the given values.
 Value Constant.evaluate(java.util.List<Value> values)
          Executes the scalar function constant().
 Value ScalarFunction.evaluate(java.util.List<Value> values)
          Executes the scalar function on the given list of values, and returns the Value which is the result of the execution the function.
 

Method parameters in com.google.visualization.datasource.query.scalarfunction with type arguments of type Value
 Value Sum.evaluate(java.util.List<Value> values)
          Executes the scalar function sum() on the given values.
 Value DateDiff.evaluate(java.util.List<Value> values)
          Executes this scalar function on the given values.
 Value ToDate.evaluate(java.util.List<Value> values)
          Executes the scalar function toDate() on the given values.
 Value Upper.evaluate(java.util.List<Value> values)
           
 Value Quotient.evaluate(java.util.List<Value> values)
          Executes the scalar function quotient() on the given values.
 Value Difference.evaluate(java.util.List<Value> values)
          Executes the scalar function difference() on the given values.
 Value Lower.evaluate(java.util.List<Value> values)
           
 Value CurrentDateTime.evaluate(java.util.List<Value> values)
          Evaluates this scalar function.
 Value TimeComponentExtractor.evaluate(java.util.List<Value> values)
          Executes the scalar function that extracts the timeComponent on the given values.
 Value Product.evaluate(java.util.List<Value> values)
          Executes the scalar function product() on the given values.
 Value Constant.evaluate(java.util.List<Value> values)
          Executes the scalar function constant().
 Value ScalarFunction.evaluate(java.util.List<Value> values)
          Executes the scalar function on the given list of values, and returns the Value which is the result of the execution the function.
 

Constructors in com.google.visualization.datasource.query.scalarfunction with parameters of type Value
Constant(Value value)
          Constructs a new constant function that always returns the given value.
 



Copyright © 2009 Google. All Rights Reserved.