Enum Toolbar.Button
- java.lang.Object
-
- java.lang.Enum<Toolbar.Button>
-
- org.apache.zookeeper.inspector.gui.Toolbar.Button
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Toolbar.Button>
- Enclosing class:
- Toolbar
public static enum Toolbar.Button extends java.lang.Enum<Toolbar.Button>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description about
addNode
connect
deleteNode
disconnect
nodeViewers
refresh
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.swing.JButton
createJButton(IconResource iconResource)
static Toolbar.Button
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Toolbar.Button[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
connect
public static final Toolbar.Button connect
-
disconnect
public static final Toolbar.Button disconnect
-
refresh
public static final Toolbar.Button refresh
-
addNode
public static final Toolbar.Button addNode
-
deleteNode
public static final Toolbar.Button deleteNode
-
nodeViewers
public static final Toolbar.Button nodeViewers
-
about
public static final Toolbar.Button about
-
-
Method Detail
-
values
public static Toolbar.Button[] 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 (Toolbar.Button c : Toolbar.Button.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Toolbar.Button 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
-
createJButton
public javax.swing.JButton createJButton(IconResource iconResource)
-
-