org.eclipse.emf.cdo.common
Enum CDOCommonRepository.Type
java.lang.Object
java.lang.Enum<CDOCommonRepository.Type>
org.eclipse.emf.cdo.common.CDOCommonRepository.Type
- All Implemented Interfaces:
- Serializable, Comparable<CDOCommonRepository.Type>
- Enclosing interface:
- CDOCommonRepository
- public static enum CDOCommonRepository.Type
- extends Enum<CDOCommonRepository.Type>
Enumerates the possible types
of a CDO repository.
MASTER
public static final CDOCommonRepository.Type MASTER
BACKUP
public static final CDOCommonRepository.Type BACKUP
CLONE
public static final CDOCommonRepository.Type CLONE
values
public static CDOCommonRepository.Type[] 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 (CDOCommonRepository.Type c : CDOCommonRepository.Type.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static CDOCommonRepository.Type 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 name
NullPointerException
- if the argument is null
Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.