Enum ExpansionParameterSource
- java.lang.Object
-
- java.lang.Enum<ExpansionParameterSource>
-
- org.hl7.fhir.r4.model.codesystems.ExpansionParameterSource
-
- All Implemented Interfaces:
Serializable,Comparable<ExpansionParameterSource>
public enum ExpansionParameterSource extends Enum<ExpansionParameterSource>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODESYSTEMThe parameter was added from one the code systems used in the $expand operation.INPUTThe parameter was supplied by the client in the $expand request.NULLadded to help the parsersSERVERThe parameter was added by the expansion engine on the server.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExpansionParameterSourcefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static ExpansionParameterSourcevalueOf(String name)Returns the enum constant of this type with the specified name.static ExpansionParameterSource[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INPUT
public static final ExpansionParameterSource INPUT
The parameter was supplied by the client in the $expand request.
-
SERVER
public static final ExpansionParameterSource SERVER
The parameter was added by the expansion engine on the server.
-
CODESYSTEM
public static final ExpansionParameterSource CODESYSTEM
The parameter was added from one the code systems used in the $expand operation.
-
NULL
public static final ExpansionParameterSource NULL
added to help the parsers
-
-
Method Detail
-
values
public static ExpansionParameterSource[] 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 (ExpansionParameterSource c : ExpansionParameterSource.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExpansionParameterSource 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 ExpansionParameterSource fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-