Enum BadgeFetcher.BadgeKeys
- java.lang.Object
-
- java.lang.Enum<BadgeFetcher.BadgeKeys>
-
- com.inductiveautomation.ignition.client.util.gui.tree.BadgeFetcher.BadgeKeys
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BadgeFetcher.BadgeKeys>
- Enclosing class:
- BadgeFetcher
public static enum BadgeFetcher.BadgeKeys extends java.lang.Enum<BadgeFetcher.BadgeKeys>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABOUT
DB_BINDING
GROUPED
NOTES
OTHER_BINDING
PROP_BINDING
SCRIPT
SECURITY
STARTUP
STYLES
TAG_BINDING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BadgeFetcher.BadgeKeys
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BadgeFetcher.BadgeKeys[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABOUT
public static final BadgeFetcher.BadgeKeys ABOUT
-
DB_BINDING
public static final BadgeFetcher.BadgeKeys DB_BINDING
-
GROUPED
public static final BadgeFetcher.BadgeKeys GROUPED
-
NOTES
public static final BadgeFetcher.BadgeKeys NOTES
-
OTHER_BINDING
public static final BadgeFetcher.BadgeKeys OTHER_BINDING
-
PROP_BINDING
public static final BadgeFetcher.BadgeKeys PROP_BINDING
-
SCRIPT
public static final BadgeFetcher.BadgeKeys SCRIPT
-
SECURITY
public static final BadgeFetcher.BadgeKeys SECURITY
-
STARTUP
public static final BadgeFetcher.BadgeKeys STARTUP
-
STYLES
public static final BadgeFetcher.BadgeKeys STYLES
-
TAG_BINDING
public static final BadgeFetcher.BadgeKeys TAG_BINDING
-
-
Method Detail
-
values
public static BadgeFetcher.BadgeKeys[] 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 (BadgeFetcher.BadgeKeys c : BadgeFetcher.BadgeKeys.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BadgeFetcher.BadgeKeys 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
-
-