Package org.teamapps.ux.icon
Enum TeamAppsIconBundle
- java.lang.Object
-
- java.lang.Enum<TeamAppsIconBundle>
-
- org.teamapps.ux.icon.TeamAppsIconBundle
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TeamAppsIconBundle>,IconBundleEntry
public enum TeamAppsIconBundle extends java.lang.Enum<TeamAppsIconBundle> implements IconBundleEntry
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IconBundlecreateBundle()org.teamapps.icons.IcongetIcon()java.lang.StringgetKey()static TeamAppsIconBundlevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TeamAppsIconBundle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final TeamAppsIconBundle ADD
-
SAVE
public static final TeamAppsIconBundle SAVE
-
DELETE
public static final TeamAppsIconBundle DELETE
-
UNDO
public static final TeamAppsIconBundle UNDO
-
CANCEL
public static final TeamAppsIconBundle CANCEL
-
FILTER
public static final TeamAppsIconBundle FILTER
-
SEARCH
public static final TeamAppsIconBundle SEARCH
-
SELECTION
public static final TeamAppsIconBundle SELECTION
-
REMOVE
public static final TeamAppsIconBundle REMOVE
-
BACK
public static final TeamAppsIconBundle BACK
-
PREVIOUS
public static final TeamAppsIconBundle PREVIOUS
-
NEXT
public static final TeamAppsIconBundle NEXT
-
YEAR
public static final TeamAppsIconBundle YEAR
-
MONTH
public static final TeamAppsIconBundle MONTH
-
WEEK
public static final TeamAppsIconBundle WEEK
-
DAY
public static final TeamAppsIconBundle DAY
-
APPLICATION_LAUNCHER
public static final TeamAppsIconBundle APPLICATION_LAUNCHER
-
TREE
public static final TeamAppsIconBundle TREE
-
VIEWS
public static final TeamAppsIconBundle VIEWS
-
TOOLBAR
public static final TeamAppsIconBundle TOOLBAR
-
UPLOAD
public static final TeamAppsIconBundle UPLOAD
-
REFERENCE
public static final TeamAppsIconBundle REFERENCE
-
MULTI_REFERENCE
public static final TeamAppsIconBundle MULTI_REFERENCE
-
ENUM
public static final TeamAppsIconBundle ENUM
-
-
Method Detail
-
values
public static TeamAppsIconBundle[] 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 (TeamAppsIconBundle c : TeamAppsIconBundle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TeamAppsIconBundle valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
createBundle
public static IconBundle createBundle()
-
getKey
public java.lang.String getKey()
- Specified by:
getKeyin interfaceIconBundleEntry
-
getIcon
public org.teamapps.icons.Icon getIcon()
- Specified by:
getIconin interfaceIconBundleEntry
-
-