public static enum Parcel.Serialization extends Enum<Parcel.Serialization>
| Enum Constant and Description |
|---|
BEAN
Read and write via the Bean standard, public matching getter and setters.
|
FIELD
Read and write fields directly.
|
VALUE
Read and write via value accessors and mutators.
|
| Modifier and Type | Method and Description |
|---|---|
static Parcel.Serialization |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parcel.Serialization[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parcel.Serialization FIELD
Read and write fields directly.
public static final Parcel.Serialization BEAN
Read and write via the Bean standard, public matching getter and setters.
public static final Parcel.Serialization VALUE
Read and write via value accessors and mutators.
public static Parcel.Serialization[] values()
for (Parcel.Serialization c : Parcel.Serialization.values()) System.out.println(c);
public static Parcel.Serialization valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All Rights Reserved.