public enum SocialIcons extends Enum<SocialIcons> 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 |
SocialIcons.Icon
Server side component for
SocialIcons |
| Enum Constant and Description |
|---|
CAKE
The social:cake icon.See example
|
DOMAIN
The social:domain icon.See example
|
GROUP
The social:group icon.See example
|
GROUP_ADD
The social:group-add icon.See example
|
LOCATION_CITY
The social:location-city icon.See example
|
MOOD
The social:mood icon.See example
|
MOOD_BAD
The social:mood-bad icon.See example
|
NOTIFICATIONS
The social:notifications icon.See example
|
NOTIFICATIONS_ACTIVE
The social:notifications-active icon.See example
|
NOTIFICATIONS_NONE
The social:notifications-none icon.See example
|
NOTIFICATIONS_OFF
The social:notifications-off icon.See example
|
NOTIFICATIONS_PAUSED
The social:notifications-paused icon.See example
|
PAGES
The social:pages icon.See example
|
PARTY_MODE
The social:party-mode icon.See example
|
PEOPLE
The social:people icon.See example
|
PEOPLE_OUTLINE
The social:people-outline icon.See example
|
PERSON
The social:person icon.See example
|
PERSON_ADD
The social:person-add icon.See example
|
PERSON_OUTLINE
The social:person-outline icon.See example
|
PLUS_ONE
The social:plus-one icon.See example
|
POLL
The social:poll icon.See example
|
PUBLIC
The social:public icon.See example
|
SCHOOL
The social:school icon.See example
|
SENTIMENT_DISSATISFIED
The social:sentiment-dissatisfied icon.See example
|
SENTIMENT_NEUTRAL
The social:sentiment-neutral icon.See example
|
SENTIMENT_SATISFIED
The social:sentiment-satisfied icon.See example
|
SENTIMENT_VERY_DISSATISFIED
The social:sentiment-very-dissatisfied icon.See example
|
SENTIMENT_VERY_SATISFIED
The social:sentiment-very-satisfied icon.See example
|
SHARE
The social:share icon.See example
|
WHATSHOT
The social:whatshot icon.See example
|
| Modifier and Type | Field and Description |
|---|---|
static String |
ICONSET
The Iconset name, i.e.
|
| Modifier and Type | Method and Description |
|---|---|
SocialIcons.Icon |
create()
Create a new
IronIcon instance with the icon determined by the name. |
SocialIcons.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 SocialIcons |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SocialIcons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SocialIcons CAKE
public static final SocialIcons DOMAIN
public static final SocialIcons GROUP
public static final SocialIcons GROUP_ADD
public static final SocialIcons LOCATION_CITY
public static final SocialIcons MOOD
public static final SocialIcons MOOD_BAD
public static final SocialIcons NOTIFICATIONS
public static final SocialIcons NOTIFICATIONS_ACTIVE
public static final SocialIcons NOTIFICATIONS_NONE
public static final SocialIcons NOTIFICATIONS_OFF
public static final SocialIcons NOTIFICATIONS_PAUSED
public static final SocialIcons PAGES
public static final SocialIcons PARTY_MODE
public static final SocialIcons PEOPLE
public static final SocialIcons PEOPLE_OUTLINE
public static final SocialIcons PERSON
public static final SocialIcons PERSON_ADD
public static final SocialIcons PERSON_OUTLINE
public static final SocialIcons PLUS_ONE
public static final SocialIcons POLL
public static final SocialIcons PUBLIC
public static final SocialIcons SCHOOL
public static final SocialIcons SENTIMENT_DISSATISFIED
public static final SocialIcons SENTIMENT_NEUTRAL
public static final SocialIcons SENTIMENT_SATISFIED
public static final SocialIcons SENTIMENT_VERY_DISSATISFIED
public static final SocialIcons SENTIMENT_VERY_SATISFIED
public static final SocialIcons SHARE
public static final SocialIcons WHATSHOT
public static final String ICONSET
"social"."public static SocialIcons[] values()
for (SocialIcons c : SocialIcons.values()) System.out.println(c);
public static SocialIcons 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"social:name"..public SocialIcons.Icon create()
IronIcon instance with the icon determined by the name.create in interface IronIconEnumIronIcon componentpublic SocialIcons.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–2020 Flowing Code. All rights reserved.