Package org.eclipse.net4j.util.container
Enum IContainerDelta.Kind
- java.lang.Object
- 
- java.lang.Enum<IContainerDelta.Kind>
- 
- org.eclipse.net4j.util.container.IContainerDelta.Kind
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<IContainerDelta.Kind>
 - Enclosing interface:
- IContainerDelta<E>
 
 public static enum IContainerDelta.Kind extends java.lang.Enum<IContainerDelta.Kind> - Author:
- Eike Stepper
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IContainerDelta.KindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IContainerDelta.Kind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ADDEDpublic static final IContainerDelta.Kind ADDED 
 - 
REMOVEDpublic static final IContainerDelta.Kind REMOVED 
 
- 
 - 
Method Detail- 
valuespublic static IContainerDelta.Kind[] 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 (IContainerDelta.Kind c : IContainerDelta.Kind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IContainerDelta.Kind 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-