Package com.arubanetworks.meridian.util
Enum Class Icons.Type
- All Implemented Interfaces:
Serializable
,Comparable<Icons.Type>
,java.lang.constant.Constable
- Enclosing class:
- Icons
List of available icons
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic Icons.Type
fromString
(String type) getIconDrawable
(Context context) Creates a drawable for a given icongetIconDrawable
(Context context, int sizeInPixels) Creates a drawable for a given icongetIconDrawable
(Context context, int sizeInPixels, int color) Creates a drawable for a given iconstatic Icons.Type
Returns the enum constant of this class with the specified name.static Icons.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AED
-
AMUSEMENT_PARK
-
ASSET
-
ATM
-
ATTRACTION
-
BAGGAGE
-
BAGGAGE_CARTS
-
BANK
-
BAR
-
BIKE
-
BUS
-
CAFE
-
CAFETERIA
-
CASHIER
-
CHANGING_ROOM
-
CHANGING_STATION
-
CHARGING_STATION
-
CLINIC
-
CLUB
-
COAT_CHECK
-
CONFERENCE_ROOM
-
CURRENCY_EXCHANGE
-
CUSTOMER_SERVICE
-
DESK
-
DEVICE_CHARGING
-
ELEVATOR
-
EMERGENCY_DEPT
-
ESCALATOR
-
EXIT
-
EXHIBIT
-
FIRE_EXTINGUISHER
-
FIRST_AID
-
FITNESS_CENTER
-
FOUNTAIN
-
GALLERY
-
GAMING
-
GARDEN
-
GATE
-
GENERIC
-
GLOBAL_ENTRY_OFFICE
-
HANDICAP
-
INFORMATION
-
KIOSK
-
LAB
-
LAPTOP_LOUNGE
-
LOST_FOUND
-
LOUNGE
-
MAILBOX
-
MUSEUM
-
NURSING_STATION
-
OPERATING_ROOM
-
PAGING_PHONE
-
PARKING
-
PET_RELIEF
-
PHARMACY
-
PHONE
-
PLAY_AREA
-
PRINTER
-
REGISTRATION
-
RENTAL_CARS
-
RESTAURANT
-
RESTROOM
-
RESTROOM_ADA
-
RESTROOM_FAMILY
-
RESTROOM_MEN
-
RESTROOM_MEN_ADA
-
RESTROOM_WOMEN
-
RESTROOM_WOMEN_ADA
-
REWARDS
-
SECURITY
-
SECURITY_CHECKPOINT
-
SHOE_SHINE
-
SHOP
-
SPA
-
STADIUM
-
STAIRS
-
SWIMMING_POOL
-
TAXI
-
THEATER
-
TICKETING
-
TOURS
-
TRAIN
-
TRAINING
-
VALET
-
VENDING_MACHINES
-
WATER_FOUNTAIN
-
WEDDING
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getIconDrawable
Creates a drawable for a given icon- Parameters:
context
-- application context
- Returns:
- white drawable of icon, approximately 12x12 pixels
-
getIconDrawable
Creates a drawable for a given icon- Parameters:
context
-- application context
sizeInPixels
-- requested size in pixels of resulting drawable
- Returns:
- white drawable of icon
-
getIconDrawable
Creates a drawable for a given icon- Parameters:
context
-- application context
sizeInPixels
-- requested size in pixels of resulting drawable
color
-- requested color of drawable
- Returns:
- drawable of icon
-
fromString
-