Class BeaconFields
- java.lang.Object
-
- com.cheetahdigital.corekit.rest.params.BaseParams
-
- com.cheetahdigital.corekit.rest.params.BaseListQueryParams
-
- com.cheetahdigital.beacons.core.api.BeaconFields
-
- All Implemented Interfaces:
android.os.Parcelable
public class BeaconFields extends BaseListQueryParams
Class for setting the query parameters of Beacon API AllNullable
parameters means you can remove the parameter by passing anull
value.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BeaconFields.Builder
-
Nested classes/interfaces inherited from class com.cheetahdigital.corekit.rest.params.BaseListQueryParams
BaseListQueryParams.BaseListQueryBuilder<P extends BaseListQueryParams,B extends BaseListQueryParams.BaseListQueryBuilder>
-
Nested classes/interfaces inherited from class com.cheetahdigital.corekit.rest.params.BaseParams
BaseParams.BaseBuilder<T extends BaseParams,B extends BaseParams.BaseBuilder>
-
-
Field Summary
Fields Modifier and Type Field Description static android.os.Parcelable.Creator<BeaconFields>
CREATOR
-
Fields inherited from class com.cheetahdigital.corekit.rest.params.BaseParams
mId, mQueryMap
-
-
Constructor Summary
Constructors Constructor Description BeaconFields()
BeaconFields(android.os.Parcel in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMajor()
Get the current value of the Major parameterjava.lang.String
getMinor()
Get the current value of the Minor parameterjava.lang.String
getUUId()
Get the current value of the UUId parametervoid
setMajor(java.lang.String major)
Set the value for Major paramvoid
setMinor(java.lang.String minor)
Set the value for Minor paramvoid
setUUId(java.lang.String uUId)
Set the value for UIId param-
Methods inherited from class com.cheetahdigital.corekit.rest.params.BaseListQueryParams
addCategories, addCategory, clearCategories, describeContents, getCategories, getItemsPerPage, getLayout, getPage, getSortBy, getSortOrder, removeCategory, setItemsPerPage, setLayout, setPage, setSortBy, setSortOrder, writeToParcel
-
Methods inherited from class com.cheetahdigital.corekit.rest.params.BaseParams
addParam, getAccessToken, getId, getParam, getQueryMap, setAccessToken, setId
-
-
-
-
Field Detail
-
CREATOR
public static final android.os.Parcelable.Creator<BeaconFields> CREATOR
-
-
Method Detail
-
setUUId
public void setUUId(@Nullable java.lang.String uUId)
Set the value for UIId param- Parameters:
uUId
- value to set for uiId
-
getUUId
public java.lang.String getUUId()
Get the current value of the UUId parameter- Returns:
- string containing the current value for UUid parameter, null if no value set
-
setMajor
public void setMajor(@Nullable java.lang.String major)
Set the value for Major param- Parameters:
major
- value to set for Major
-
getMajor
public java.lang.String getMajor()
Get the current value of the Major parameter- Returns:
- string containing the current value for Major parameter, null if no value set
-
setMinor
public void setMinor(@Nullable java.lang.String minor)
Set the value for Minor param- Parameters:
minor
- value to set for Minor
-
getMinor
public java.lang.String getMinor()
Get the current value of the Minor parameter- Returns:
- string containing the current value for Minor parameter, null if no value set
-
-