com.google.gwt.maps.client.maptypes
Enum MapTypeStyleFeatureType

java.lang.Object
  extended by java.lang.Enum<MapTypeStyleFeatureType>
      extended by com.google.gwt.maps.client.maptypes.MapTypeStyleFeatureType
All Implemented Interfaces:
Serializable, Comparable<MapTypeStyleFeatureType>

public enum MapTypeStyleFeatureType
extends Enum<MapTypeStyleFeatureType>

Possible values for feature types. Specify these values as strings, i.e. 'administrative' or 'poi.park'. Stylers applied to a parent feature type automatically apply to all child feature types. Note however that parent features may include some additional features that are not included in one of their child feature types.

See MapTypeStyleFeatureType API Doc


Enum Constant Summary
ADMINISTRATIVE
          Apply the rule to administrative areas.
ADMINISTRATIVE__COUNTRY
          Apply the rule to countries.
ADMINISTRATIVE__LAND_PARCEL
          Apply the rule to land parcels.
ADMINISTRATIVE__LOCALITY
          Apply the rule to localities.
ADMINISTRATIVE__NEIGHBORHOOD
          Apply the rule to neighborhoods.
ADMINISTRATIVE__PROVINCE
          Apply the rule to provinces.
ALL
          Apply the rule to all selector types.
LANDSCAPE
          Apply the rule to landscapes.
LANDSCAPE__MAN_MADE
          Apply the rule to man made structures.
LANDSCAPE__NATURAL
          Apply the rule to natural features.
LANDSCAPE__NATURAL__LANDCOVER
          Apply the rule to landcover.
LANDSCAPE__NATURAL__TERRAIN
          Apply the rule to terrain.
POI
          Apply the rule to points of interest.
POI__ATTRACTION
          Apply the rule to attractions for tourists.
POI__BUSINESS
          Apply the rule to businesses.
POI__GOVERNMENT
          Apply the rule to government buildings.
POI__MEDICAL
          Apply the rule to emergency services (hospitals, pharmacies, police, doctors, etc).
POI__PARK
          Apply the rule to parks.
POI__PLACE_OF_WORSHIP
          Apply the rule to places of worship, such as church, temple, or mosque.
POI__SCHOOL
          Apply the rule to schools.
POI__SPORTS_COMPLEX
          Apply the rule to sports complexes.
ROAD
          Apply the rule to all roads
ROAD__ARTERIAL
          Apply the rule to arterial roads.
ROAD__HIGHWAY
          Apply the rule to highways.
ROAD__HIGHWAY__CONTROLLED_ACCESS
          Apply the rule to controlled-access highways.
ROAD__LOCAL
          Apply the rule to local roads.
TRANSIT
          Apply the rule to all transit stations and lines.
TRANSIT__LINE
          Apply the rule to transit lines.
TRANSIT__STATION
          Apply the rule to all transit stations.
TRANSIT__STATION__AIRPORT
          Apply the rule to airports.
TRANSIT__STATION__BUS
          Apply the rule to bus stops.
TRANSIT__STATION__RAIL
          Apply the rule to rail stations.
WATER
          Apply the rule to bodies of water.
 
Method Summary
static MapTypeStyleFeatureType fromValue(String type)
          convert a String value to enum Type
 String toString()
          return the enum Type as a String
 String value()
          return the enum value as a String
static MapTypeStyleFeatureType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MapTypeStyleFeatureType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ADMINISTRATIVE

public static final MapTypeStyleFeatureType ADMINISTRATIVE
Apply the rule to administrative areas.


ADMINISTRATIVE__COUNTRY

public static final MapTypeStyleFeatureType ADMINISTRATIVE__COUNTRY
Apply the rule to countries.


ADMINISTRATIVE__LAND_PARCEL

public static final MapTypeStyleFeatureType ADMINISTRATIVE__LAND_PARCEL
Apply the rule to land parcels.


ADMINISTRATIVE__LOCALITY

public static final MapTypeStyleFeatureType ADMINISTRATIVE__LOCALITY
Apply the rule to localities.


ADMINISTRATIVE__NEIGHBORHOOD

public static final MapTypeStyleFeatureType ADMINISTRATIVE__NEIGHBORHOOD
Apply the rule to neighborhoods.


ADMINISTRATIVE__PROVINCE

public static final MapTypeStyleFeatureType ADMINISTRATIVE__PROVINCE
Apply the rule to provinces.


