blob: e6030fa8810ab059032a0a02bc8396d71366ded4 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import java.lang.String;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.common.util.Enumerator;
/**
* <!-- begin-user-doc -->
* A representation of the literals of the enumeration '<em><b>Slicing Rules List</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.hl7.fhir.FhirPackage#getSlicingRulesList()
* @model extendedMetaData="name='SlicingRules-list'"
* @generated
*/
public enum SlicingRulesList implements Enumerator {
/**
* The '<em><b>Closed</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CLOSED_VALUE
* @generated
* @ordered
*/
CLOSED(0, "closed", "closed"),
/**
* The '<em><b>Open</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #OPEN_VALUE
* @generated
* @ordered
*/
OPEN(1, "open", "open"),
/**
* The '<em><b>Open At End</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #OPEN_AT_END_VALUE
* @generated
* @ordered
*/
OPEN_AT_END(2, "openAtEnd", "openAtEnd");
/**
* The '<em><b>Closed</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* No additional content is allowed other than that described by the slices in this profile.
* <!-- end-model-doc -->
* @see #CLOSED
* @model name="closed"
* @generated
* @ordered
*/
public static final int CLOSED_VALUE = 0;
/**
* The '<em><b>Open</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Additional content is allowed anywhere in the list.
* <!-- end-model-doc -->
* @see #OPEN
* @model name="open"
* @generated
* @ordered
*/
public static final int OPEN_VALUE = 1;
/**
* The '<em><b>Open At End</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Additional content is allowed, but only at the end of the list. Note that using this requires that the slices be ordered, which makes it hard to share uses. This should only be done where absolutely required.
* <!-- end-model-doc -->
* @see #OPEN_AT_END
* @model name="openAtEnd"
* @generated
* @ordered
*/
public static final int OPEN_AT_END_VALUE = 2;
/**
* An array of all the '<em><b>Slicing Rules List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final SlicingRulesList[] VALUES_ARRAY =
new SlicingRulesList[] {
CLOSED,
OPEN,
OPEN_AT_END,
};
/**
* A public read-only list of all the '<em><b>Slicing Rules List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<SlicingRulesList> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Slicing Rules List</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param literal the literal.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static SlicingRulesList get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SlicingRulesList result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Slicing Rules List</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name the name.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static SlicingRulesList getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SlicingRulesList result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Slicing Rules List</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the integer value.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static SlicingRulesList get(int value) {
switch (value) {
case CLOSED_VALUE: return CLOSED;
case OPEN_VALUE: return OPEN;
case OPEN_AT_END_VALUE: return OPEN_AT_END;
}
return null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final int value;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String name;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String literal;
/**
* Only this class can construct instances.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private SlicingRulesList(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getValue() {
return value;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getName() {
return name;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getLiteral() {
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
return literal;
}
} //SlicingRulesList