Package redis.clients.jedis.params
Class GeoAddParams
java.lang.Object
redis.clients.jedis.params.GeoAddParams
- All Implemented Interfaces:
IParams
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddParams(CommandArguments args) ch()Modify the return value from the number of new elements added, to the total number of elements changedstatic GeoAddParamsnx()Don't update already existing elements.xx()Only update elements that already exist.
-
Field Details
-
nx
private boolean nx -
xx
private boolean xx -
ch
private boolean ch
-
-
Constructor Details
-
GeoAddParams
public GeoAddParams()
-
-
Method Details
-
geoAddParams
-
nx
Don't update already existing elements. Always add new elements.- Returns:
- GetExParams
-
xx
Only update elements that already exist. Never add elements.- Returns:
- GetExParams
-
ch
Modify the return value from the number of new elements added, to the total number of elements changed- Returns:
- GetExParams
-
addParams
-