Enum EnumStringMultiSelectionDialog.Selection
- java.lang.Object
-
- java.lang.Enum<EnumStringMultiSelectionDialog.Selection>
-
- org.eclipse.nebula.widgets.xviewer.util.EnumStringMultiSelectionDialog.Selection
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EnumStringMultiSelectionDialog.Selection>
- Enclosing class:
- EnumStringMultiSelectionDialog
public static enum EnumStringMultiSelectionDialog.Selection extends java.lang.Enum<EnumStringMultiSelectionDialog.Selection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AddSelection
DeleteSelected
ReplaceAll
-
Constructor Summary
Constructors Modifier Constructor Description private
Selection()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EnumStringMultiSelectionDialog.Selection
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EnumStringMultiSelectionDialog.Selection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AddSelection
public static final EnumStringMultiSelectionDialog.Selection AddSelection
-
ReplaceAll
public static final EnumStringMultiSelectionDialog.Selection ReplaceAll
-
DeleteSelected
public static final EnumStringMultiSelectionDialog.Selection DeleteSelected
-
-
Method Detail
-
values
public static EnumStringMultiSelectionDialog.Selection[] 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 (EnumStringMultiSelectionDialog.Selection c : EnumStringMultiSelectionDialog.Selection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EnumStringMultiSelectionDialog.Selection 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
-
-