Uses of Class
com.netmera.mobile.NetmeraService

Packages that use NetmeraService
com.netmera.mobile   
 

Uses of NetmeraService in com.netmera.mobile
 

Methods in com.netmera.mobile that return NetmeraService
 NetmeraService NetmeraService.addSearchText(java.lang.String searchText)
          Adds the searchText into the query.
static NetmeraService NetmeraService.getNetmeraUserService()
          It creates the NetmeraUser service object.
 NetmeraService NetmeraService.whereAllContainedIn(java.lang.String key, java.util.Collection<?> values)
          Adds an options to the query where value that matches with the query contains all of the values in the given collection.
 NetmeraService NetmeraService.whereContainedIn(java.lang.String key, java.util.Collection<?> values)
          Adds an options to the query where value that matches with the query contains any of the values in the given collection.
 NetmeraService NetmeraService.whereEndsWith(java.lang.String key, java.lang.String suffix)
          Adds an options to the query where value that matches with the query ends with the given suffix.
 NetmeraService NetmeraService.whereEndsWith(java.lang.String key, java.lang.String suffix, boolean isCaseInsensitive)
          Adds an options to the query where value that matches with the query ends with the given suffix.
 NetmeraService NetmeraService.whereEqual(java.lang.String key, java.lang.Object value)
          Adds an options to the query where value that matches with the query is equal to the given value.
 NetmeraService NetmeraService.whereEqual(java.lang.String key, java.lang.Object value, boolean isCaseInsensitive)
          Adds an options to the query where value that matches with the query is equal to the given value.
 NetmeraService NetmeraService.whereExists(java.lang.String key, boolean value)
          Adds an options to the query where the given key is exists or not.
 NetmeraService NetmeraService.whereGreaterThan(java.lang.String key, java.lang.Object value)
          Adds an options to the query where value that matches with the query is greater than the given value.
 NetmeraService NetmeraService.whereGreaterThanOrEqual(java.lang.String key, java.lang.Object value)
          Adds an options to the query where value that matches with the query is greater than or equal to the given value.
 NetmeraService NetmeraService.whereLessThan(java.lang.String key, java.lang.Object value)
          Adds an options to the query where value that matches with the query is less than the given value.
 NetmeraService NetmeraService.whereLessThanOrEqual(java.lang.String key, java.lang.Object value)
          Adds an options to the query where value that matches with the query is less than or equal to the given value.
 NetmeraService NetmeraService.whereMatches(java.lang.String key, java.lang.String regex)
          Adds an options to the query where value that returns from the query matches with the given regex.
 NetmeraService NetmeraService.whereMatches(java.lang.String key, java.lang.String regex, boolean isCaseInsensitive)
          Adds an options to the query where value that returns from the query matches with the given regex.
 NetmeraService NetmeraService.whereNotEqual(java.lang.String key, java.lang.Object value)
          Adds an options to the query where value that matches with the query is not equal to the given value.
 NetmeraService NetmeraService.whereOwnerEqual(NetmeraUser user)
          This is used to get the contents of the logged user.
 NetmeraService NetmeraService.whereStartsWith(java.lang.String key, java.lang.String prefix)
          Adds an options to the query where value that matches with the query starts with the given prefix.
 NetmeraService NetmeraService.whereStartsWith(java.lang.String key, java.lang.String prefix, boolean isCaseInsensitive)
          Adds an options to the query where value that matches with the query starts with the given prefix.