- java.lang.Object
-
- java.lang.Enum<CommonIcons>
-
- eu.ess.xaos.ui.control.CommonIcons
-
- All Implemented Interfaces:
Serializable
,Comparable<CommonIcons>
public enum CommonIcons extends Enum<CommonIcons>
Keys to be used withIcons.iconFor(Object, int)
to obtain the common icons.- Author:
- claudio.rosati@esss.se
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLUR_OFF
CHEVRON_DOWN
CHEVRON_LEFT
CHEVRON_RIGHT
CHEVRON_UP
COPY
CUT
DELETE
FILE
FILE_EXECUTABLE
FILE_HIDDEN
FILE_IMAGE
FILE_LINK
FOLDER_COLLAPSED
FOLDER_EXPANDED
FORWARD
GEARS
INFO
PASTE
PIN
REPLY
REPLY_ALL
SEARCH
SHARE
SQUARE_DOWN
SQUARE_LEFT
SQUARE_RIGHT
SQUARE_UP
STATISTICS
TABLE
WARNING
ZOOM_IN
ZOOM_OUT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommonIcons
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommonIcons[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BLUR_OFF
public static final CommonIcons BLUR_OFF
-
CHEVRON_DOWN
public static final CommonIcons CHEVRON_DOWN
-
CHEVRON_LEFT
public static final CommonIcons CHEVRON_LEFT
-
CHEVRON_RIGHT
public static final CommonIcons CHEVRON_RIGHT
-
CHEVRON_UP
public static final CommonIcons CHEVRON_UP
-
COPY
public static final CommonIcons COPY
-
CUT
public static final CommonIcons CUT
-
DELETE
public static final CommonIcons DELETE
-
FILE
public static final CommonIcons FILE
-
FILE_EXECUTABLE
public static final CommonIcons FILE_EXECUTABLE
-
FILE_HIDDEN
public static final CommonIcons FILE_HIDDEN
-
FILE_IMAGE
public static final CommonIcons FILE_IMAGE
-
FILE_LINK
public static final CommonIcons FILE_LINK
-
FOLDER_COLLAPSED
public static final CommonIcons FOLDER_COLLAPSED
-
FOLDER_EXPANDED
public static final CommonIcons FOLDER_EXPANDED
-
FORWARD
public static final CommonIcons FORWARD
-
GEARS
public static final CommonIcons GEARS
-
INFO
public static final CommonIcons INFO
-
PASTE
public static final CommonIcons PASTE
-
PIN
public static final CommonIcons PIN
-
REPLY
public static final CommonIcons REPLY
-
REPLY_ALL
public static final CommonIcons REPLY_ALL
-
SEARCH
public static final CommonIcons SEARCH
-
SHARE
public static final CommonIcons SHARE
-
SQUARE_DOWN
public static final CommonIcons SQUARE_DOWN
-
SQUARE_LEFT
public static final CommonIcons SQUARE_LEFT
-
SQUARE_RIGHT
public static final CommonIcons SQUARE_RIGHT
-
SQUARE_UP
public static final CommonIcons SQUARE_UP
-
STATISTICS
public static final CommonIcons STATISTICS
-
TABLE
public static final CommonIcons TABLE
-
WARNING
public static final CommonIcons WARNING
-
ZOOM_IN
public static final CommonIcons ZOOM_IN
-
ZOOM_OUT
public static final CommonIcons ZOOM_OUT
-
-
Method Detail
-
values
public static CommonIcons[] 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 (CommonIcons c : CommonIcons.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommonIcons 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
-
-