public class BundlerListCharSequence extends Object implements Bundler<List<CharSequence>>
Constructor and Description |
---|
BundlerListCharSequence() |
Modifier and Type | Method and Description |
---|---|
List<CharSequence> |
get(String key,
Bundle bundle)
Restore the value from the bundle.
|
void |
put(String key,
List<CharSequence> value,
Bundle bundle)
Save the given value inside of the bundle.
|
public void put(String key, List<CharSequence> value, Bundle bundle)
Bundler
put
in interface Bundler<List<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 List<CharSequence> get(String key, Bundle bundle)
Bundler
get
in interface Bundler<List<CharSequence>>
key
- The base key for this value. Each field of the value should have a separate key with this prefix.bundle
- The bundle in which the value is stored.