Place.Field

public enum Place.Field implements Parcelable


Use the values of Place.Field to specify which place data types to return.

Summary

Constants

static final Parcelable.Creator<Place.Field>

Public methods

int
static Place.Field

Returns the enum constant of this type with the specified name.

static Place.Field[]

Returns an array containing the constants of this enum type, in the order they're declared.

void
writeToParcel(Parcel dest, int flags)

Inherited methods

From android.os.Parcelable
int

Enum Values

ADDRESS

Place.Field Place.Field.ADDRESS

CURRENT_SECONDARY_OPENING_HOURS

Place.Field Place.Field.CURRENT_SECONDARY_OPENING_HOURS

ICON_URL

Place.Field Place.Field.ICON_URL

LAT_LNG

Place.Field Place.Field.LAT_LNG

NAME

Place.Field Place.Field.NAME

PHONE_NUMBER

Place.Field Place.Field.PHONE_NUMBER

USER_RATINGS_TOTAL

Place.Field Place.Field.USER_RATINGS_TOTAL

WHEELCHAIR_ACCESSIBLE_ENTRANCE

Place.Field Place.Field.WHEELCHAIR_ACCESSIBLE_ENTRANCE

Constants

CREATOR

public static final Parcelable.Creator<Place.FieldCREATOR

Public methods

describeContents

public int describeContents()

valueOf

public static Place.Field valueOf(String name)

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Returns
Place.Field

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

public static Place.Field[] values()

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.

Returns
Place.Field[]

an array containing the constants of this enum type, in the order they're declared

writeToParcel

public void writeToParcel(Parcel dest, int flags)