public enum HardwareIcons extends Enum<HardwareIcons> 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 |
HardwareIcons.Icon
Server side component for
HardwareIcons |
| Enum Constant and Description |
|---|
CAST
The hardware:cast icon.See example
|
CAST_CONNECTED
The hardware:cast-connected icon.See example
|
COMPUTER
The hardware:computer icon.See example
|
DESKTOP_MAC
The hardware:desktop-mac icon.See example
|
DESKTOP_WINDOWS
The hardware:desktop-windows icon.See example
|
DEVELOPER_BOARD
The hardware:developer-board icon.See example
|
DEVICE_HUB
The hardware:device-hub icon.See example
|
DEVICES_OTHER
The hardware:devices-other icon.See example
|
DOCK
The hardware:dock icon.See example
|
GAMEPAD
The hardware:gamepad icon.See example
|
HEADSET
The hardware:headset icon.See example
|
HEADSET_MIC
The hardware:headset-mic icon.See example
|
KEYBOARD
The hardware:keyboard icon.See example
|
KEYBOARD_ARROW_DOWN
The hardware:keyboard-arrow-down icon.See example
|
KEYBOARD_ARROW_LEFT
The hardware:keyboard-arrow-left icon.See example
|
KEYBOARD_ARROW_RIGHT
The hardware:keyboard-arrow-right icon.See example
|
KEYBOARD_ARROW_UP
The hardware:keyboard-arrow-up icon.See example
|
KEYBOARD_BACKSPACE
The hardware:keyboard-backspace icon.See example
|
KEYBOARD_CAPSLOCK
The hardware:keyboard-capslock icon.See example
|
KEYBOARD_HIDE
The hardware:keyboard-hide icon.See example
|
KEYBOARD_RETURN
The hardware:keyboard-return icon.See example
|
KEYBOARD_TAB
The hardware:keyboard-tab icon.See example
|
KEYBOARD_VOICE
The hardware:keyboard-voice icon.See example
|
LAPTOP
The hardware:laptop icon.See example
|
LAPTOP_CHROMEBOOK
The hardware:laptop-chromebook icon.See example
|
LAPTOP_MAC
The hardware:laptop-mac icon.See example
|
LAPTOP_WINDOWS
The hardware:laptop-windows icon.See example
|
MEMORY
The hardware:memory icon.See example
|
MOUSE
The hardware:mouse icon.See example
|
PHONE_ANDROID
The hardware:phone-android icon.See example
|
PHONE_IPHONE
The hardware:phone-iphone icon.See example
|
PHONELINK
The hardware:phonelink icon.See example
|
PHONELINK_OFF
The hardware:phonelink-off icon.See example
|
POWER_INPUT
The hardware:power-input icon.See example
|
ROUTER
The hardware:router icon.See example
|
SCANNER
The hardware:scanner icon.See example
|
SECURITY
The hardware:security icon.See example
|
SIM_CARD
The hardware:sim-card icon.See example
|
SMARTPHONE
The hardware:smartphone icon.See example
|
SPEAKER
The hardware:speaker icon.See example
|
SPEAKER_GROUP
The hardware:speaker-group icon.See example
|
TABLET
The hardware:tablet icon.See example
|
TABLET_ANDROID
The hardware:tablet-android icon.See example
|
TABLET_MAC
The hardware:tablet-mac icon.See example
|
TOYS
The hardware:toys icon.See example
|
TV
The hardware:tv icon.See example
|
VIDEOGAME_ASSET
The hardware:videogame-asset icon.See example
|
WATCH
The hardware:watch icon.See example
|
| Modifier and Type | Field and Description |
|---|---|
static String |
ICONSET
The Iconset name, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
HardwareIcons.Icon |
create()
Create a new
IronIcon instance with the icon determined by the name. |
HardwareIcons.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 HardwareIcons |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HardwareIcons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HardwareIcons CAST
public static final HardwareIcons CAST_CONNECTED
public static final HardwareIcons COMPUTER
public static final HardwareIcons DESKTOP_MAC
public static final HardwareIcons DESKTOP_WINDOWS
public static final HardwareIcons DEVELOPER_BOARD
public static final HardwareIcons DEVICE_HUB
public static final HardwareIcons DEVICES_OTHER
public static final HardwareIcons DOCK
public static final HardwareIcons GAMEPAD
public static final HardwareIcons HEADSET
public static final HardwareIcons HEADSET_MIC
public static final HardwareIcons KEYBOARD
public static final HardwareIcons KEYBOARD_ARROW_DOWN
public static final HardwareIcons KEYBOARD_ARROW_LEFT
public static final HardwareIcons KEYBOARD_ARROW_RIGHT
public static final HardwareIcons KEYBOARD_ARROW_UP
public static final HardwareIcons KEYBOARD_BACKSPACE
public static final HardwareIcons KEYBOARD_CAPSLOCK
public static final HardwareIcons KEYBOARD_HIDE
public static final HardwareIcons KEYBOARD_RETURN
public static final HardwareIcons KEYBOARD_TAB
public static final HardwareIcons KEYBOARD_VOICE
public static final HardwareIcons LAPTOP
public static final HardwareIcons LAPTOP_CHROMEBOOK
public static final HardwareIcons LAPTOP_MAC
public static final HardwareIcons LAPTOP_WINDOWS
public static final HardwareIcons MEMORY
public static final HardwareIcons MOUSE
public static final HardwareIcons PHONE_ANDROID
public static final HardwareIcons PHONE_IPHONE
public static final HardwareIcons PHONELINK
public static final HardwareIcons PHONELINK_OFF
public static final HardwareIcons POWER_INPUT
public static final HardwareIcons ROUTER
public static final HardwareIcons SCANNER
public static final HardwareIcons SECURITY
public static final HardwareIcons SIM_CARD
public static final HardwareIcons SMARTPHONE
public static final HardwareIcons SPEAKER
public static final HardwareIcons SPEAKER_GROUP
public static final HardwareIcons TABLET
public static final HardwareIcons TABLET_ANDROID
public static final HardwareIcons TABLET_MAC
public static final HardwareIcons TOYS
public static final HardwareIcons TV
public static final HardwareIcons VIDEOGAME_ASSET
public static final HardwareIcons WATCH
public static final String ICONSET
"hardware"."public static HardwareIcons[] values()
for (HardwareIcons c : HardwareIcons.values()) System.out.println(c);
public static HardwareIcons 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"hardware:name"..public HardwareIcons.Icon create()
IronIcon instance with the icon determined by the name.create in interface IronIconEnumIronIcon componentpublic HardwareIcons.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.