Enum Class FacilityType

java.lang.Object
java.lang.Enum<FacilityType>
com.here.sdk.search.FacilityType
All Implemented Interfaces:
Serializable, Comparable<FacilityType>, Constable

public enum FacilityType extends Enum<FacilityType>

Represents facility type available at the location. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

  • Enum Constant Details

    • HOTEL

      public static final FacilityType HOTEL

      A place to stay overnight.

    • RESTAURANT

      public static final FacilityType RESTAURANT

      A place to eat.

    • CAFE

      public static final FacilityType CAFE

      A place to have a coffee or other drinks.

    • MALL

      public static final FacilityType MALL

      A shopping mall.

    • SUPERMARKET

      public static final FacilityType SUPERMARKET

      A place to buy groceries.

    • SPORT

      public static final FacilityType SPORT

      Sport facilities: gym, field etc.

    • RECREATION_AREA

      public static final FacilityType RECREATION_AREA

      A place for recreation, like a park, beach etc.

    • NATURE

      public static final FacilityType NATURE

      Located in, or close to, a park, nature reserve etc.

    • MUSEUM

      public static final FacilityType MUSEUM

      A museum or other cultural facility.

    • BIKE_SHARING

      public static final FacilityType BIKE_SHARING

      A bike/e-bike/e-scooter sharing location.

    • BUS_STOP

      public static final FacilityType BUS_STOP

      A bus stop.

    • TAXI_STAND

      public static final FacilityType TAXI_STAND

      A taxi stand.

    • TRAM_STOP

      public static final FacilityType TRAM_STOP

      A tram stop.

    • METRO_STATION

      public static final FacilityType METRO_STATION

      A metro station.

    • TRAIN_STATION

      public static final FacilityType TRAIN_STATION

      A train station.

    • AIRPORT

      public static final FacilityType AIRPORT

      An airport.

    • PARKING_LOT

      public static final FacilityType PARKING_LOT

      A parking lot.

    • CARPOOL_PARKING

      public static final FacilityType CARPOOL_PARKING

      A parking lot for carpooling.

    • FUEL_STATION

      public static final FacilityType FUEL_STATION

      A fuel station.

    • WIFI

      public static final FacilityType WIFI

      Wifi or other type of internet available.

    • BUSINESS

      public static final FacilityType BUSINESS

      Business facilities.

    • EDUCATION

      public static final FacilityType EDUCATION

      Educational facilities.

    • FINANCE

      public static final FacilityType FINANCE

      Financial facilities.

    • HEALTH

      public static final FacilityType HEALTH

      Health facilities.

    • SERVICE

      public static final FacilityType SERVICE

      Service facilities.

    • STORE

      public static final FacilityType STORE

      A store.

  • Method Details

    • values

      public static FacilityType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FacilityType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null