
Package org.hl7.fhir.dstu3.model
Enum SearchParameter.XPathUsageType
- java.lang.Object
-
- java.lang.Enum<SearchParameter.XPathUsageType>
-
- org.hl7.fhir.dstu3.model.SearchParameter.XPathUsageType
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchParameter.XPathUsageType>
- Enclosing class:
- SearchParameter
public static enum SearchParameter.XPathUsageType extends Enum<SearchParameter.XPathUsageType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DISTANCE
The search parameter is based on a spatial transform of the selected nodes, using physical distance from the middle.NEARBY
The search parameter is based on a spatial transform of the selected nodes.NORMAL
The search parameter is derived directly from the selected nodes based on the type definitions.NULL
added to help the parsers with the generic typesOTHER
The interpretation of the xpath statement is unknown (and can't be automated).PHONETIC
The search parameter is derived by a phonetic transform from the selected nodes.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SearchParameter.XPathUsageType
fromCode(String codeString)
String
getDefinition()
String
getDisplay()
String
getSystem()
String
toCode()
static SearchParameter.XPathUsageType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchParameter.XPathUsageType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NORMAL
public static final SearchParameter.XPathUsageType NORMAL
The search parameter is derived directly from the selected nodes based on the type definitions.
-
PHONETIC
public static final SearchParameter.XPathUsageType PHONETIC
The search parameter is derived by a phonetic transform from the selected nodes.
-
NEARBY
public static final SearchParameter.XPathUsageType NEARBY
The search parameter is based on a spatial transform of the selected nodes.
-
DISTANCE
public static final SearchParameter.XPathUsageType DISTANCE
The search parameter is based on a spatial transform of the selected nodes, using physical distance from the middle.
-
OTHER
public static final SearchParameter.XPathUsageType OTHER
The interpretation of the xpath statement is unknown (and can't be automated).
-
NULL
public static final SearchParameter.XPathUsageType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static SearchParameter.XPathUsageType[] 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 (SearchParameter.XPathUsageType c : SearchParameter.XPathUsageType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchParameter.XPathUsageType 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 SearchParameter.XPathUsageType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-