Package org.somda.sdc.glue.common.uri
Enum ContextIdentificationMapper.ContextSource
- java.lang.Object
-
- java.lang.Enum<ContextIdentificationMapper.ContextSource>
-
- org.somda.sdc.glue.common.uri.ContextIdentificationMapper.ContextSource
-
- All Implemented Interfaces:
Serializable,Comparable<ContextIdentificationMapper.ContextSource>
- Enclosing class:
- ContextIdentificationMapper
public static enum ContextIdentificationMapper.ContextSource extends Enum<ContextIdentificationMapper.ContextSource>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<? extends AbstractContextState>getSourceClass()StringgetSourceString()static ContextIdentificationMapper.ContextSourcevalueOf(String name)Returns the enum constant of this type with the specified name.static ContextIdentificationMapper.ContextSource[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Location
public static final ContextIdentificationMapper.ContextSource Location
-
Patient
public static final ContextIdentificationMapper.ContextSource Patient
-
Ensemble
public static final ContextIdentificationMapper.ContextSource Ensemble
-
Workflow
public static final ContextIdentificationMapper.ContextSource Workflow
-
Operator
public static final ContextIdentificationMapper.ContextSource Operator
-
Means
public static final ContextIdentificationMapper.ContextSource Means
-
-
Method Detail
-
values
public static ContextIdentificationMapper.ContextSource[] 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 (ContextIdentificationMapper.ContextSource c : ContextIdentificationMapper.ContextSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ContextIdentificationMapper.ContextSource 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
-
getSourceString
public String getSourceString()
-
getSourceClass
public Class<? extends AbstractContextState> getSourceClass()
-
-