public class FilterByValueRequest extends Object implements org.apache.avro.generic.IndexedRecord
GPUdb.filterByValue(FilterByValueRequest)
.
Constructor and Description |
---|
FilterByValueRequest()
Constructs a FilterByValueRequest object with default parameters.
|
FilterByValueRequest(String tableName,
String viewName,
boolean isString,
double value,
String valueStr,
String columnName,
Map<String,String> options)
Constructs a FilterByValueRequest object with the specified parameters.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj) |
Object |
get(int index)
This method supports the Avro framework and is not intended to be called directly by the user.
|
static org.apache.avro.Schema |
getClassSchema()
This method supports the Avro framework and is not intended to be called directly by the user.
|
String |
getColumnName() |
boolean |
getIsString() |
Map<String,String> |
getOptions() |
org.apache.avro.Schema |
getSchema()
This method supports the Avro framework and is not intended to be called directly by the user.
|
String |
getTableName() |
double |
getValue() |
String |
getValueStr() |
String |
getViewName() |
int |
hashCode() |
void |
put(int index,
Object value)
This method supports the Avro framework and is not intended to be called directly by the user.
|
FilterByValueRequest |
setColumnName(String columnName) |
FilterByValueRequest |
setIsString(boolean isString) |
FilterByValueRequest |
setOptions(Map<String,String> options) |
FilterByValueRequest |
setTableName(String tableName) |
FilterByValueRequest |
setValue(double value) |
FilterByValueRequest |
setValueStr(String valueStr) |
FilterByValueRequest |
setViewName(String viewName) |
String |
toString() |
public FilterByValueRequest()
public FilterByValueRequest(String tableName, String viewName, boolean isString, double value, String valueStr, String columnName, Map<String,String> options)
tableName
- Name of an existing GPUdb table on which to perform the calculation.viewName
- If provided, then this will be the name of the view containing the results. Must not be an already existing
collection, table or view.isString
- Indicates whether the value being searched for is string or numeric.value
- The value to search for.valueStr
- The string value to search for.columnName
- Name of a column or an expression of one or more columns on which the filter by value would be applied.options
- Optional parameters.public static org.apache.avro.Schema getClassSchema()
public String getTableName()
public FilterByValueRequest setTableName(String tableName)
tableName
- Name of an existing GPUdb table on which to perform the calculation.this
to mimic the builder pattern.public String getViewName()
public FilterByValueRequest setViewName(String viewName)
viewName
- If provided, then this will be the name of the view containing the results. Must not be an already existing
collection, table or view.this
to mimic the builder pattern.public boolean getIsString()
public FilterByValueRequest setIsString(boolean isString)
isString
- Indicates whether the value being searched for is string or numeric.this
to mimic the builder pattern.public double getValue()
public FilterByValueRequest setValue(double value)
value
- The value to search for.this
to mimic the builder pattern.public String getValueStr()
public FilterByValueRequest setValueStr(String valueStr)
valueStr
- The string value to search for.this
to mimic the builder pattern.public String getColumnName()
public FilterByValueRequest setColumnName(String columnName)
columnName
- Name of a column or an expression of one or more columns on which the filter by value would be applied.this
to mimic the builder pattern.public FilterByValueRequest setOptions(Map<String,String> options)
options
- Optional parameters.this
to mimic the builder pattern.public org.apache.avro.Schema getSchema()
getSchema
in interface org.apache.avro.generic.GenericContainer
public Object get(int index)
get
in interface org.apache.avro.generic.IndexedRecord
index
- the position of the field to getIndexOutOfBoundsException
public void put(int index, Object value)
put
in interface org.apache.avro.generic.IndexedRecord
index
- the position of the field to setvalue
- the value to setIndexOutOfBoundsException
Copyright © 2016. All rights reserved.