ALL

public static final MapTypeStyleFeatureType ALL
Apply the rule to all selector types.


LANDSCAPE

public static final MapTypeStyleFeatureType LANDSCAPE
Apply the rule to landscapes.


LANDSCAPE__MAN_MADE

public static final MapTypeStyleFeatureType LANDSCAPE__MAN_MADE
Apply the rule to man made structures.


LANDSCAPE__NATURAL

public static final MapTypeStyleFeatureType LANDSCAPE__NATURAL
Apply the rule to natural features.


LANDSCAPE__NATURAL__LANDCOVER

public static final MapTypeStyleFeatureType LANDSCAPE__NATURAL__LANDCOVER
Apply the rule to landcover.


LANDSCAPE__NATURAL__TERRAIN

public static final MapTypeStyleFeatureType LANDSCAPE__NATURAL__TERRAIN
Apply the rule to terrain.


POI

public static final MapTypeStyleFeatureType POI
Apply the rule to points of interest.


POI__ATTRACTION

public static final MapTypeStyleFeatureType POI__ATTRACTION
Apply the rule to attractions for tourists.


POI__BUSINESS

public static final MapTypeStyleFeatureType POI__BUSINESS
Apply the rule to businesses.


POI__GOVERNMENT

public static final MapTypeStyleFeatureType POI__GOVERNMENT
Apply the rule to government buildings.


POI__MEDICAL

public static final MapTypeStyleFeatureType POI__MEDICAL
Apply the rule to emergency services (hospitals, pharmacies, police, doctors, etc).


POI__PARK

public static final MapTypeStyleFeatureType POI__PARK
Apply the rule to parks.


POI__PLACE_OF_WORSHIP

public static final MapTypeStyleFeatureType POI__PLACE_OF_WORSHIP
Apply the rule to places of worship, such as church, temple, or mosque.


POI__SCHOOL

public static final MapTypeStyleFeatureType POI__SCHOOL
Apply the rule to schools.


POI__SPORTS_COMPLEX

public static final MapTypeStyleFeatureType POI__SPORTS_COMPLEX
Apply the rule to sports complexes.


ROAD

public static final MapTypeStyleFeatureType ROAD
Apply the rule to all roads


ROAD__ARTERIAL

public static final MapTypeStyleFeatureType ROAD__ARTERIAL
Apply the rule to arterial roads.


ROAD__HIGHWAY

public static final MapTypeStyleFeatureType ROAD__HIGHWAY
Apply the rule to highways.


ROAD__HIGHWAY__CONTROLLED_ACCESS

public static final MapTypeStyleFeatureType ROAD__HIGHWAY__CONTROLLED_ACCESS
Apply the rule to controlled-access highways.


ROAD__LOCAL

public static final MapTypeStyleFeatureType ROAD__LOCAL
Apply the rule to local roads.


TRANSIT

public static final MapTypeStyleFeatureType TRANSIT
Apply the rule to all transit stations and lines.


TRANSIT__LINE

public static final MapTypeStyleFeatureType TRANSIT__LINE
Apply the rule to transit lines.


TRANSIT__STATION

public static final MapTypeStyleFeatureType TRANSIT__STATION
Apply the rule to all transit stations.


TRANSIT__STATION__AIRPORT

public static final MapTypeStyleFeatureType TRANSIT__STATION__AIRPORT
Apply the rule to airports.


TRANSIT__STATION__BUS

public static final MapTypeStyleFeatureType TRANSIT__STATION__BUS
Apply the rule to bus stops.


TRANSIT__STATION__RAIL

public static final MapTypeStyleFeatureType TRANSIT__STATION__RAIL
Apply the rule to rail stations.


WATER

public static final MapTypeStyleFeatureType WATER
Apply the rule to bodies of water.

Method Detail

values

public static MapTypeStyleFeatureType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (MapTypeStyleFeatureType c : MapTypeStyleFeatureType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static MapTypeStyleFeatureType 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.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()
return the enum value as a String

Returns:
String

fromValue

public static MapTypeStyleFeatureType fromValue(String type)
convert a String value to enum Type

Parameters:
type -
Returns:
TYPE

toString

public String toString()
return the enum Type as a String

Overrides:
toString in class Enum<MapTypeStyleFeatureType>


Copyright © 2011-2013 GWT Maps API V3. All Rights Reserved.