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

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

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

Methods in com.google.visualization.datasource.datatable that return ValueType
 ValueType ValueFormatter.getType()
          Returns the type.
 ValueType TableCell.getType()
          Returns the type of this cell.
 ValueType ColumnDescription.getType()
          Returns the column type.
 

Methods in com.google.visualization.datasource.datatable that return types with arguments of type ValueType
static java.util.Map<ValueType,ValueFormatter> ValueFormatter.createDefaultFormatters(com.ibm.icu.util.ULocale locale)
          Creates default formatters for all the value types for the specified locale.
 

Methods in com.google.visualization.datasource.datatable with parameters of type ValueType
static ValueFormatter ValueFormatter.createDefault(ValueType type, com.ibm.icu.util.ULocale locale)
          Creates a default formatter for the specified value type and locale.
static ValueFormatter ValueFormatter.createFromPattern(ValueType type, java.lang.String pattern, com.ibm.icu.util.ULocale locale)
          Creates a formatter for the given value type with the given pattern string and locale.
 

Constructors in com.google.visualization.datasource.datatable with parameters of type ValueType
ColumnDescription(java.lang.String id, ValueType type, java.lang.String label)
          Creates a new column description.
 

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

Methods in com.google.visualization.datasource.datatable.value that return ValueType
 ValueType TextValue.getType()
           
 ValueType TimeOfDayValue.getType()
           
 ValueType DateValue.getType()
           
 ValueType DateTimeValue.getType()
           
 ValueType NumberValue.getType()
           
 ValueType BooleanValue.getType()
           
abstract  ValueType Value.getType()
          Returns the type of this cell.
static ValueType ValueType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ValueType[] ValueType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.google.visualization.datasource.datatable.value with parameters of type ValueType
static Value Value.getNullValueFromValueType(ValueType type)
          Returns the NullValue for the given type.
 

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

Methods in com.google.visualization.datasource.query that return ValueType
 ValueType ScalarFunctionColumn.getValueType(DataTable dataTable)
          Returns the value type of the column after evaluating the scalar function.
 ValueType AggregationColumn.getValueType(DataTable dataTable)
          Returns the value type of the column.
 ValueType SimpleColumn.getValueType(DataTable dataTable)
          Returns the value type of the column.
abstract  ValueType AbstractColumn.getValueType(DataTable dataTable)
          Returns the value type of the column.
 

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

Methods in com.google.visualization.datasource.query.scalarfunction that return ValueType
 ValueType Sum.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType DateDiff.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType ToDate.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Upper.getReturnType(java.util.List<ValueType> types)
           
 ValueType Quotient.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Difference.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Lower.getReturnType(java.util.List<ValueType> types)
           
 ValueType CurrentDateTime.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType TimeComponentExtractor.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Product.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Constant.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType ScalarFunction.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function, given specific types for its parameters.
 

Method parameters in com.google.visualization.datasource.query.scalarfunction with type arguments of type ValueType
 ValueType Sum.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType DateDiff.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType ToDate.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Upper.getReturnType(java.util.List<ValueType> types)
           
 ValueType Quotient.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Difference.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Lower.getReturnType(java.util.List<ValueType> types)
           
 ValueType CurrentDateTime.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType TimeComponentExtractor.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Product.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType Constant.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function.
 ValueType ScalarFunction.getReturnType(java.util.List<ValueType> types)
          Returns the return type of the function, given specific types for its parameters.
 void Sum.validateParameters(java.util.List<ValueType> types)
          Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters.
 void DateDiff.validateParameters(java.util.List<ValueType> types)
          Validates that there are only 2 parameters given for this function, and that their types are either DATE or DATETIME.
 void ToDate.validateParameters(java.util.List<ValueType> types)
          Validates that there is only 1 parameter given for this function, and that its type is either DATE, DATETIME or NUMBER.
 void Upper.validateParameters(java.util.List<ValueType> types)
          Validates that the number and types of the function parameters are valid.
 void Quotient.validateParameters(java.util.List<ValueType> types)
          Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters.
 void Difference.validateParameters(java.util.List<ValueType> types)
          Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters.
 void Lower.validateParameters(java.util.List<ValueType> types)
          Validates that the number and types of the function parameters are valid.
 void CurrentDateTime.validateParameters(java.util.List<ValueType> types)
          Validates that there are no parameters given for the function.
 void TimeComponentExtractor.validateParameters(java.util.List<ValueType> types)
          Validates that there is only one parameter given for the function, and that its type is DATE or DATETIME if the timeComponent to extract is year, month or day, or that it is DATETIME or TIMEOFDAY if the timeComponent is hour, minute, second or millisecond.
 void Product.validateParameters(java.util.List<ValueType> types)
          Validates that all function parameters are of type NUMBER, and that there are exactly 2 parameters.
 void Constant.validateParameters(java.util.List<ValueType> types)
          Validates that there are no parameters given for the function.
 void ScalarFunction.validateParameters(java.util.List<ValueType> types)
          Validates that the number and types of the function parameters are valid.
 



Copyright © 2009 Google. All Rights Reserved.