Skip navigation links
A B C D E G I J L M O P R S T V W 

A

AccessToken - Class in com.neovisionaries.android.oauth20
Access token.
AccessToken() - Constructor for class com.neovisionaries.android.oauth20.AccessToken
The default constructor.
ActivityHelper - Class in com.neovisionaries.android.app
 
addParameter(String, String) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Add an extra parameter to the authorization request.
addScopes(String...) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Add scopes, which are elements in the value of scope parameter (OPTIONAL parameter).
App - Class in com.neovisionaries.android.app
A class to manage global information of the application.
AuthorizationRequest - Class in com.neovisionaries.android.oauth20
OAuth 2.0 authorization request.
AuthorizationRequest() - Constructor for class com.neovisionaries.android.oauth20.AuthorizationRequest
The default constructor.

B

BaseActivity - Class in com.neovisionaries.android.app
Base class for Activities that honor the chain of finish() mechanism.
BaseActivity() - Constructor for class com.neovisionaries.android.app.BaseActivity
 
BaseApplication - Class in com.neovisionaries.android.app
Base class for android.app.Application subclasses.
BaseApplication() - Constructor for class com.neovisionaries.android.app.BaseApplication
 
BaseCursor - Class in com.neovisionaries.android.database
A cursor wrapper that provides some utility methods such as getXxxByName(String columnName).
BaseCursor(Cursor) - Constructor for class com.neovisionaries.android.database.BaseCursor
Constructor that just calls super(cursor).
BaseListActivity - Class in com.neovisionaries.android.app
Base class for Activities that honor the chain of finish() mechanism.
BaseListActivity() - Constructor for class com.neovisionaries.android.app.BaseListActivity
 
BaseOpenHelper - Class in com.neovisionaries.android.database
Database open helper with a read/write lock, which is useful when a database needs to be accessed by multiple threads.
BaseOpenHelper(Context, String, SQLiteDatabase.CursorFactory, int) - Constructor for class com.neovisionaries.android.database.BaseOpenHelper
Constructor.
BaseOpenHelper(String, SQLiteDatabase.CursorFactory, int) - Constructor for class com.neovisionaries.android.database.BaseOpenHelper
Constructor.
BaseOpenHelper(SQLiteDatabase.CursorFactory, int) - Constructor for class com.neovisionaries.android.database.BaseOpenHelper
Constructor.
BaseOpenHelper(int) - Constructor for class com.neovisionaries.android.database.BaseOpenHelper
Constructor.
BasePreferenceActivity - Class in com.neovisionaries.android.app
Base class for PreferenceActivity's that honor the chain of finish() mechanism.
BasePreferenceActivity() - Constructor for class com.neovisionaries.android.app.BasePreferenceActivity
 
BaseRootActivity - Class in com.neovisionaries.android.app
Base class for a root Activity of an application whose all the other Activities honor the chain of finish() mechanism.
BaseRootActivity() - Constructor for class com.neovisionaries.android.app.BaseRootActivity
 
BottomActivity - Class in com.neovisionaries.android.app
Base class for Activities that terminate the application when they receive a key down event of KEYCODE_BACK.
BottomActivity() - Constructor for class com.neovisionaries.android.app.BottomActivity
 
BottomListActivity - Class in com.neovisionaries.android.app
Base class for Activities that terminate the application when they receive a key down event of KEYCODE_BACK.
BottomListActivity() - Constructor for class com.neovisionaries.android.app.BottomListActivity
 

C

clamp(int, int, int) - Static method in class com.neovisionaries.android.util.Mathematics
Clamp the given value to the given range.
clamp(long, long, long) - Static method in class com.neovisionaries.android.util.Mathematics
Clamp the given value to the given range.
clamp(float, float, float) - Static method in class com.neovisionaries.android.util.Mathematics
Clamp the given value to the given range.
clamp(double, double, double) - Static method in class com.neovisionaries.android.util.Mathematics
Clamp the given value to the given range.
clear() - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().clear().commit() on the internal SharedPreferences instance.
clear() - Method in class com.neovisionaries.android.util.PropertiesWrapper
 
