Java Code Examples for com.f2prateek.rx.preferences.RxSharedPreferences#getString()

The following examples show how to use com.f2prateek.rx.preferences.RxSharedPreferences#getString() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UserPreferences.java    From android with Apache License 2.0 5 votes vote down vote up
public UserPreferences(SharedPreferences preferences, Moshi moshi) {
  RxSharedPreferences rxSharedPreferences = RxSharedPreferences.create(preferences);
  JsonAdapter<Nation> nationAdapter = moshi.adapter(Nation.class);
  JsonAdapter<Club> clubAdapter = moshi.adapter(Club.class);
  JsonAdapter<League> leagueAdapter = moshi.adapter(League.class);
  nationPreference = new JsonPreference<>(rxSharedPreferences, nationAdapter, KEY_USER_NATION);
  clubPreference = new JsonPreference<>(rxSharedPreferences, clubAdapter, KEY_USER_CLUB);
  leaguePreference = new JsonPreference<>(rxSharedPreferences, leagueAdapter, KEY_USER_LEAGUE);
  coachPreference = rxSharedPreferences.getString(KEY_COACH_NAME);
  coinsPreference = rxSharedPreferences.getLong(KEY_COINS);
  gameSpeedPreference = rxSharedPreferences.getInteger(KEY_GAME_SPEED, DEFAULT_GAME_SPEED);
}
 
Example 2
Source File: JsonPreference.java    From android with Apache License 2.0 4 votes vote down vote up
JsonPreference(RxSharedPreferences rxSharedPreferences, JsonAdapter<T> adapter, String key) {
  this.adapter = adapter;
  this.rxPreference = rxSharedPreferences.getString(key);
}
 
Example 3
Source File: MethodInfo.java    From Favor with Apache License 2.0 4 votes vote down vote up
private void parseMethodAnnotations() {
        for (Annotation methodAnnotation : method.getAnnotations()) {
            Class<? extends Annotation> annotationType = methodAnnotation.annotationType();

            if (annotationType == Favor.class) {
                key = ((Favor) methodAnnotation).value();
                if (key.trim().length() == 0) {
                    key = getKeyFromMethod(method);
                }
                if (!TextUtils.isEmpty(prefix)) {
                    key = prefix + key;
                }
            } else if (annotationType == Default.class) {
                defaultValues = ((Default) methodAnnotation).value();
            } else if (annotationType == Commit.class) {
                commit = true;
            }
        }

        if (allFavor && key == null) {
            key = getKeyFromMethod(method);
            if (!TextUtils.isEmpty(prefix)) {
                key = prefix + key;
            }
        }

        if (responseType == ResponseType.OBSERVABLE) {
            checkDefaultValueType(responseObjectType, defaultValues);
            if (commit) {
                Log.w(TAG, "@Commit will be ignored for RxReference");
            }
            RxSharedPreferences rx = RxSharedPreferences.create(sp);
            if (responseObjectType == String.class) {
                rxPref = rx.getString(key, defaultValues[0]);
            } else if (responseObjectType == Integer.class) {
                rxPref = rx.getInteger(key, defaultValues[0] == null ? null : Integer.valueOf(defaultValues[0]));
            } else if (responseObjectType == Float.class) {
                rxPref = rx.getFloat(key, defaultValues[0] == null ? null : Float.valueOf(defaultValues[0]));
            } else if (responseObjectType == Long.class) {
                rxPref = rx.getLong(key, defaultValues[0] == null ? null : Long.valueOf(defaultValues[0]));
            } else if (responseObjectType == Boolean.class) {
                rxPref = rx.getBoolean(key, defaultValues[0] == null ? null : Boolean.valueOf(defaultValues[0]));
            } else if (Serializable.class.isAssignableFrom(Types.getRawType(responseObjectType))) {
                rxPref = rx.getObject(key, new SerializableAdapter<>());
            } else {
//                        Class returnTypeClass = Types.getRawType(returnType);
//                        if (returnTypeClass == Set.class) {
//                            rxPref = rx.getStringSet(key,new HashSet<String>(defaultValues))
//                        }
            }
        } else {
            if (FavorType == String.class) {
                taste = new Taste.StringTaste(sp, key, defaultValues);
            } else if (FavorType == boolean.class) {
                taste = new Taste.BoolTaste(sp, key, defaultValues);
            } else if (FavorType == int.class) {
                taste = new Taste.IntTaste(sp, key, defaultValues);
            } else if (FavorType == float.class) {
                taste = new Taste.FloatTaste(sp, key, defaultValues);
            } else if (FavorType == long.class) {
                taste = new Taste.LongTaste(sp, key, defaultValues);
            } else if (Types.getRawType(FavorType) == Set.class) {
                taste = new Taste.StringSetTaste(sp, key, defaultValues);
            } else if (Serializable.class.isAssignableFrom(Types.getRawType(FavorType))) {
                taste = new Taste.SerializableTaste(sp, key, defaultValues);
            } else {
                taste = new Taste.EmptyTaste(sp, key, defaultValues);
                throw methodError("Unsupported type " + FavorType.toString());
            }
        }
    }
 
Example 4
Source File: DebugDataModule.java    From u2020-mvp with Apache License 2.0 4 votes vote down vote up
@Provides
@ApplicationScope
@ApiEndpoint
Preference<String> provideEndpointPreference(RxSharedPreferences prefs) {
    return prefs.getString("debug_endpoint", ApiEndpoints.MOCK_MODE.url);
}
 
Example 5
Source File: DataModule.java    From u2020 with Apache License 2.0 4 votes vote down vote up
@Provides @Singleton @AccessToken
Preference<String> provideAccessToken(RxSharedPreferences prefs) {
  return prefs.getString("access-token");
}
 
Example 6
Source File: DebugDataModule.java    From u2020 with Apache License 2.0 4 votes vote down vote up
@Provides @Singleton @AccessToken Preference<String> provideAccessToken(RxSharedPreferences prefs,
    @ApiEndpoint Preference<String> endpoint) {
  // Return an endpoint-specific preference.
  return prefs.getString("access-token-" + endpoint.get());
}
 
Example 7
Source File: DebugDataModule.java    From u2020 with Apache License 2.0 4 votes vote down vote up
@Provides @Singleton @ApiEndpoint
Preference<String> provideEndpointPreference(RxSharedPreferences preferences) {
  return preferences.getString("debug_endpoint", ApiEndpoints.MOCK_MODE.url);
}