
Package org.hl7.fhir.dstu3.model
Enum TestScript.AssertionDirectionType
- java.lang.Object
-
- java.lang.Enum<TestScript.AssertionDirectionType>
-
- org.hl7.fhir.dstu3.model.TestScript.AssertionDirectionType
-
- All Implemented Interfaces:
Serializable
,Comparable<TestScript.AssertionDirectionType>
- Enclosing class:
- TestScript
public static enum TestScript.AssertionDirectionType extends Enum<TestScript.AssertionDirectionType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TestScript.AssertionDirectionType
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static TestScript.AssertionDirectionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TestScript.AssertionDirectionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESPONSE
public static final TestScript.AssertionDirectionType RESPONSE
The assertion is evaluated on the response. This is the default value.
-
REQUEST
public static final TestScript.AssertionDirectionType REQUEST
The assertion is evaluated on the request.
-
NULL
public static final TestScript.AssertionDirectionType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static TestScript.AssertionDirectionType[] 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 (TestScript.AssertionDirectionType c : TestScript.AssertionDirectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TestScript.AssertionDirectionType 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 TestScript.AssertionDirectionType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-