public enum MapsIcons extends Enum<MapsIcons> implements IronIconEnum
These instances can be used to create IronIcon components either by using
their create() method or by passing them to Icon's constructor.
| Modifier and Type | Class and Description |
|---|---|
static class |
MapsIcons.Icon
Server side component for
MapsIcons |
| Enum Constant and Description |
|---|
ADD_LOCATION
The maps:add-location icon.See example
|
BEENHERE
The maps:beenhere icon.See example
|
DIRECTIONS
The maps:directions icon.See example
|
DIRECTIONS_BIKE
The maps:directions-bike icon.See example
|
DIRECTIONS_BOAT
The maps:directions-boat icon.See example
|
DIRECTIONS_BUS
The maps:directions-bus icon.See example
|
DIRECTIONS_CAR
The maps:directions-car icon.See example
|
DIRECTIONS_RAILWAY
The maps:directions-railway icon.See example
|
DIRECTIONS_RUN
The maps:directions-run icon.See example
|
DIRECTIONS_SUBWAY
The maps:directions-subway icon.See example
|
DIRECTIONS_TRANSIT
The maps:directions-transit icon.See example
|
DIRECTIONS_WALK
The maps:directions-walk icon.See example
|
EDIT_LOCATION
The maps:edit-location icon.See example
|
EV_STATION
The maps:ev-station icon.See example
|
FLIGHT
The maps:flight icon.See example
|
HOTEL
The maps:hotel icon.See example
|
LAYERS
The maps:layers icon.See example
|
LAYERS_CLEAR
The maps:layers-clear icon.See example
|
LOCAL_ACTIVITY
The maps:local-activity icon.See example
|
LOCAL_AIRPORT
The maps:local-airport icon.See example
|
LOCAL_ATM
The maps:local-atm icon.See example
|
LOCAL_BAR
The maps:local-bar icon.See example
|
LOCAL_CAFE
The maps:local-cafe icon.See example
|
LOCAL_CAR_WASH
The maps:local-car-wash icon.See example
|
LOCAL_CONVENIENCE_STORE
The maps:local-convenience-store icon.See example
|
LOCAL_DINING
The maps:local-dining icon.See example
|
LOCAL_DRINK
The maps:local-drink icon.See example
|
LOCAL_FLORIST
The maps:local-florist icon.See example
|
LOCAL_GAS_STATION
The maps:local-gas-station icon.See example
|
LOCAL_GROCERY_STORE
The maps:local-grocery-store icon.See example
|
LOCAL_HOSPITAL
The maps:local-hospital icon.See example
|
LOCAL_HOTEL
The maps:local-hotel icon.See example
|
LOCAL_LAUNDRY_SERVICE
The maps:local-laundry-service icon.See example
|
LOCAL_LIBRARY
The maps:local-library icon.See example
|
LOCAL_MALL
The maps:local-mall icon.See example
|
LOCAL_MOVIES
The maps:local-movies icon.See example
|
LOCAL_OFFER
The maps:local-offer icon.See example
|
LOCAL_PARKING
The maps:local-parking icon.See example
|
LOCAL_PHARMACY
The maps:local-pharmacy icon.See example
|
LOCAL_PHONE
The maps:local-phone icon.See example
|
LOCAL_PIZZA
The maps:local-pizza icon.See example
|
LOCAL_PLAY
The maps:local-play icon.See example
|
LOCAL_POST_OFFICE
The maps:local-post-office icon.See example
|
LOCAL_PRINTSHOP
The maps:local-printshop icon.See example
|
LOCAL_SEE
The maps:local-see icon.See example
|
LOCAL_SHIPPING
The maps:local-shipping icon.See example
|
LOCAL_TAXI
The maps:local-taxi icon.See example
|
MAP
The maps:map icon.See example
|
MY_LOCATION
The maps:my-location icon.See example
|
NAVIGATION
The maps:navigation icon.See example
|
NEAR_ME
The maps:near-me icon.See example
|
PERSON_PIN
The maps:person-pin icon.See example
|
PERSON_PIN_CIRCLE
The maps:person-pin-circle icon.See example
|
PIN_DROP
The maps:pin-drop icon.See example
|
PLACE
The maps:place icon.See example
|
RATE_REVIEW
The maps:rate-review icon.See example
|
RESTAURANT
The maps:restaurant icon.See example
|
RESTAURANT_MENU
The maps:restaurant-menu icon.See example
|
SATELLITE
The maps:satellite icon.See example
|
STORE_MALL_DIRECTORY
The maps:store-mall-directory icon.See example
|
STREETVIEW
The maps:streetview icon.See example
|
SUBWAY
The maps:subway icon.See example
|
TERRAIN
The maps:terrain icon.See example
|
TRAFFIC
The maps:traffic icon.See example
|
TRAIN
The maps:train icon.See example
|
TRAM
The maps:tram icon.See example
|
TRANSFER_WITHIN_A_STATION
The maps:transfer-within-a-station icon.See example
|
ZOOM_OUT_MAP
The maps:zoom-out-map icon.See example
|
| Modifier and Type | Field and Description |
|---|---|
static String |
ICONSET
The Iconset name, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
MapsIcons.Icon |
create()
Create a new
IronIcon instance with the icon determined by the name. |
MapsIcons.Icon |
create(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.icon.IronIcon>> listener)
Create a new
IronIcon instance with the icon determined by the name and a listener for click events. |
String |
getIconName()
Return the icon name.
|
static MapsIcons |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapsIcons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapsIcons DIRECTIONS_BIKE
public static final MapsIcons DIRECTIONS_BOAT
public static final MapsIcons DIRECTIONS_BUS
public static final MapsIcons DIRECTIONS_CAR
public static final MapsIcons DIRECTIONS_RAILWAY
public static final MapsIcons DIRECTIONS_RUN
public static final MapsIcons DIRECTIONS_SUBWAY
public static final MapsIcons DIRECTIONS_TRANSIT
public static final MapsIcons DIRECTIONS_WALK
public static final MapsIcons LOCAL_ACTIVITY
public static final MapsIcons LOCAL_CAR_WASH
public static final MapsIcons LOCAL_CONVENIENCE_STORE
public static final MapsIcons LOCAL_GAS_STATION
public static final MapsIcons LOCAL_GROCERY_STORE
public static final MapsIcons LOCAL_HOSPITAL
public static final MapsIcons LOCAL_LAUNDRY_SERVICE
public static final MapsIcons LOCAL_PHARMACY
public static final MapsIcons LOCAL_POST_OFFICE
public static final MapsIcons LOCAL_PRINTSHOP
public static final MapsIcons LOCAL_SHIPPING
public static final MapsIcons PERSON_PIN_CIRCLE
public static final MapsIcons RESTAURANT_MENU
public static final MapsIcons STORE_MALL_DIRECTORY
public static final MapsIcons TRANSFER_WITHIN_A_STATION
public static final String ICONSET
"maps"."public static MapsIcons[] values()
for (MapsIcons c : MapsIcons.values()) System.out.println(c);
public static MapsIcons 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 nullpublic String getIconName()
getIconName in interface IronIconEnum"maps:name"..public MapsIcons.Icon create()
IronIcon instance with the icon determined by the name.create in interface IronIconEnumIronIcon componentpublic MapsIcons.Icon create(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.icon.IronIcon>> listener)
IronIcon instance with the icon determined by the name and a listener for click events.listener - the event listener for click eventsIronIcon componentCopyright © 2019 Flowing Code. All rights reserved.