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