Enum WindowPortTools.Tool
- java.lang.Object
-
- java.lang.Enum<WindowPortTools.Tool>
-
- com.neotropic.kuwaiba.modules.commercial.ospman.dialogs.WindowPortTools.Tool
-
- All Implemented Interfaces:
Serializable
,Comparable<WindowPortTools.Tool>
- Enclosing class:
- WindowPortTools
public static enum WindowPortTools.Tool extends Enum<WindowPortTools.Tool>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MANAGE_PORT_MIRRORING
PROPERTY_SHEET
RELEASE_PORT
SHOW_PHYSICAL_PATH
SHOW_PHYSICAL_TREE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WindowPortTools.Tool
valueOf(String name)
Returns the enum constant of this type with the specified name.static WindowPortTools.Tool[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RELEASE_PORT
public static final WindowPortTools.Tool RELEASE_PORT
-
SHOW_PHYSICAL_PATH
public static final WindowPortTools.Tool SHOW_PHYSICAL_PATH
-
SHOW_PHYSICAL_TREE
public static final WindowPortTools.Tool SHOW_PHYSICAL_TREE
-
MANAGE_PORT_MIRRORING
public static final WindowPortTools.Tool MANAGE_PORT_MIRRORING
-
PROPERTY_SHEET
public static final WindowPortTools.Tool PROPERTY_SHEET
-
-
Method Detail
-
values
public static WindowPortTools.Tool[] 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 (WindowPortTools.Tool c : WindowPortTools.Tool.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WindowPortTools.Tool 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
-
-