Enum ListListener.ChangeType
- java.lang.Object
-
- java.lang.Enum<ListListener.ChangeType>
-
- org.eclipse.epsilon.egl.dt.widgets.ListListener.ChangeType
-
- All Implemented Interfaces:
Serializable
,Comparable<ListListener.ChangeType>
- Enclosing interface:
- ListListener
public static enum ListListener.ChangeType extends Enum<ListListener.ChangeType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDED
MOVED_DOWN
MOVED_UP
REMOVED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ListListener.ChangeType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListListener.ChangeType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDED
public static final ListListener.ChangeType ADDED
-
REMOVED
public static final ListListener.ChangeType REMOVED
-
MOVED_UP
public static final ListListener.ChangeType MOVED_UP
-
MOVED_DOWN
public static final ListListener.ChangeType MOVED_DOWN
-
-
Method Detail
-
values
public static ListListener.ChangeType[] 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 (ListListener.ChangeType c : ListListener.ChangeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ListListener.ChangeType 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
-
-