Package ca.uhn.fhir.model.dstu2.valueset
Enum AssertionOperatorTypeEnum
- java.lang.Object
-
- java.lang.Enum<AssertionOperatorTypeEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.AssertionOperatorTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AssertionOperatorTypeEnum>
public enum AssertionOperatorTypeEnum extends Enum<AssertionOperatorTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSDisplay: contains
Code Value: contains Compare value string contains a known value.EMPTYDisplay: empty
Code Value: empty Compare value is empty.EQUALSDisplay: equals
Code Value: equals Default value.GREATERTHANDisplay: greaterThan
Code Value: greaterThan Compare value to be greater than a known value.INDisplay: in
Code Value: in Compare value within a known set of values.LESSTHANDisplay: lessThan
Code Value: lessThan Compare value to be less than a known value.NOTCONTAINSDisplay: notContains
Code Value: notContains Compare value string does not contain a known value.NOTEMPTYDisplay: notEmpty
Code Value: notEmpty Compare value is not empty.NOTEQUALSDisplay: notEquals
Code Value: notEquals Not equals comparison.NOTINDisplay: notIn
Code Value: notIn Compare value not within a known set of values.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<AssertionOperatorTypeEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: AssertionOperatorType
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssertionOperatorTypeEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic AssertionOperatorTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AssertionOperatorTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQUALS
public static final AssertionOperatorTypeEnum EQUALS
Display: equals
Code Value: equals Default value. Equals comparison.
-
NOTEQUALS
public static final AssertionOperatorTypeEnum NOTEQUALS
Display: notEquals
Code Value: notEquals Not equals comparison.
-
IN
public static final AssertionOperatorTypeEnum IN
Display: in
Code Value: in Compare value within a known set of values.
-
NOTIN
public static final AssertionOperatorTypeEnum NOTIN
Display: notIn
Code Value: notIn Compare value not within a known set of values.
-
GREATERTHAN
public static final AssertionOperatorTypeEnum GREATERTHAN
Display: greaterThan
Code Value: greaterThan Compare value to be greater than a known value.
-
LESSTHAN
public static final AssertionOperatorTypeEnum LESSTHAN
Display: lessThan
Code Value: lessThan Compare value to be less than a known value.
-
EMPTY
public static final AssertionOperatorTypeEnum EMPTY
Display: empty
Code Value: empty Compare value is empty.
-
NOTEMPTY
public static final AssertionOperatorTypeEnum NOTEMPTY
Display: notEmpty
Code Value: notEmpty Compare value is not empty.
-
CONTAINS
public static final AssertionOperatorTypeEnum CONTAINS
Display: contains
Code Value: contains Compare value string contains a known value.
-
NOTCONTAINS
public static final AssertionOperatorTypeEnum NOTCONTAINS
Display: notContains
Code Value: notContains Compare value string does not contain a known value.
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: AssertionOperatorType- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AssertionOperatorTypeEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static AssertionOperatorTypeEnum[] 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 (AssertionOperatorTypeEnum c : AssertionOperatorTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AssertionOperatorTypeEnum 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
-
forCode
public static AssertionOperatorTypeEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-