Enum V3SetOperator
- java.lang.Object
-
- java.lang.Enum<V3SetOperator>
-
- org.hl7.fhir.r4.model.codesystems.V3SetOperator
-
- All Implemented Interfaces:
Serializable,Comparable<V3SetOperator>
public enum V3SetOperator extends Enum<V3SetOperator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description _VALUESETOPERATOROperations that can be used to associate concepts in a terminology.AForm the intersection with the value.EForm the set-difference with this value, i.e., exclude this element or set from the resulting set.HForm the convex hull with the value.IForm the union with this value, i.e., include this element or set in the resulting set.NULLadded to help the parsersPForm the periodic hull with the value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static V3SetOperatorfromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static V3SetOperatorvalueOf(String name)Returns the enum constant of this type with the specified name.static V3SetOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
_VALUESETOPERATOR
public static final V3SetOperator _VALUESETOPERATOR
Operations that can be used to associate concepts in a terminology.
-
E
public static final V3SetOperator E
Form the set-difference with this value, i.e., exclude this element or set from the resulting set.
-
I
public static final V3SetOperator I
Form the union with this value, i.e., include this element or set in the resulting set.
-
A
public static final V3SetOperator A
Form the intersection with the value.
-
H
public static final V3SetOperator H
Form the convex hull with the value. The convex hull is defined over ordered domains and is the smallest contiguous superset (interval) that of all the operand sets.
-
P
public static final V3SetOperator P
Form the periodic hull with the value. The periodic hull is defined over ordered domains and is the periodic set that contains all contiguous supersets of pairs of intervals generated by the operand periodic intervals.
-
NULL
public static final V3SetOperator NULL
added to help the parsers
-
-
Method Detail
-
values
public static V3SetOperator[] 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 (V3SetOperator c : V3SetOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static V3SetOperator 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
-
fromCode
public static V3SetOperator fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-