clear() - Method in class com.neovisionaries.android.util.TypedProperties
Clear all properties.
closeReadable(SQLiteDatabase) - Method in class com.neovisionaries.android.database.BaseOpenHelper
Close a database which has been opened by BaseOpenHelper.openReadable().
closeWritable(SQLiteDatabase) - Method in class com.neovisionaries.android.database.BaseOpenHelper
Close a database which has been opened by BaseOpenHelper.openWritable().
com.neovisionaries.android.app - package com.neovisionaries.android.app
 
com.neovisionaries.android.database - package com.neovisionaries.android.database
 
com.neovisionaries.android.oauth20 - package com.neovisionaries.android.oauth20
 
com.neovisionaries.android.util - package com.neovisionaries.android.util
 
contains(String) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to contains(key) on the internal SharedPreferences instance.
contains(String) - Method in class com.neovisionaries.android.util.PropertiesWrapper
 
contains(String) - Method in class com.neovisionaries.android.util.TypedProperties
Check if the property identified by the key exists.
contains(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to contains(key.name()).
copyStringToBufferByName(String, CharArrayBuffer) - Method in class com.neovisionaries.android.database.BaseCursor
Copy the value of the requested column to the given buffer.
CREATOR - Static variable in class com.neovisionaries.android.oauth20.AccessToken
CREATER required by Parcelable interface.
CREATOR - Static variable in class com.neovisionaries.android.oauth20.AuthorizationRequest
CREATER required by Parcelable interface.
CursorWaiter - Class in com.neovisionaries.android.database
Utility to wait for a cursor to retrieve data.
CursorWaiter(Cursor) - Constructor for class com.neovisionaries.android.database.CursorWaiter
Constructor with a cursor to wait for.

D

d(String, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of DEBUG level by calling Log.d(tag, message).
d(String, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of DEBUG level by calling Log.d(tag, message, cause).
d(Object, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of DEBUG level.
d(Object, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of DEBUG level.
d(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of DEBUG level.
d(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of DEBUG level.
describeContents() - Method in class com.neovisionaries.android.oauth20.AccessToken
 
describeContents() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
 
dformat(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
dformat(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
dispatch() - Method in class com.neovisionaries.android.app.BaseRootActivity
Launch another Activity.

E

e(String, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of ERROR level by calling Log.e(tag, message).
e(String, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of ERROR level by calling Log.e(tag, message, cause).
e(Object, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of ERROR level.
e(Object, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of ERROR level.
e(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of ERROR level.
e(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of ERROR level.
eformat(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
eformat(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
exit(Activity) - Static method in class com.neovisionaries.android.app.ActivityHelper
Mark this application as stopping and finish the given Activity.
exit() - Method in class com.neovisionaries.android.app.BaseActivity
Exit from this application.
exit() - Method in class com.neovisionaries.android.app.BaseListActivity
Exit from this application.
exit() - Method in class com.neovisionaries.android.app.BasePreferenceActivity
Exit from this application.
exitOnBackKeyDown(Activity, int, KeyEvent) - Static method in class com.neovisionaries.android.app.ActivityHelper
Exit this application by calling exit(true) if the given key code is KeyEvent.KEYCODE_BACK.

G

get(String, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getBoolean(key, defaultValue).
get(Enum<?>, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getBoolean(key, defaultValue).
get(String, float) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getFloat(key, defaultValue).
get(Enum<?>, float) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getFloat(key, defaultValue).
get(String, double) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getDouble(key, defaultValue).
get(Enum<?>, double) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getFloat(key, defaultValue).
get(String, int) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getInt(key, defaultValue).
get(Enum<?>, int) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getInt(key, defaultValue).
get(String, long) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getLong(key, defaultValue).
get(Enum<?>, long) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getLong(key, defaultValue).
get(String, Class<TEnum>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, enumClass, defaultValue).
get(String, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, (Class<TEnum>)defaultValue.getClass(), defaultValue).
get(Enum<?>, Class<TEnum>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, enumClass, defaultValue).
get(Enum<?>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, (Class<TEnum>)defaultValue.getClass(), defaultValue).
get(String, String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key, defaultValue).
get(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key).
get(Enum<?>, String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key, defaultValue).
get(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key).
getAccessibilityManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get AccessibilityManager.
getAccessToken() - Method in class com.neovisionaries.android.oauth20.AccessToken
Get the access token (= the value of access_token (REQUIRED parameter)).
getAccountManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get AccountManager.
getActivityManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get ActivityManager.
getAlarmManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get AlarmManager.
getApplicationLabel() - Method in class com.neovisionaries.android.app.App
Get the application label of this application.
getAudioManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get AudioManager.
getBlobByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a byte array.
getBoolean(int) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a boolean.
getBoolean(String, boolean) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to getBoolean(key, defaultValue) on the internal SharedPreferences instance.
getBoolean(String, boolean) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
getBoolean(String, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as boolean.
getBoolean(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getBoolean(key, false).
getBoolean(Enum<?>, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getBoolean(key.name(), defaultValue).
getBoolean(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getBoolean(key.name()).
getBooleanByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a boolean.
getClientId() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the client ID (= the value of client_id parameter (REQUIRED parameter)).
getClipboardManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get ClipboardManager.
getContext() - Method in class com.neovisionaries.android.app.App
Get the application context.
getCountry() - Method in class com.neovisionaries.android.app.App
Get the current country.
getDefaultPreferences() - Method in class com.neovisionaries.android.app.App
Get the Preferences instance that wraps the default shared preferences.
getDevicePolicyManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get DevicePolicyManager.
getDouble(String, double) - Method in class com.neovisionaries.android.util.Preferences
 
getDouble(String, double) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
getDouble(String, double) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as double.
getDouble(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getDouble(key, 0.0F).
getDouble(Enum<?>, double) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getDouble(key.name(), defaultValue).
getDouble(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getDouble(key.name()).
getDoubleByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a double.
getDownloadManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get DropBoxManager.
getEndpoint() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the authorization endpoint.
getEnum(String, Class<TEnum>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as Enum.
getEnum(String, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, (Class<TEnum>)defaultValue.getClass(), defaultValue).
getEnum(String, Class<TEnum>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, enumClass, null).
getEnum(Enum<?>, Class<TEnum>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key.name(), enumClass, defaultValue).
getEnum(Enum<?>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key, (Class<TEnum>)defaultValue.getClass(), defaultValue).
getEnum(Enum<?>, Class<TEnum>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getEnum(key.name(), enumClass).
getExpiresIn() - Method in class com.neovisionaries.android.oauth20.AccessToken
Get the lifetime of the access token in seconds (= the value of expires_in parameter (RECOMMENDED parameter)).
getExtraParameters() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get extra parameters added to the authorization request.
getFloat(String, float) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to getFloat(key, defaultValue) on the internal SharedPreferences instance.
getFloat(String, float) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
getFloat(String, float) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as float.
getFloat(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getFloat(key, 0.0F).
getFloat(Enum<?>, float) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getFloat(key.name(), defaultValue).
getFloat(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getFloat(key.name()).
getFloatByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a float.
getInputMethodManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get InputMethodManager.
getInstance() - Static method in class com.neovisionaries.android.app.App
Get the singleton instance of this class.
getInt(String, int) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to getInt(key, defaultValue) on the internal SharedPreferences instance.
getInt(String, int) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
getInt(String, int) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as int.
getInt(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getInt(key, 0).
getInt(Enum<?>, int) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getInt(key.name(), defaultValue).
getInt(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getInt(key.name()).
getIntByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as an int.
getKeyguardManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get KeyguardManager.
getLanguage() - Method in class com.neovisionaries.android.app.App
Get the current language.
getLayoutInflater() - Static method in class com.neovisionaries.android.util.SystemServices
Get LayoutInflater.
getLocale() - Method in class com.neovisionaries.android.app.App
Get the current locale.
getLocationManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get LocationManager.
getLock() - Method in class com.neovisionaries.android.database.BaseOpenHelper
Get the internal read-write lock instance.
getLong(String, long) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to getLong(key, defaultValue) on the internal SharedPreferences instance.
getLong(String, long) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
getLong(String, long) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as long.
getLong(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getLong(key, 0L).
getLong(Enum<?>, long) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getLong(key.name(), defaultValue).
getLong(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getLong(key.name()).
getLongByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a long.
getNotificationManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get NotificationManager.
getPowerManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get PowerManager.
getPreferences() - Method in class com.neovisionaries.android.app.App
Get the Preferences instance that is supposed to be used globally for this application.
getRedirectUri() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the redirect URI (= the value of redirect_uri parameter (OPTIONAL parameter)).
getRefreshToken() - Method in class com.neovisionaries.android.oauth20.AccessToken
Get the refresh token (= the value of refresh_token parameter (OPTIONAL parameter)).
getResponseType() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the response type (= the value of response_type parameter (REQUIRED parameter)).
getScope() - Method in class com.neovisionaries.android.oauth20.AccessToken
Get the space-delimited scope list (= the value of scope parameter (OPTIONAL parameter)).
getScopeDelimiter() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the delimiter for scopes.
getScopeSet() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the scopes, which are elements in the value of scope parameter (OPTIONAL parameter).
getSearchManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get SearchManager.
getSensorManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get SensorManager.
getShortByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a short.
getState() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Get the state (= the value of state parameter (RECOMMENDED parameter)).
getString(String, String) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to getString(key, defaultValue) on the internal SharedPreferences instance.
getString(String, String) - Method in class com.neovisionaries.android.util.PropertiesWrapper
 
getString(String, String) - Method in class com.neovisionaries.android.util.TypedProperties
Get the value of the property identified by the key as String.
getString(String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key, null).
getString(Enum<?>, String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key.name(), defaultValue).
getString(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to getString(key.name()).
getStringByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Get the value of the requested column as a String.
getSystemService(String) - Static method in class com.neovisionaries.android.util.SystemServices
Get a system service by name.
getTelephonyManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get TelephonyManager.
getTokenType() - Method in class com.neovisionaries.android.oauth20.AccessToken
Get the token type (= the value of token_type (REQUIRED parameter)).
getUiModeManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get UiModeManager.
getVersionName() - Method in class com.neovisionaries.android.app.App
Get the version name of this application.
getVibrator() - Static method in class com.neovisionaries.android.util.SystemServices
Get Vibrator.
getWallpaperService() - Static method in class com.neovisionaries.android.util.SystemServices
Get WallpaperService.
getWifiManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get WifiManager.
getWindowManager() - Static method in class com.neovisionaries.android.util.SystemServices
Get WindowManager.

I

i(String, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of INFO level by calling Log.i(tag, message).
i(String, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of INFO level by calling Log.i(tag, message, cause).
i(Object, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of INFO level.
i(Object, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of INFO level.
i(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of INFO level.
i(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of INFO level.
iformat(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
iformat(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
init(Context) - Static method in class com.neovisionaries.android.app.App
Initialize this class.
isNullByName(String) - Method in class com.neovisionaries.android.database.BaseCursor
Check if the value of the requested column is null.
isRestarting() - Method in class com.neovisionaries.android.app.App
Check whether this application is in the process of restart.
isStopping() - Method in class com.neovisionaries.android.app.App
Check whether this application is in the process of termination.
isStopping() - Method in class com.neovisionaries.android.app.BaseActivity
Check if this application is stopping or not.
isStopping() - Method in class com.neovisionaries.android.app.BaseListActivity
Check if this application is stopping or not.
isStopping() - Method in class com.neovisionaries.android.app.BasePreferenceActivity
Check if this application is stopping or not.

J

join() - Method in class com.neovisionaries.android.database.BaseCursor
Wait until this cursor finishes fetching data from the database.
join() - Method in class com.neovisionaries.android.database.CursorWaiter
Wait for the cursor to retrieve data.

L

L - Class in com.neovisionaries.android.util
Logging utility (Simple wrapper over android.util.Log).
load(AuthorizationRequest, OAuth20ViewListener) - Method in class com.neovisionaries.android.oauth20.OAuth20View
Access to OAuth 2.0 authorization endpoint.
load(String) - Static method in class com.neovisionaries.android.util.PropertiesLoader
Load properties from a file.
load(String, PropertiesLoader.FileLocation[]) - Static method in class com.neovisionaries.android.util.PropertiesLoader
Load properties from a file.
load(String, PropertiesLoader.FileLocation) - Static method in class com.neovisionaries.android.util.PropertiesLoader
Load properties from a file.

M

Mathematics - Class in com.neovisionaries.android.util
Math utility.

O

OAuth20Error - Enum in com.neovisionaries.android.oauth20
Values for error from OAuth 2.0 endpoints.
OAuth20View - Class in com.neovisionaries.android.oauth20
A WebView subclass for OAuth 2.0 authorization endpoint.
OAuth20View(Context, AttributeSet, int) - Constructor for class com.neovisionaries.android.oauth20.OAuth20View
A constructor that calls super(context, attrs, defStyle).
OAuth20View(Context, AttributeSet) - Constructor for class com.neovisionaries.android.oauth20.OAuth20View
A constructor that calls super(context, attrs).
OAuth20View(Context) - Constructor for class com.neovisionaries.android.oauth20.OAuth20View
A constructor that calls super(context).
OAuth20ViewListener - Interface in com.neovisionaries.android.oauth20
Listener associated with OAuth20View.
onChanged() - Method in class com.neovisionaries.android.database.CursorWaiter
 
onCodeIssued(OAuth20View, AuthorizationRequest, String, String) - Method in interface com.neovisionaries.android.oauth20.OAuth20ViewListener
Called when an authorization code was issued by the authorization server.
onCreate() - Method in class com.neovisionaries.android.app.BaseApplication
Called after this instance was created.
onCreate(Bundle) - Method in class com.neovisionaries.android.app.BaseRootActivity
Called when this Activity gets started.
onDestroy() - Method in class com.neovisionaries.android.app.BaseRootActivity
Called when this Activity gets stopped.
onError(OAuth20View, AuthorizationRequest, OAuth20Error, String, String, String) - Method in interface com.neovisionaries.android.oauth20.OAuth20ViewListener
Called when the authorization server notified this client an error.
onKeyDown(int, KeyEvent) - Method in class com.neovisionaries.android.app.BottomActivity
Call this.exit() if the give key code is KEYCODE_BACK.
onKeyDown(int, KeyEvent) - Method in class com.neovisionaries.android.app.BottomListActivity
Call this.exit() if the give key code is KEYCODE_BACK.
onResume() - Method in class com.neovisionaries.android.app.BaseActivity
Called when this Activity gets resumed.
onResume() - Method in class com.neovisionaries.android.app.BaseListActivity
Called when this Activity gets resumed.
onResume() - Method in class com.neovisionaries.android.app.BasePreferenceActivity
Called when this Activity gets resumed.
onResume() - Method in class com.neovisionaries.android.app.BaseRootActivity
Called when this Activity gets resumed.
onTerminate() - Method in class com.neovisionaries.android.app.BaseApplication
Called before this instance is discarded.
onTokenIssued(OAuth20View, AuthorizationRequest, AccessToken, String) - Method in interface com.neovisionaries.android.oauth20.OAuth20ViewListener
Called when an access token was issued by the authorization server.
openReadable() - Method in class com.neovisionaries.android.database.BaseOpenHelper
Open the database in read mode.
openWritable() - Method in class com.neovisionaries.android.database.BaseOpenHelper
Open the database in write mode.

P

ParcelUtils - Class in com.neovisionaries.android.util
Utilities for Parcel.
Preferences - Class in com.neovisionaries.android.util
Wrapper over SharedPreferences.
Preferences(Context, String) - Constructor for class com.neovisionaries.android.util.Preferences
Equivalent to this(context, name, Context.MODE_PRIVATE).
Preferences(Context, String, int) - Constructor for class com.neovisionaries.android.util.Preferences
Constructor with parameters to get SharedPreferences.
Preferences(SharedPreferences) - Constructor for class com.neovisionaries.android.util.Preferences
Constructor with a wrapped SharedPreferences.
PropertiesLoader - Class in com.neovisionaries.android.util
Properties loader.
PropertiesLoader() - Constructor for class com.neovisionaries.android.util.PropertiesLoader
 
PropertiesLoader.FileLocation - Enum in com.neovisionaries.android.util
File location types.
PropertiesWrapper - Class in com.neovisionaries.android.util
Properties wrapper.
PropertiesWrapper(Properties) - Constructor for class com.neovisionaries.android.util.PropertiesWrapper
 

R

readBoolean(Parcel) - Static method in class com.neovisionaries.android.util.ParcelUtils
Read a boolean value from the Parcel.
readChar(Parcel) - Static method in class com.neovisionaries.android.util.ParcelUtils
Read a char value from the Parcel.
readSerializableWithPresenceFlag(Parcel) - Static method in class com.neovisionaries.android.util.ParcelUtils
Read a Serializable object from the Parcel.
readStringWithPresenceFlag(Parcel) - Static method in class com.neovisionaries.android.util.ParcelUtils
Read a String object from the Parcel.
remove(String) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().remove(key).commit() on the internal SharedPreferences instance.
remove(String) - Method in class com.neovisionaries.android.util.PropertiesWrapper
 
remove(String) - Method in class com.neovisionaries.android.util.TypedProperties
Remove the property identified by the key.
remove(Enum<?>) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to remove(key.name()).
removeParameter(String) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Remove an extra parameter from the authorization request.
removeScopes(String...) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Remove scopes, which are elements in the value of scope parameter (OPTIONAL parameter).
ResponseType - Enum in com.neovisionaries.android.oauth20
Values for response_type.
restart(Activity) - Static method in class com.neovisionaries.android.app.ActivityHelper
Mark this application as restarting and finish the given Activity.
restart() - Method in class com.neovisionaries.android.app.BaseActivity
Restart this application.
restart() - Method in class com.neovisionaries.android.app.BaseListActivity
Restart this application.
restart() - Method in class com.neovisionaries.android.app.BasePreferenceActivity
Restart this application.

S

set(String, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setBoolean(key, value).
set(Enum<?>, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setBoolean(key, value).
set(String, float) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setFloat(key, value).
set(Enum<?>, float) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setFloat(key, value).
set(String, double) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setDouble(key, value).
set(Enum<?>, double) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setDouble(key, value).
set(String, int) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setInt(key, value).
set(Enum<?>, int) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setInt(key, value).
set(String, long) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setLong(key, value).
set(Enum<?>, long) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setLong(key, value).
set(String, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setEnum(key, value).
set(Enum<?>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setEnum(key, value).
set(String, String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setString(key, value).
set(Enum<?>, String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setString(key, value).
setAccessToken(String) - Method in class com.neovisionaries.android.oauth20.AccessToken
Set the access token (= the value of access_token (REQUIRED parameter)).
setBoolean(String, boolean) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().putBoolean(key, value).commit() on the internal SharedPreferences instance.
setBoolean(String, boolean) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
setBoolean(String, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Set the value to the property identified by the key.
setBoolean(Enum<?>, boolean) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setBoolean(key.name(), value).
setClientId(String) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the client ID (= the value of client_id parameter (REQUIRED parameter)).
setDouble(String, double) - Method in class com.neovisionaries.android.util.Preferences
 
setDouble(String, double) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
setDouble(String, double) - Method in class com.neovisionaries.android.util.TypedProperties
Set the value to the property identified by the key.
setDouble(Enum<?>, double) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setDouble(key.name(), value).
setEndpoint(URL) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the authorization endpoint.
setEndpoint(String) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the authorization endpoint.
setEnum(String, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setString(key, (value == null) ? null : value.name()).
setEnum(Enum<?>, TEnum) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setEnum(key.name(), value).
setExpiresIn(int) - Method in class com.neovisionaries.android.oauth20.AccessToken
Set the lifetime of the access token in seconds (= the value of expires_in parameter (RECOMMENDED parameter)).
setExtraParameters(Map<String, String>) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set extra parameters added to the authorization request.
setFloat(String, float) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().putFloat(key, value).commit() on the internal SharedPreferences instance.
setFloat(String, float) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
setFloat(String, float) - Method in class com.neovisionaries.android.util.TypedProperties
Set the value to the property identified by the key.
setFloat(Enum<?>, float) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setFloat(key.name(), value).
setInt(String, int) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().putInt(key, value).commit() on the internal SharedPreferences instance.
setInt(String, int) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
setInt(String, int) - Method in class com.neovisionaries.android.util.TypedProperties
Set the value to the property identified by the key.
setInt(Enum<?>, int) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setInt(key.name(), value).
setLong(String, long) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().putLong(key, value).commit() on the internal SharedPreferences instance.
setLong(String, long) - Method in class com.neovisionaries.android.util.StringBasedTypedProperties
 
setLong(String, long) - Method in class com.neovisionaries.android.util.TypedProperties
Set the value to the property identified by the key.
setLong(Enum<?>, long) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setLong(key.name(), value).
setRedirectUri(URL) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the redirect URI (= the value of redirect_uri parameter (OPTIONAL parameter)).
setRedirectUri(String) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the redirect URI (= the value of redirect_uri parameter (OPTIONAL parameter)).
setRefreshToken(String) - Method in class com.neovisionaries.android.oauth20.AccessToken
Set the refresh token (= the value of refresh_token parameter (OPTIONAL parameter)).
setResponseType(ResponseType) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the response type (= the value of response_type parameter (REQUIRED parameter)).
setRestarting(boolean) - Method in class com.neovisionaries.android.app.App
Set the restart state of this application.
setScope(String) - Method in class com.neovisionaries.android.oauth20.AccessToken
Set the space-delimited scope list (= the value of scope parameter (OPTIONAL parameter)).
setScopeDelimiter(char) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the delimiter for scopes.
setScopeSet(Set<String>) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the scopes, which are elements in the value of scope parameter (OPTIONAL parameter).
setState(String) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Set the state (= the value of state parameter (RECOMMENDED parameter)).
setStopping(boolean) - Method in class com.neovisionaries.android.app.App
Set the termination state of this application.
setString(String, String) - Method in class com.neovisionaries.android.util.Preferences
Equivalent to edit().putString(key, value).commit() on the internal SharedPreferences instance.
setString(String, String) - Method in class com.neovisionaries.android.util.PropertiesWrapper
 
setString(String, String) - Method in class com.neovisionaries.android.util.TypedProperties
Set the value to the property identified by the key.
setString(Enum<?>, String) - Method in class com.neovisionaries.android.util.TypedProperties
Equivalent to setString(key.name(), value).
setTokenType(String) - Method in class com.neovisionaries.android.oauth20.AccessToken
Set the token type (= the value of token_type (REQUIRED parameter)).
StringBasedTypedProperties - Class in com.neovisionaries.android.util
This is an abstract class that provides getters and setters for key-value pairs.
StringBasedTypedProperties() - Constructor for class com.neovisionaries.android.util.StringBasedTypedProperties
 
SystemServices - Class in com.neovisionaries.android.util
System service utility.

T

toURL() - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
Convert this authorization request to a URL.
TypedProperties - Class in com.neovisionaries.android.util
This is an abstract class that provides getters and setters for key-value pairs.
TypedProperties() - Constructor for class com.neovisionaries.android.util.TypedProperties
 

V

v(String, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of VERBOSE level by calling Log.v(tag, message).
v(String, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of VERBOSE level by calling Log.v(tag, message, cause).
v(Object, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of VERBOSE level.
v(Object, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of VERBOSE level.
v(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of VERBOSE level.
v(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of VERBOSE level.
valueOf(String) - Static method in enum com.neovisionaries.android.oauth20.OAuth20Error
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.neovisionaries.android.oauth20.ResponseType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.neovisionaries.android.util.PropertiesLoader.FileLocation
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.neovisionaries.android.oauth20.OAuth20Error
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.neovisionaries.android.oauth20.ResponseType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.neovisionaries.android.util.PropertiesLoader.FileLocation
Returns an array containing the constants of this enum type, in the order they are declared.
vformat(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
vformat(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L

W

w(String, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of WARN level by calling Log.w(tag, message).
w(String, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of WARN level by calling Log.w(tag, message, cause).
w(Object, String) - Static method in class com.neovisionaries.android.util.L
Emit a log message of WARN level.
w(Object, String, Throwable) - Static method in class com.neovisionaries.android.util.L
Emit a log message of WARN level.
w(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of WARN level.
w(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
Emit a log message of WARN level.
wformat(Object, String, Object...) - Static method in class com.neovisionaries.android.util.L
wformat(Object, Throwable, String, Object...) - Static method in class com.neovisionaries.android.util.L
writeBoolean(Parcel, boolean) - Static method in class com.neovisionaries.android.util.ParcelUtils
Write a boolean value into the Parcel.
writeChar(Parcel, char) - Static method in class com.neovisionaries.android.util.ParcelUtils
Write a char value into the Parcel.
writeSerializableWithPresenceFlag(Parcel, Serializable) - Static method in class com.neovisionaries.android.util.ParcelUtils
Write a Serializable object with a presence flag into the Parcel.
writeStringWithPresenceFlag(Parcel, String) - Static method in class com.neovisionaries.android.util.ParcelUtils
Write a String object with a presence flag into the Parcel.
writeToParcel(Parcel, int) - Method in class com.neovisionaries.android.oauth20.AccessToken
 
writeToParcel(Parcel, int) - Method in class com.neovisionaries.android.oauth20.AuthorizationRequest
 
A B C D E G I J L M O P R S T V W 
Skip navigation links

Copyright © 2016. All rights reserved.