A B C D E F G H I J L M N O P R S T U V W

N

NEARBY - Static variable in class com.netmera.mobile.NetmeraService.SortBy
Is used to set sort order of circle and boxsearch
Netmera - Class in com.netmera.mobile
Netmera class contains initial configuration method and methods that are used to get general data of the application and user.
NetmeraActivity - Class in com.netmera.mobile
This class must be extended from push notification activity of your application.
NetmeraActivity() - Constructor for class com.netmera.mobile.NetmeraActivity
 
NetmeraAndroidPush - Class in com.netmera.mobile
Deprecated. use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. NetmeraAndroidPush class is used to send push notifications into only Android devices from current device.

NetmeraClient("your_api_key");
NetmeraAndroidPush push = new NetmeraAndroidPush();
push.setMessage("This is the message that will be sent as a notification");
push.sendNotification();
NetmeraAndroidPush() - Constructor for class com.netmera.mobile.NetmeraAndroidPush
Deprecated.  
NetmeraBroadcastReceiver - Class in com.netmera.mobile
This is used to receive Push messages and deliver them to NetmeraIntentService.
NetmeraBroadcastReceiver() - Constructor for class com.netmera.mobile.NetmeraBroadcastReceiver
 
NetmeraCache - Class in com.netmera.mobile
Cache mechanism for NetmeraService methods.
NetmeraCache.CacheType - Enum in com.netmera.mobile
Types of the Cache to use while searching.
NetmeraCallback<T> - Class in com.netmera.mobile
NetmeraCallback is used to run code with response data coming from Netmera after the background thread finishes running.
NetmeraCallback() - Constructor for class com.netmera.mobile.NetmeraCallback
 
NetmeraConnectionUtils - Class in com.netmera.mobile
Time restrictions for connection and read operations can be set by using this utility class.
NetmeraConnectionUtils() - Constructor for class com.netmera.mobile.NetmeraConnectionUtils
 
NetmeraContent - Class in com.netmera.mobile
The NetmeraContent object is used to run CRUD operations over the data.
NetmeraContent(String) - Constructor for class com.netmera.mobile.NetmeraContent
Constructor that takes content name as parameter.
NetmeraDeviceDetail - Class in com.netmera.mobile
The NetmeraDeviceDetail class is used to when registering and unregistering devices to specified groups or getting the detailed information of a registered device.
NetmeraDeviceDetail(Context) - Constructor for class com.netmera.mobile.NetmeraDeviceDetail
Constructor that takes context as parameter.
NetmeraDeviceDetail(Context, String, Class<? extends Activity>) - Constructor for class com.netmera.mobile.NetmeraDeviceDetail
Constructor that takes context, pushActivityClass and senderId as parameter.
NetmeraEvent - Class in com.netmera.mobile
NetmeraEvent is used to send custom events and app analytic events about app open/close and time in app to Netmera Analytics service.
NetmeraException - Exception in com.netmera.mobile
 
NetmeraException(NetmeraException.ErrorCode, String) - Constructor for exception com.netmera.mobile.NetmeraException
 
NetmeraException(String, Throwable) - Constructor for exception com.netmera.mobile.NetmeraException
 
NetmeraException(Throwable) - Constructor for exception com.netmera.mobile.NetmeraException
 
NetmeraException.ErrorCode - Enum in com.netmera.mobile
 
NetmeraExceptionReporter - Class in com.netmera.mobile
This class is used to send exception reports to Netmera.
NetmeraFacebookUtils - Class in com.netmera.mobile
NetmeraFacebookUtils is used for user operations on Facebook.
NetmeraFacebookUtils() - Constructor for class com.netmera.mobile.NetmeraFacebookUtils
 
NetmeraGeofence - Class in com.netmera.mobile
Deprecated. Used to control Netmera Geofence Settings, use NetmeraLocationSettings to set the location tracking settings.
NetmeraGeofence() - Constructor for class com.netmera.mobile.NetmeraGeofence
Deprecated. Default constructor
NetmeraGeofenceService - Class in com.netmera.mobile
Deprecated. This class is used to activate / deactivate Geofence Service, use NetmeraLocationService class instead.
NetmeraGeoLocation - Class in com.netmera.mobile
NetmeraGeoLocation is used to create location with the given latitude and longitude values.
NetmeraGeoLocation() - Constructor for class com.netmera.mobile.NetmeraGeoLocation
Default location where latitude and longitude are 0.0
NetmeraGeoLocation(double, double) - Constructor for class com.netmera.mobile.NetmeraGeoLocation
Creates location with the given latitude and longitude.
NetmeraIntentService - Class in com.netmera.mobile
This class is responsible to listen notifications and handle communications between services.In order to send push notification the following XML must be added between the <application></application> tags in the AndroidManifest.xml file.
NetmeraIntentService() - Constructor for class com.netmera.mobile.NetmeraIntentService
Default constructor
NetmeraIOSPush - Class in com.netmera.mobile
Deprecated. use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. NetmeraIOSPush class is used to send push notifications into only IOS devices from current device.

NetmeraClient("your_api_key");
NetmeraIOSPush push = new NetmeraIOSPush();
push.setMessage("This is the message that will be sent as a notification");
push.sendNotification();
NetmeraIOSPush() - Constructor for class com.netmera.mobile.NetmeraIOSPush
Deprecated.  
NetmeraJavascriptInterface - Class in com.netmera.mobile
This class is used to inject the given Java object into rich push WebView.
NetmeraJavascriptInterface(Object, String) - Constructor for class com.netmera.mobile.NetmeraJavascriptInterface
 
