| Constructor and Description |
|---|
BundlerListCharSequence() |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.CharSequence> |
get(java.lang.String key,
Bundle bundle)
Restore the value from the bundle.
|
void |
put(java.lang.String key,
java.util.List<java.lang.CharSequence> value,
Bundle bundle)
Save the given value inside of the bundle.
|
public void put(java.lang.String key,
java.util.List<java.lang.CharSequence> value,
Bundle bundle)
Bundlerput in interface Bundler<java.util.List<java.lang.CharSequence>>key - The base key for this value. Each field of the value should have a separate key with this prefix.value - The object which should be saved in the bundle.bundle - The bundle where the value should be stored.public java.util.List<java.lang.CharSequence> get(java.lang.String key,
Bundle bundle)
Bundler