Class QueryParameter
- java.lang.Object
-
- com.aerisweather.aeris.communication.parameter.Parameter
-
- com.aerisweather.aeris.communication.parameter.QueryParameter
-
public class QueryParameter extends Parameter
Used to filter results based on certain fields in the data set. See Advanced Queries for more details.
-
-
Constructor Summary
Constructors Constructor Description QueryParameter(CodedInterface value)
Construct a query parameter with a coded value
query=:stringQueryParameter(CodedInterface code, double value)
For a more advanced CodedInterface value with a comparator.QueryParameter(String value)
Construct a query parameter with the string value.QueryParameter(String type, String value)
A more advanced query with a comparator.
-
-
-
Constructor Detail
-
QueryParameter
public QueryParameter(String value)
Construct a query parameter with the string value.
query=:string- Parameters:
value
- value to use.
-
QueryParameter
public QueryParameter(CodedInterface value)
Construct a query parameter with a coded value
query=:string- Parameters:
value
- uses the CodedInterface to determine the value.
-
QueryParameter
public QueryParameter(CodedInterface code, double value)
For a more advanced CodedInterface value with a comparator.- Parameters:
code
- uses the CodedInterface to determine the typevalue
- value to use as a comparator to the type
-
-