Package com.vaadin.client.debug.internal
Enum Icon
- java.lang.Object
-
- java.lang.Enum<Icon>
-
- com.vaadin.client.debug.internal.Icon
-
- All Implemented Interfaces:
Serializable
,Comparable<Icon>
public enum Icon extends Enum<Icon>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANALYZE
CLEAR
CLOSE
DEVMODE_OFF
DEVMODE_ON
DEVMODE_SUPER
ERROR
HIERARCHY
HIGHLIGHT
INFO
LOG
MAXIMIZE
MENU
MINIMIZE
NETWORK
OK
OPTIMIZE
PERSIST
REMOVE
RESET
RESET_TIMER
SCROLL_LOCK
SEARCH
SELECTOR
SHOW_DESIGN
TESTBENCH
WARNING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
String
toString()
static Icon
valueOf(String name)
Returns the enum constant of this type with the specified name.static Icon[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEARCH
public static final Icon SEARCH
-
OK
public static final Icon OK
-
REMOVE
public static final Icon REMOVE
-
CLOSE
public static final Icon CLOSE
-
CLEAR
public static final Icon CLEAR
-
RESET_TIMER
public static final Icon RESET_TIMER
-
MINIMIZE
public static final Icon MINIMIZE
-
WARNING
public static final Icon WARNING
-
INFO
public static final Icon INFO
-
ERROR
public static final Icon ERROR
-
HIGHLIGHT
public static final Icon HIGHLIGHT
-
LOG
public static final Icon LOG
-
OPTIMIZE
public static final Icon OPTIMIZE
-
HIERARCHY
public static final Icon HIERARCHY
-
SELECTOR
public static final Icon SELECTOR
-
MENU
public static final Icon MENU
-
NETWORK
public static final Icon NETWORK
-
ANALYZE
public static final Icon ANALYZE
-
SCROLL_LOCK
public static final Icon SCROLL_LOCK
-
DEVMODE_OFF
public static final Icon DEVMODE_OFF
-
DEVMODE_SUPER
public static final Icon DEVMODE_SUPER
-
DEVMODE_ON
public static final Icon DEVMODE_ON
-
MAXIMIZE
public static final Icon MAXIMIZE
-
RESET
public static final Icon RESET
-
PERSIST
public static final Icon PERSIST
-
TESTBENCH
public static final Icon TESTBENCH
-
SHOW_DESIGN
public static final Icon SHOW_DESIGN
-
-
Method Detail
-
values
public static Icon[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Icon c : Icon.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Icon valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getId
public String getId()
-
-