public enum SearchParamType extends Enum<SearchParamType>
| Enum Constant and Description |
|---|
COMPOSITE
A composite search parameter that combines a search on two values together.
|
DATE
Search parameter is on a date/time.
|
NULL
added to help the parsers
|
NUMBER
Search parameter SHALL be a number (a whole number, or a decimal).
|
QUANTITY
A search parameter that searches on a quantity.
|
REFERENCE
A reference to another resource (Reference or canonical).
|
SPECIAL
Special logic applies to this parameter per the description of the search parameter.
|
STRING
Search parameter is a simple string, like a name part.
|
TOKEN
Search parameter on a coded element or identifier.
|
URI
A search parameter that searches on a URI (RFC 3986).
|
| Modifier and Type | Method and Description |
|---|---|
static SearchParamType |
fromCode(String codeString) |
String |
getDefinition() |
String |
getDisplay() |
String |
getSystem() |
String |
toCode() |
static SearchParamType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchParamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchParamType NUMBER
public static final SearchParamType DATE
public static final SearchParamType STRING
public static final SearchParamType TOKEN
public static final SearchParamType REFERENCE
public static final SearchParamType COMPOSITE
public static final SearchParamType QUANTITY
public static final SearchParamType URI
public static final SearchParamType SPECIAL
public static final SearchParamType NULL
public static SearchParamType[] values()
for (SearchParamType c : SearchParamType.values()) System.out.println(c);
public static SearchParamType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static SearchParamType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
org.hl7.fhir.exceptions.FHIRExceptionpublic String getDefinition()
public String getDisplay()
Copyright © 2014–2021 Health Level 7. All rights reserved.