Package com.aerisweather.aeris.maps
Class AerisMapsDefaultPointParameters.SpecificPointParameters
- java.lang.Object
-
- com.aerisweather.aeris.maps.AerisMapsDefaultPointParameters.SpecificPointParameters
-
- Enclosing class:
- AerisMapsDefaultPointParameters
public class AerisMapsDefaultPointParameters.SpecificPointParameters extends Object
Specific point parameter is a wrapper class that holds the parameter values needed to pass to a parameter builder. Then a ParameterBuilder is passed into SpecificPointParameters to attach the values to the builder needed for a request.
-
-
Constructor Summary
Constructors Constructor Description SpecificPointParameters(String sort, int limit, String query, String from)
Initialize with values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
attachParametersToBuilder(com.aerisweather.aeris.communication.parameter.ParameterBuilder builder)
Attached the parameters that are not null in this wrapper object to the builder object.
-
-
-
Constructor Detail
-
SpecificPointParameters
public SpecificPointParameters(String sort, int limit, String query, String from)
Initialize with values. Limit will default to 500 if none is passed. Others can be null.- Parameters:
sort
- sort value to use.limit
- limit value to use. Defaults to 500.query
- query value to use.from
- from value to use.
-
-