Package org.eclipse.emf.cdo.server
Enum IStore.RevisionParallelism
- java.lang.Object
- 
- java.lang.Enum<IStore.RevisionParallelism>
- 
- org.eclipse.emf.cdo.server.IStore.RevisionParallelism
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<IStore.RevisionParallelism>
 - Enclosing interface:
- IStore
 
 public static enum IStore.RevisionParallelism extends java.lang.Enum<IStore.RevisionParallelism> Enumerates the possible branching options astorecan accept.- Since:
- 2.0
- Author:
- Eike Stepper
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IStore.RevisionParallelismvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IStore.RevisionParallelism[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NONEpublic static final IStore.RevisionParallelism NONE An indication that the store can work without branching.
 - 
BRANCHINGpublic static final IStore.RevisionParallelism BRANCHING An indication that the store can work with branching.
 
- 
 - 
Method Detail- 
valuespublic static IStore.RevisionParallelism[] 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 (IStore.RevisionParallelism c : IStore.RevisionParallelism.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IStore.RevisionParallelism 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
 
 
- 
 
-