NetmeraLocalSession - Class in com.netmera.mobile
This class is used to ease the use of SharedPreferences.
NetmeraLocationService - Class in com.netmera.mobile
This class is used to activate / deactivate Location Service.
NetmeraLocationSettings - Class in com.netmera.mobile
Used to control Netmera Location Settings.
NetmeraLocationSettings() - Constructor for class com.netmera.mobile.NetmeraLocationSettings
Default constructor
NetmeraPopup - Class in com.netmera.mobile
This is the class to manage, see and show pop-ups.
NetmeraPopup() - Constructor for class com.netmera.mobile.NetmeraPopup
 
NetmeraPopup.EventType - Class in com.netmera.mobile
Event types to filter pop-ups.
NetmeraPopup.EventType() - Constructor for class com.netmera.mobile.NetmeraPopup.EventType
 
NetmeraPopupService - Class in com.netmera.mobile
This is the main class to manage pop-ups in Netmera.
NetmeraPrivacy - Enum in com.netmera.mobile.util
Netmera privacy variables for Netmera content.
NetmeraPush - Class in com.netmera.mobile
Deprecated. use NetmeraPushObject to create push notifications. After preparing, use NetmeraPushSender to send this notification. NetmeraPush class is used to send push notifications into devices from your application.

NetmeraClient("your_api_key");
NetmeraPush push = new NetmeraPush();
push.setSendToIos(true);
push.setSendToAndroid(true);
push.setMessage("This is the message that will be sent as a notification");
push.sendNotification();
NetmeraPush() - Constructor for class com.netmera.mobile.NetmeraPush
Deprecated.  
NetmeraPushInboxDataController - Class in com.netmera.mobile
This class helps you to manage push inbox operations.
NetmeraPushInboxDataController() - Constructor for class com.netmera.mobile.NetmeraPushInboxDataController
 
NetmeraPushObject - Class in com.netmera.mobile
NetmeraPushObject is the main Push object in Netmera.
NetmeraPushObject() - Constructor for class com.netmera.mobile.NetmeraPushObject
 
NetmeraPushObject.NotificationType - Class in com.netmera.mobile
Available notification types of the incoming or created push notification object.
NetmeraPushObject.NotificationType() - Constructor for class com.netmera.mobile.NetmeraPushObject.NotificationType
 
NetmeraPushSender - Class in com.netmera.mobile
This class will help you when you want to send push notifications.
NetmeraPushSender() - Constructor for class com.netmera.mobile.NetmeraPushSender
 
NetmeraPushService - Class in com.netmera.mobile
This is the main class to manage push notifications in Netmera.
NetmeraPushService() - Constructor for class com.netmera.mobile.NetmeraPushService
 
NetmeraPushService.NotificationStyleActionController - Class in com.netmera.mobile
This class is used to set actions for new notification styles of Android.
NetmeraPushService.NotificationStyleActionController() - Constructor for class com.netmera.mobile.NetmeraPushService.NotificationStyleActionController
 
NetmeraRichPushObject - Class in com.netmera.mobile
This is the class to manage and create incoming/created rich push notifications that is inherited from NetmeraPushObject.
NetmeraRichPushObject() - Constructor for class com.netmera.mobile.NetmeraRichPushObject
 
NetmeraRichPushObject.RichPushStatus - Class in com.netmera.mobile
Statuses of rich pushes according to functions to perform.
NetmeraRichPushObject.RichPushStatus() - Constructor for class com.netmera.mobile.NetmeraRichPushObject.RichPushStatus
 
NetmeraRuntimeException - Exception in com.netmera.mobile
NetmeraRuntimeException is the class of those exceptions that can be thrown during the normal operation of the Netmera.
NetmeraRuntimeException(String, Throwable) - Constructor for exception com.netmera.mobile.NetmeraRuntimeException
 
NetmeraRuntimeException(String) - Constructor for exception com.netmera.mobile.NetmeraRuntimeException
 
NetmeraRuntimeException(Throwable) - Constructor for exception com.netmera.mobile.NetmeraRuntimeException
 
NetmeraService - Class in com.netmera.mobile
NetmeraService is used to get NetmeraContent object by its search() and get() methods.
NetmeraService(String) - Constructor for class com.netmera.mobile.NetmeraService
Default constructor for the NetmeraService that sets objectName and other default parameters.
NetmeraService.SortBy - Class in com.netmera.mobile
 
NetmeraService.SortBy() - Constructor for class com.netmera.mobile.NetmeraService.SortBy
 
NetmeraService.SortOrder - Enum in com.netmera.mobile
Sort order definitions
NetmeraTwitterUtils - Class in com.netmera.mobile
NetmeraTwitterUtils object uses Twitter account for user operations.
NetmeraUser - Class in com.netmera.mobile
NetmeraUser object is for managing users of the application.
NetmeraUser() - Constructor for class com.netmera.mobile.NetmeraUser
Default constructor to create user object.
NetworkConnectivityListener - Class in com.netmera.mobile
A wrapper for a broadcast receiver that provides network connectivity state information, independent of network type (mobile, Wi-Fi, etc.).
NetworkConnectivityListener() - Constructor for class com.netmera.mobile.NetworkConnectivityListener
Create a new NetworkConnectivityListener.
NetworkConnectivityListener.State - Enum in com.netmera.mobile
 
NONE - Static variable in class com.netmera.mobile.Logging
Disables all log messages written in the SDK.
nullCheck(T) - Static method in class com.netmera.mobile.util.StringUtils
 

A B C D E F G H I J L M N O P R S T U V W