Enum InternalCDOBranchManager.TagChangeKind
- java.lang.Object
- 
- java.lang.Enum<InternalCDOBranchManager.TagChangeKind>
- 
- org.eclipse.emf.cdo.spi.common.branch.InternalCDOBranchManager.TagChangeKind
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<InternalCDOBranchManager.TagChangeKind>
 - Enclosing interface:
- InternalCDOBranchManager
 
 public static enum InternalCDOBranchManager.TagChangeKind extends java.lang.Enum<InternalCDOBranchManager.TagChangeKind> - Since:
- 4.11
- Author:
- Eike Stepper
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static InternalCDOBranchManager.TagChangeKindvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static InternalCDOBranchManager.TagChangeKind[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
CREATEDpublic static final InternalCDOBranchManager.TagChangeKind CREATED 
 - 
RENAMEDpublic static final InternalCDOBranchManager.TagChangeKind RENAMED 
 - 
MOVEDpublic static final InternalCDOBranchManager.TagChangeKind MOVED 
 - 
DELETEDpublic static final InternalCDOBranchManager.TagChangeKind DELETED 
 
- 
 - 
Method Detail- 
valuespublic static InternalCDOBranchManager.TagChangeKind[] 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 (InternalCDOBranchManager.TagChangeKind c : InternalCDOBranchManager.TagChangeKind.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static InternalCDOBranchManager.TagChangeKind 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
 
 
- 
 
-