Update GlobalConfig.java

This commit is contained in:
Gabriel Machado 2023-12-15 11:17:27 -04:00 committed by GitHub
parent cc44801acd
commit 9fd94f0b17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,18 +32,17 @@ public class GlobalConfig {
return (T) value;
}
//Need synchronized why SharedPreferences don't support aysnc write
public static synchronized <T extends Serializable> void set(Key<T> key, T value) {
if (value instanceof String) {
data.edit().putString(key.name, (String) value).apply();
} else if (value instanceof Integer) {
data.edit().putInt(key.name, (Integer) value).apply();
data.edit().putInt(key.name, (int) value).apply();
} else if (value instanceof Boolean) {
data.edit().putBoolean(key.name, (Boolean) value).apply();
data.edit().putBoolean(key.name, (boolean) value).apply();
} else if (value instanceof Long) {
data.edit().putLong(key.name, (Long) value).apply();
data.edit().putLong(key.name, (long) value).apply();
} else if (value instanceof Float) {
data.edit().putFloat(key.name, (Float) value).apply();
data.edit().putFloat(key.name, (float) value).apply();
} else {
throw new IllegalArgumentException("Invalid global config value instance");
}
@ -58,4 +57,4 @@ public class GlobalConfig {
this.defaultValue = defaultValue;
}
}
}
}