
org.hl7.fhir.r4b.model.NamingSystem Maven / Gradle / Ivy
package org.hl7.fhir.r4b.model;
/*
Copyright (c) 2011+, HL7, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, \
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this \
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice, \
this list of conditions and the following disclaimer in the documentation \
and/or other materials provided with the distribution.
* Neither the name of HL7 nor the names of its contributors may be used to
endorse or promote products derived from this software without specific
prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND \
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED \
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. \
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, \
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT \
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR \
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, \
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) \
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE \
POSSIBILITY OF SUCH DAMAGE.
*/
// Generated on Mon, Jun 13, 2022 17:19+0300 for FHIR v4.3.0
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import org.hl7.fhir.utilities.Utilities;
import org.hl7.fhir.r4b.model.Enumerations.*;
import org.hl7.fhir.instance.model.api.IBaseBackboneElement;
import org.hl7.fhir.exceptions.FHIRException;
import org.hl7.fhir.instance.model.api.ICompositeType;
import ca.uhn.fhir.model.api.annotation.ResourceDef;
import ca.uhn.fhir.model.api.annotation.SearchParamDefinition;
import org.hl7.fhir.instance.model.api.IBaseBackboneElement;
import ca.uhn.fhir.model.api.annotation.Child;
import ca.uhn.fhir.model.api.annotation.ChildOrder;
import ca.uhn.fhir.model.api.annotation.Description;
import ca.uhn.fhir.model.api.annotation.Block;
/**
* A curated namespace that issues unique symbols within that namespace for the
* identification of concepts, people, devices, etc. Represents a "System" used
* within the Identifier and Coding data types.
*/
@ResourceDef(name = "NamingSystem", profile = "http://hl7.org/fhir/StructureDefinition/NamingSystem")
public class NamingSystem extends CanonicalResource {
public enum NamingSystemIdentifierType {
/**
* An ISO object identifier; e.g. 1.2.3.4.5.
*/
OID,
/**
* A universally unique identifier of the form
* a5afddf4-e880-459b-876e-e4591b0acc11.
*/
UUID,
/**
* A uniform resource identifier (ideally a URL - uniform resource locator);
* e.g. http://unitsofmeasure.org.
*/
URI,
/**
* Some other type of unique identifier; e.g. HL7-assigned reserved string such
* as LN for LOINC.
*/
OTHER,
/**
* added to help the parsers with the generic types
*/
NULL;
public static NamingSystemIdentifierType fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("oid".equals(codeString))
return OID;
if ("uuid".equals(codeString))
return UUID;
if ("uri".equals(codeString))
return URI;
if ("other".equals(codeString))
return OTHER;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown NamingSystemIdentifierType code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case OID:
return "oid";
case UUID:
return "uuid";
case URI:
return "uri";
case OTHER:
return "other";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case OID:
return "http://hl7.org/fhir/namingsystem-identifier-type";
case UUID:
return "http://hl7.org/fhir/namingsystem-identifier-type";
case URI:
return "http://hl7.org/fhir/namingsystem-identifier-type";
case OTHER:
return "http://hl7.org/fhir/namingsystem-identifier-type";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case OID:
return "An ISO object identifier; e.g. 1.2.3.4.5.";
case UUID:
return "A universally unique identifier of the form a5afddf4-e880-459b-876e-e4591b0acc11.";
case URI:
return "A uniform resource identifier (ideally a URL - uniform resource locator); e.g. http://unitsofmeasure.org.";
case OTHER:
return "Some other type of unique identifier; e.g. HL7-assigned reserved string such as LN for LOINC.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case OID:
return "OID";
case UUID:
return "UUID";
case URI:
return "URI";
case OTHER:
return "Other";
case NULL:
return null;
default:
return "?";
}
}
}
public static class NamingSystemIdentifierTypeEnumFactory implements EnumFactory {
public NamingSystemIdentifierType fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("oid".equals(codeString))
return NamingSystemIdentifierType.OID;
if ("uuid".equals(codeString))
return NamingSystemIdentifierType.UUID;
if ("uri".equals(codeString))
return NamingSystemIdentifierType.URI;
if ("other".equals(codeString))
return NamingSystemIdentifierType.OTHER;
throw new IllegalArgumentException("Unknown NamingSystemIdentifierType code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, NamingSystemIdentifierType.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, NamingSystemIdentifierType.NULL, code);
if ("oid".equals(codeString))
return new Enumeration(this, NamingSystemIdentifierType.OID, code);
if ("uuid".equals(codeString))
return new Enumeration(this, NamingSystemIdentifierType.UUID, code);
if ("uri".equals(codeString))
return new Enumeration(this, NamingSystemIdentifierType.URI, code);
if ("other".equals(codeString))
return new Enumeration(this, NamingSystemIdentifierType.OTHER, code);
throw new FHIRException("Unknown NamingSystemIdentifierType code '" + codeString + "'");
}
public String toCode(NamingSystemIdentifierType code) {
if (code == NamingSystemIdentifierType.NULL)
return null;
if (code == NamingSystemIdentifierType.OID)
return "oid";
if (code == NamingSystemIdentifierType.UUID)
return "uuid";
if (code == NamingSystemIdentifierType.URI)
return "uri";
if (code == NamingSystemIdentifierType.OTHER)
return "other";
return "?";
}
public String toSystem(NamingSystemIdentifierType code) {
return code.getSystem();
}
}
public enum NamingSystemType {
/**
* The naming system is used to define concepts and symbols to represent those
* concepts; e.g. UCUM, LOINC, NDC code, local lab codes, etc.
*/
CODESYSTEM,
/**
* The naming system is used to manage identifiers (e.g. license numbers, order
* numbers, etc.).
*/
IDENTIFIER,
/**
* The naming system is used as the root for other identifiers and naming
* systems.
*/
ROOT,
/**
* added to help the parsers with the generic types
*/
NULL;
public static NamingSystemType fromCode(String codeString) throws FHIRException {
if (codeString == null || "".equals(codeString))
return null;
if ("codesystem".equals(codeString))
return CODESYSTEM;
if ("identifier".equals(codeString))
return IDENTIFIER;
if ("root".equals(codeString))
return ROOT;
if (Configuration.isAcceptInvalidEnums())
return null;
else
throw new FHIRException("Unknown NamingSystemType code '" + codeString + "'");
}
public String toCode() {
switch (this) {
case CODESYSTEM:
return "codesystem";
case IDENTIFIER:
return "identifier";
case ROOT:
return "root";
case NULL:
return null;
default:
return "?";
}
}
public String getSystem() {
switch (this) {
case CODESYSTEM:
return "http://hl7.org/fhir/namingsystem-type";
case IDENTIFIER:
return "http://hl7.org/fhir/namingsystem-type";
case ROOT:
return "http://hl7.org/fhir/namingsystem-type";
case NULL:
return null;
default:
return "?";
}
}
public String getDefinition() {
switch (this) {
case CODESYSTEM:
return "The naming system is used to define concepts and symbols to represent those concepts; e.g. UCUM, LOINC, NDC code, local lab codes, etc.";
case IDENTIFIER:
return "The naming system is used to manage identifiers (e.g. license numbers, order numbers, etc.).";
case ROOT:
return "The naming system is used as the root for other identifiers and naming systems.";
case NULL:
return null;
default:
return "?";
}
}
public String getDisplay() {
switch (this) {
case CODESYSTEM:
return "Code System";
case IDENTIFIER:
return "Identifier";
case ROOT:
return "Root";
case NULL:
return null;
default:
return "?";
}
}
}
public static class NamingSystemTypeEnumFactory implements EnumFactory {
public NamingSystemType fromCode(String codeString) throws IllegalArgumentException {
if (codeString == null || "".equals(codeString))
if (codeString == null || "".equals(codeString))
return null;
if ("codesystem".equals(codeString))
return NamingSystemType.CODESYSTEM;
if ("identifier".equals(codeString))
return NamingSystemType.IDENTIFIER;
if ("root".equals(codeString))
return NamingSystemType.ROOT;
throw new IllegalArgumentException("Unknown NamingSystemType code '" + codeString + "'");
}
public Enumeration fromType(PrimitiveType> code) throws FHIRException {
if (code == null)
return null;
if (code.isEmpty())
return new Enumeration(this, NamingSystemType.NULL, code);
String codeString = code.asStringValue();
if (codeString == null || "".equals(codeString))
return new Enumeration(this, NamingSystemType.NULL, code);
if ("codesystem".equals(codeString))
return new Enumeration(this, NamingSystemType.CODESYSTEM, code);
if ("identifier".equals(codeString))
return new Enumeration(this, NamingSystemType.IDENTIFIER, code);
if ("root".equals(codeString))
return new Enumeration(this, NamingSystemType.ROOT, code);
throw new FHIRException("Unknown NamingSystemType code '" + codeString + "'");
}
public String toCode(NamingSystemType code) {
if (code == NamingSystemType.NULL)
return null;
if (code == NamingSystemType.CODESYSTEM)
return "codesystem";
if (code == NamingSystemType.IDENTIFIER)
return "identifier";
if (code == NamingSystemType.ROOT)
return "root";
return "?";
}
public String toSystem(NamingSystemType code) {
return code.getSystem();
}
}
@Block()
public static class NamingSystemUniqueIdComponent extends BackboneElement implements IBaseBackboneElement {
/**
* Identifies the unique identifier scheme used for this particular identifier.
*/
@Child(name = "type", type = { CodeType.class }, order = 1, min = 1, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "oid | uuid | uri | other", formalDefinition = "Identifies the unique identifier scheme used for this particular identifier.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/namingsystem-identifier-type")
protected Enumeration type;
/**
* The string that should be sent over the wire to identify the code system or
* identifier system.
*/
@Child(name = "value", type = { StringType.class }, order = 2, min = 1, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "The unique identifier", formalDefinition = "The string that should be sent over the wire to identify the code system or identifier system.")
protected StringType value;
/**
* Indicates whether this identifier is the "preferred" identifier of this type.
*/
@Child(name = "preferred", type = {
BooleanType.class }, order = 3, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "Is this the id that should be used for this type", formalDefinition = "Indicates whether this identifier is the \"preferred\" identifier of this type.")
protected BooleanType preferred;
/**
* Notes about the past or intended usage of this identifier.
*/
@Child(name = "comment", type = {
StringType.class }, order = 4, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "Notes about identifier usage", formalDefinition = "Notes about the past or intended usage of this identifier.")
protected StringType comment;
/**
* Identifies the period of time over which this identifier is considered
* appropriate to refer to the naming system. Outside of this window, the
* identifier might be non-deterministic.
*/
@Child(name = "period", type = { Period.class }, order = 5, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "When is identifier valid?", formalDefinition = "Identifies the period of time over which this identifier is considered appropriate to refer to the naming system. Outside of this window, the identifier might be non-deterministic.")
protected Period period;
private static final long serialVersionUID = -1458889328L;
/**
* Constructor
*/
public NamingSystemUniqueIdComponent() {
super();
}
/**
* Constructor
*/
public NamingSystemUniqueIdComponent(NamingSystemIdentifierType type, String value) {
super();
this.setType(type);
this.setValue(value);
}
/**
* @return {@link #type} (Identifies the unique identifier scheme used for this
* particular identifier.). This is the underlying object with id, value
* and extensions. The accessor "getType" gives direct access to the
* value
*/
public Enumeration getTypeElement() {
if (this.type == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystemUniqueIdComponent.type");
else if (Configuration.doAutoCreate())
this.type = new Enumeration(new NamingSystemIdentifierTypeEnumFactory()); // bb
return this.type;
}
public boolean hasTypeElement() {
return this.type != null && !this.type.isEmpty();
}
public boolean hasType() {
return this.type != null && !this.type.isEmpty();
}
/**
* @param value {@link #type} (Identifies the unique identifier scheme used for
* this particular identifier.). This is the underlying object with
* id, value and extensions. The accessor "getType" gives direct
* access to the value
*/
public NamingSystemUniqueIdComponent setTypeElement(Enumeration value) {
this.type = value;
return this;
}
/**
* @return Identifies the unique identifier scheme used for this particular
* identifier.
*/
public NamingSystemIdentifierType getType() {
return this.type == null ? null : this.type.getValue();
}
/**
* @param value Identifies the unique identifier scheme used for this particular
* identifier.
*/
public NamingSystemUniqueIdComponent setType(NamingSystemIdentifierType value) {
if (this.type == null)
this.type = new Enumeration(new NamingSystemIdentifierTypeEnumFactory());
this.type.setValue(value);
return this;
}
/**
* @return {@link #value} (The string that should be sent over the wire to
* identify the code system or identifier system.). This is the
* underlying object with id, value and extensions. The accessor
* "getValue" gives direct access to the value
*/
public StringType getValueElement() {
if (this.value == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystemUniqueIdComponent.value");
else if (Configuration.doAutoCreate())
this.value = new StringType(); // bb
return this.value;
}
public boolean hasValueElement() {
return this.value != null && !this.value.isEmpty();
}
public boolean hasValue() {
return this.value != null && !this.value.isEmpty();
}
/**
* @param value {@link #value} (The string that should be sent over the wire to
* identify the code system or identifier system.). This is the
* underlying object with id, value and extensions. The accessor
* "getValue" gives direct access to the value
*/
public NamingSystemUniqueIdComponent setValueElement(StringType value) {
this.value = value;
return this;
}
/**
* @return The string that should be sent over the wire to identify the code
* system or identifier system.
*/
public String getValue() {
return this.value == null ? null : this.value.getValue();
}
/**
* @param value The string that should be sent over the wire to identify the
* code system or identifier system.
*/
public NamingSystemUniqueIdComponent setValue(String value) {
if (this.value == null)
this.value = new StringType();
this.value.setValue(value);
return this;
}
/**
* @return {@link #preferred} (Indicates whether this identifier is the
* "preferred" identifier of this type.). This is the underlying object
* with id, value and extensions. The accessor "getPreferred" gives
* direct access to the value
*/
public BooleanType getPreferredElement() {
if (this.preferred == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystemUniqueIdComponent.preferred");
else if (Configuration.doAutoCreate())
this.preferred = new BooleanType(); // bb
return this.preferred;
}
public boolean hasPreferredElement() {
return this.preferred != null && !this.preferred.isEmpty();
}
public boolean hasPreferred() {
return this.preferred != null && !this.preferred.isEmpty();
}
/**
* @param value {@link #preferred} (Indicates whether this identifier is the
* "preferred" identifier of this type.). This is the underlying
* object with id, value and extensions. The accessor
* "getPreferred" gives direct access to the value
*/
public NamingSystemUniqueIdComponent setPreferredElement(BooleanType value) {
this.preferred = value;
return this;
}
/**
* @return Indicates whether this identifier is the "preferred" identifier of
* this type.
*/
public boolean getPreferred() {
return this.preferred == null || this.preferred.isEmpty() ? false : this.preferred.getValue();
}
/**
* @param value Indicates whether this identifier is the "preferred" identifier
* of this type.
*/
public NamingSystemUniqueIdComponent setPreferred(boolean value) {
if (this.preferred == null)
this.preferred = new BooleanType();
this.preferred.setValue(value);
return this;
}
/**
* @return {@link #comment} (Notes about the past or intended usage of this
* identifier.). This is the underlying object with id, value and
* extensions. The accessor "getComment" gives direct access to the
* value
*/
public StringType getCommentElement() {
if (this.comment == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystemUniqueIdComponent.comment");
else if (Configuration.doAutoCreate())
this.comment = new StringType(); // bb
return this.comment;
}
public boolean hasCommentElement() {
return this.comment != null && !this.comment.isEmpty();
}
public boolean hasComment() {
return this.comment != null && !this.comment.isEmpty();
}
/**
* @param value {@link #comment} (Notes about the past or intended usage of this
* identifier.). This is the underlying object with id, value and
* extensions. The accessor "getComment" gives direct access to the
* value
*/
public NamingSystemUniqueIdComponent setCommentElement(StringType value) {
this.comment = value;
return this;
}
/**
* @return Notes about the past or intended usage of this identifier.
*/
public String getComment() {
return this.comment == null ? null : this.comment.getValue();
}
/**
* @param value Notes about the past or intended usage of this identifier.
*/
public NamingSystemUniqueIdComponent setComment(String value) {
if (Utilities.noString(value))
this.comment = null;
else {
if (this.comment == null)
this.comment = new StringType();
this.comment.setValue(value);
}
return this;
}
/**
* @return {@link #period} (Identifies the period of time over which this
* identifier is considered appropriate to refer to the naming system.
* Outside of this window, the identifier might be non-deterministic.)
*/
public Period getPeriod() {
if (this.period == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystemUniqueIdComponent.period");
else if (Configuration.doAutoCreate())
this.period = new Period(); // cc
return this.period;
}
public boolean hasPeriod() {
return this.period != null && !this.period.isEmpty();
}
/**
* @param value {@link #period} (Identifies the period of time over which this
* identifier is considered appropriate to refer to the naming
* system. Outside of this window, the identifier might be
* non-deterministic.)
*/
public NamingSystemUniqueIdComponent setPeriod(Period value) {
this.period = value;
return this;
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("type", "code",
"Identifies the unique identifier scheme used for this particular identifier.", 0, 1, type));
children.add(new Property("value", "string",
"The string that should be sent over the wire to identify the code system or identifier system.", 0, 1,
value));
children.add(new Property("preferred", "boolean",
"Indicates whether this identifier is the \"preferred\" identifier of this type.", 0, 1, preferred));
children.add(new Property("comment", "string", "Notes about the past or intended usage of this identifier.", 0, 1,
comment));
children.add(new Property("period", "Period",
"Identifies the period of time over which this identifier is considered appropriate to refer to the naming system. Outside of this window, the identifier might be non-deterministic.",
0, 1, period));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3575610:
/* type */ return new Property("type", "code",
"Identifies the unique identifier scheme used for this particular identifier.", 0, 1, type);
case 111972721:
/* value */ return new Property("value", "string",
"The string that should be sent over the wire to identify the code system or identifier system.", 0, 1,
value);
case -1294005119:
/* preferred */ return new Property("preferred", "boolean",
"Indicates whether this identifier is the \"preferred\" identifier of this type.", 0, 1, preferred);
case 950398559:
/* comment */ return new Property("comment", "string",
"Notes about the past or intended usage of this identifier.", 0, 1, comment);
case -991726143:
/* period */ return new Property("period", "Period",
"Identifies the period of time over which this identifier is considered appropriate to refer to the naming system. Outside of this window, the identifier might be non-deterministic.",
0, 1, period);
default:
return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3575610:
/* type */ return this.type == null ? new Base[0] : new Base[] { this.type }; // Enumeration
case 111972721:
/* value */ return this.value == null ? new Base[0] : new Base[] { this.value }; // StringType
case -1294005119:
/* preferred */ return this.preferred == null ? new Base[0] : new Base[] { this.preferred }; // BooleanType
case 950398559:
/* comment */ return this.comment == null ? new Base[0] : new Base[] { this.comment }; // StringType
case -991726143:
/* period */ return this.period == null ? new Base[0] : new Base[] { this.period }; // Period
default:
return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3575610: // type
value = new NamingSystemIdentifierTypeEnumFactory().fromType(TypeConvertor.castToCode(value));
this.type = (Enumeration) value; // Enumeration
return value;
case 111972721: // value
this.value = TypeConvertor.castToString(value); // StringType
return value;
case -1294005119: // preferred
this.preferred = TypeConvertor.castToBoolean(value); // BooleanType
return value;
case 950398559: // comment
this.comment = TypeConvertor.castToString(value); // StringType
return value;
case -991726143: // period
this.period = TypeConvertor.castToPeriod(value); // Period
return value;
default:
return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("type")) {
value = new NamingSystemIdentifierTypeEnumFactory().fromType(TypeConvertor.castToCode(value));
this.type = (Enumeration) value; // Enumeration
} else if (name.equals("value")) {
this.value = TypeConvertor.castToString(value); // StringType
} else if (name.equals("preferred")) {
this.preferred = TypeConvertor.castToBoolean(value); // BooleanType
} else if (name.equals("comment")) {
this.comment = TypeConvertor.castToString(value); // StringType
} else if (name.equals("period")) {
this.period = TypeConvertor.castToPeriod(value); // Period
} else
return super.setProperty(name, value);
return value;
}
@Override
public void removeChild(String name, Base value) throws FHIRException {
if (name.equals("type")) {
this.type = null;
} else if (name.equals("value")) {
this.value = null;
} else if (name.equals("preferred")) {
this.preferred = null;
} else if (name.equals("comment")) {
this.comment = null;
} else if (name.equals("period")) {
this.period = null;
} else
super.removeChild(name, value);
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3575610:
return getTypeElement();
case 111972721:
return getValueElement();
case -1294005119:
return getPreferredElement();
case 950398559:
return getCommentElement();
case -991726143:
return getPeriod();
default:
return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3575610:
/* type */ return new String[] { "code" };
case 111972721:
/* value */ return new String[] { "string" };
case -1294005119:
/* preferred */ return new String[] { "boolean" };
case 950398559:
/* comment */ return new String[] { "string" };
case -991726143:
/* period */ return new String[] { "Period" };
default:
return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("type")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.uniqueId.type");
} else if (name.equals("value")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.uniqueId.value");
} else if (name.equals("preferred")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.uniqueId.preferred");
} else if (name.equals("comment")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.uniqueId.comment");
} else if (name.equals("period")) {
this.period = new Period();
return this.period;
} else
return super.addChild(name);
}
public NamingSystemUniqueIdComponent copy() {
NamingSystemUniqueIdComponent dst = new NamingSystemUniqueIdComponent();
copyValues(dst);
return dst;
}
public void copyValues(NamingSystemUniqueIdComponent dst) {
super.copyValues(dst);
dst.type = type == null ? null : type.copy();
dst.value = value == null ? null : value.copy();
dst.preferred = preferred == null ? null : preferred.copy();
dst.comment = comment == null ? null : comment.copy();
dst.period = period == null ? null : period.copy();
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof NamingSystemUniqueIdComponent))
return false;
NamingSystemUniqueIdComponent o = (NamingSystemUniqueIdComponent) other_;
return compareDeep(type, o.type, true) && compareDeep(value, o.value, true)
&& compareDeep(preferred, o.preferred, true) && compareDeep(comment, o.comment, true)
&& compareDeep(period, o.period, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof NamingSystemUniqueIdComponent))
return false;
NamingSystemUniqueIdComponent o = (NamingSystemUniqueIdComponent) other_;
return compareValues(type, o.type, true) && compareValues(value, o.value, true)
&& compareValues(preferred, o.preferred, true) && compareValues(comment, o.comment, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(type, value, preferred, comment, period);
}
public String fhirType() {
return "NamingSystem.uniqueId";
}
}
/**
* A natural language name identifying the naming system. This name should be
* usable as an identifier for the module by machine processing applications
* such as code generation.
*/
@Child(name = "name", type = { StringType.class }, order = 0, min = 1, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Name for this naming system (computer friendly)", formalDefinition = "A natural language name identifying the naming system. This name should be usable as an identifier for the module by machine processing applications such as code generation.")
protected StringType name;
/**
* The status of this naming system. Enables tracking the life-cycle of the
* content.
*/
@Child(name = "status", type = { CodeType.class }, order = 1, min = 1, max = 1, modifier = true, summary = true)
@Description(shortDefinition = "draft | active | retired | unknown", formalDefinition = "The status of this naming system. Enables tracking the life-cycle of the content.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/publication-status")
protected Enumeration status;
/**
* Indicates the purpose for the naming system - what kinds of things does it
* make unique?
*/
@Child(name = "kind", type = { CodeType.class }, order = 2, min = 1, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "codesystem | identifier | root", formalDefinition = "Indicates the purpose for the naming system - what kinds of things does it make unique?")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/namingsystem-type")
protected Enumeration kind;
/**
* The date (and optionally time) when the naming system was published. The date
* must change when the business version changes and it must change if the
* status code changes. In addition, it should change when the substantive
* content of the naming system changes.
*/
@Child(name = "date", type = { DateTimeType.class }, order = 3, min = 1, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Date last changed", formalDefinition = "The date (and optionally time) when the naming system was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the naming system changes.")
protected DateTimeType date;
/**
* The name of the organization or individual that published the naming system.
*/
@Child(name = "publisher", type = { StringType.class }, order = 4, min = 0, max = 1, modifier = false, summary = true)
@Description(shortDefinition = "Name of the publisher (organization or individual)", formalDefinition = "The name of the organization or individual that published the naming system.")
protected StringType publisher;
/**
* Contact details to assist a user in finding and communicating with the
* publisher.
*/
@Child(name = "contact", type = {
ContactDetail.class }, order = 5, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "Contact details for the publisher", formalDefinition = "Contact details to assist a user in finding and communicating with the publisher.")
protected List contact;
/**
* The name of the organization that is responsible for issuing identifiers or
* codes for this namespace and ensuring their non-collision.
*/
@Child(name = "responsible", type = {
StringType.class }, order = 6, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "Who maintains system namespace?", formalDefinition = "The name of the organization that is responsible for issuing identifiers or codes for this namespace and ensuring their non-collision.")
protected StringType responsible;
/**
* Categorizes a naming system for easier search by grouping related naming
* systems.
*/
@Child(name = "type", type = {
CodeableConcept.class }, order = 7, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "e.g. driver, provider, patient, bank etc.", formalDefinition = "Categorizes a naming system for easier search by grouping related naming systems.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/identifier-type")
protected CodeableConcept type;
/**
* A free text natural language description of the naming system from a
* consumer's perspective. Details about what the namespace identifies including
* scope, granularity, version labeling, etc.
*/
@Child(name = "description", type = {
MarkdownType.class }, order = 8, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "Natural language description of the naming system", formalDefinition = "A free text natural language description of the naming system from a consumer's perspective. Details about what the namespace identifies including scope, granularity, version labeling, etc.")
protected MarkdownType description;
/**
* The content was developed with a focus and intent of supporting the contexts
* that are listed. These contexts may be general categories (gender, age, ...)
* or may be references to specific programs (insurance plans, studies, ...) and
* may be used to assist with indexing and searching for appropriate naming
* system instances.
*/
@Child(name = "useContext", type = {
UsageContext.class }, order = 9, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "The context that the content is intended to support", formalDefinition = "The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate naming system instances.")
protected List useContext;
/**
* A legal or geographic region in which the naming system is intended to be
* used.
*/
@Child(name = "jurisdiction", type = {
CodeableConcept.class }, order = 10, min = 0, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "Intended jurisdiction for naming system (if applicable)", formalDefinition = "A legal or geographic region in which the naming system is intended to be used.")
@ca.uhn.fhir.model.api.annotation.Binding(valueSet = "http://hl7.org/fhir/ValueSet/jurisdiction")
protected List jurisdiction;
/**
* Provides guidance on the use of the namespace, including the handling of
* formatting characters, use of upper vs. lower case, etc.
*/
@Child(name = "usage", type = { StringType.class }, order = 11, min = 0, max = 1, modifier = false, summary = false)
@Description(shortDefinition = "How/where is it used", formalDefinition = "Provides guidance on the use of the namespace, including the handling of formatting characters, use of upper vs. lower case, etc.")
protected StringType usage;
/**
* Indicates how the system may be identified when referenced in electronic
* exchange.
*/
@Child(name = "uniqueId", type = {}, order = 12, min = 1, max = Child.MAX_UNLIMITED, modifier = false, summary = true)
@Description(shortDefinition = "Unique identifiers used for system", formalDefinition = "Indicates how the system may be identified when referenced in electronic exchange.")
protected List uniqueId;
private static final long serialVersionUID = -1506381265L;
/**
* Constructor
*/
public NamingSystem() {
super();
}
/**
* Constructor
*/
public NamingSystem(String name, PublicationStatus status, NamingSystemType kind, Date date,
NamingSystemUniqueIdComponent uniqueId) {
super();
this.setName(name);
this.setStatus(status);
this.setKind(kind);
this.setDate(date);
this.addUniqueId(uniqueId);
}
/**
* @return {@link #name} (A natural language name identifying the naming system.
* This name should be usable as an identifier for the module by machine
* processing applications such as code generation.). This is the
* underlying object with id, value and extensions. The accessor
* "getName" gives direct access to the value
*/
public StringType getNameElement() {
if (this.name == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.name");
else if (Configuration.doAutoCreate())
this.name = new StringType(); // bb
return this.name;
}
public boolean hasNameElement() {
return this.name != null && !this.name.isEmpty();
}
public boolean hasName() {
return this.name != null && !this.name.isEmpty();
}
/**
* @param value {@link #name} (A natural language name identifying the naming
* system. This name should be usable as an identifier for the
* module by machine processing applications such as code
* generation.). This is the underlying object with id, value and
* extensions. The accessor "getName" gives direct access to the
* value
*/
public NamingSystem setNameElement(StringType value) {
this.name = value;
return this;
}
/**
* @return A natural language name identifying the naming system. This name
* should be usable as an identifier for the module by machine
* processing applications such as code generation.
*/
public String getName() {
return this.name == null ? null : this.name.getValue();
}
/**
* @param value A natural language name identifying the naming system. This name
* should be usable as an identifier for the module by machine
* processing applications such as code generation.
*/
public NamingSystem setName(String value) {
if (this.name == null)
this.name = new StringType();
this.name.setValue(value);
return this;
}
/**
* @return {@link #status} (The status of this naming system. Enables tracking
* the life-cycle of the content.). This is the underlying object with
* id, value and extensions. The accessor "getStatus" gives direct
* access to the value
*/
public Enumeration getStatusElement() {
if (this.status == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.status");
else if (Configuration.doAutoCreate())
this.status = new Enumeration(new PublicationStatusEnumFactory()); // bb
return this.status;
}
public boolean hasStatusElement() {
return this.status != null && !this.status.isEmpty();
}
public boolean hasStatus() {
return this.status != null && !this.status.isEmpty();
}
/**
* @param value {@link #status} (The status of this naming system. Enables
* tracking the life-cycle of the content.). This is the underlying
* object with id, value and extensions. The accessor "getStatus"
* gives direct access to the value
*/
public NamingSystem setStatusElement(Enumeration value) {
this.status = value;
return this;
}
/**
* @return The status of this naming system. Enables tracking the life-cycle of
* the content.
*/
public PublicationStatus getStatus() {
return this.status == null ? null : this.status.getValue();
}
/**
* @param value The status of this naming system. Enables tracking the
* life-cycle of the content.
*/
public NamingSystem setStatus(PublicationStatus value) {
if (this.status == null)
this.status = new Enumeration(new PublicationStatusEnumFactory());
this.status.setValue(value);
return this;
}
/**
* @return {@link #kind} (Indicates the purpose for the naming system - what
* kinds of things does it make unique?). This is the underlying object
* with id, value and extensions. The accessor "getKind" gives direct
* access to the value
*/
public Enumeration getKindElement() {
if (this.kind == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.kind");
else if (Configuration.doAutoCreate())
this.kind = new Enumeration(new NamingSystemTypeEnumFactory()); // bb
return this.kind;
}
public boolean hasKindElement() {
return this.kind != null && !this.kind.isEmpty();
}
public boolean hasKind() {
return this.kind != null && !this.kind.isEmpty();
}
/**
* @param value {@link #kind} (Indicates the purpose for the naming system -
* what kinds of things does it make unique?). This is the
* underlying object with id, value and extensions. The accessor
* "getKind" gives direct access to the value
*/
public NamingSystem setKindElement(Enumeration value) {
this.kind = value;
return this;
}
/**
* @return Indicates the purpose for the naming system - what kinds of things
* does it make unique?
*/
public NamingSystemType getKind() {
return this.kind == null ? null : this.kind.getValue();
}
/**
* @param value Indicates the purpose for the naming system - what kinds of
* things does it make unique?
*/
public NamingSystem setKind(NamingSystemType value) {
if (this.kind == null)
this.kind = new Enumeration(new NamingSystemTypeEnumFactory());
this.kind.setValue(value);
return this;
}
/**
* @return {@link #date} (The date (and optionally time) when the naming system
* was published. The date must change when the business version changes
* and it must change if the status code changes. In addition, it should
* change when the substantive content of the naming system changes.).
* This is the underlying object with id, value and extensions. The
* accessor "getDate" gives direct access to the value
*/
public DateTimeType getDateElement() {
if (this.date == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.date");
else if (Configuration.doAutoCreate())
this.date = new DateTimeType(); // bb
return this.date;
}
public boolean hasDateElement() {
return this.date != null && !this.date.isEmpty();
}
public boolean hasDate() {
return this.date != null && !this.date.isEmpty();
}
/**
* @param value {@link #date} (The date (and optionally time) when the naming
* system was published. The date must change when the business
* version changes and it must change if the status code changes.
* In addition, it should change when the substantive content of
* the naming system changes.). This is the underlying object with
* id, value and extensions. The accessor "getDate" gives direct
* access to the value
*/
public NamingSystem setDateElement(DateTimeType value) {
this.date = value;
return this;
}
/**
* @return The date (and optionally time) when the naming system was published.
* The date must change when the business version changes and it must
* change if the status code changes. In addition, it should change when
* the substantive content of the naming system changes.
*/
public Date getDate() {
return this.date == null ? null : this.date.getValue();
}
/**
* @param value The date (and optionally time) when the naming system was
* published. The date must change when the business version
* changes and it must change if the status code changes. In
* addition, it should change when the substantive content of the
* naming system changes.
*/
public NamingSystem setDate(Date value) {
if (this.date == null)
this.date = new DateTimeType();
this.date.setValue(value);
return this;
}
/**
* @return {@link #publisher} (The name of the organization or individual that
* published the naming system.). This is the underlying object with id,
* value and extensions. The accessor "getPublisher" gives direct access
* to the value
*/
public StringType getPublisherElement() {
if (this.publisher == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.publisher");
else if (Configuration.doAutoCreate())
this.publisher = new StringType(); // bb
return this.publisher;
}
public boolean hasPublisherElement() {
return this.publisher != null && !this.publisher.isEmpty();
}
public boolean hasPublisher() {
return this.publisher != null && !this.publisher.isEmpty();
}
/**
* @param value {@link #publisher} (The name of the organization or individual
* that published the naming system.). This is the underlying
* object with id, value and extensions. The accessor
* "getPublisher" gives direct access to the value
*/
public NamingSystem setPublisherElement(StringType value) {
this.publisher = value;
return this;
}
/**
* @return The name of the organization or individual that published the naming
* system.
*/
public String getPublisher() {
return this.publisher == null ? null : this.publisher.getValue();
}
/**
* @param value The name of the organization or individual that published the
* naming system.
*/
public NamingSystem setPublisher(String value) {
if (Utilities.noString(value))
this.publisher = null;
else {
if (this.publisher == null)
this.publisher = new StringType();
this.publisher.setValue(value);
}
return this;
}
/**
* @return {@link #contact} (Contact details to assist a user in finding and
* communicating with the publisher.)
*/
public List getContact() {
if (this.contact == null)
this.contact = new ArrayList();
return this.contact;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public NamingSystem setContact(List theContact) {
this.contact = theContact;
return this;
}
public boolean hasContact() {
if (this.contact == null)
return false;
for (ContactDetail item : this.contact)
if (!item.isEmpty())
return true;
return false;
}
public ContactDetail addContact() { // 3
ContactDetail t = new ContactDetail();
if (this.contact == null)
this.contact = new ArrayList();
this.contact.add(t);
return t;
}
public NamingSystem addContact(ContactDetail t) { // 3
if (t == null)
return this;
if (this.contact == null)
this.contact = new ArrayList();
this.contact.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #contact}, creating it
* if it does not already exist {3}
*/
public ContactDetail getContactFirstRep() {
if (getContact().isEmpty()) {
addContact();
}
return getContact().get(0);
}
/**
* @return {@link #responsible} (The name of the organization that is
* responsible for issuing identifiers or codes for this namespace and
* ensuring their non-collision.). This is the underlying object with
* id, value and extensions. The accessor "getResponsible" gives direct
* access to the value
*/
public StringType getResponsibleElement() {
if (this.responsible == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.responsible");
else if (Configuration.doAutoCreate())
this.responsible = new StringType(); // bb
return this.responsible;
}
public boolean hasResponsibleElement() {
return this.responsible != null && !this.responsible.isEmpty();
}
public boolean hasResponsible() {
return this.responsible != null && !this.responsible.isEmpty();
}
/**
* @param value {@link #responsible} (The name of the organization that is
* responsible for issuing identifiers or codes for this namespace
* and ensuring their non-collision.). This is the underlying
* object with id, value and extensions. The accessor
* "getResponsible" gives direct access to the value
*/
public NamingSystem setResponsibleElement(StringType value) {
this.responsible = value;
return this;
}
/**
* @return The name of the organization that is responsible for issuing
* identifiers or codes for this namespace and ensuring their
* non-collision.
*/
public String getResponsible() {
return this.responsible == null ? null : this.responsible.getValue();
}
/**
* @param value The name of the organization that is responsible for issuing
* identifiers or codes for this namespace and ensuring their
* non-collision.
*/
public NamingSystem setResponsible(String value) {
if (Utilities.noString(value))
this.responsible = null;
else {
if (this.responsible == null)
this.responsible = new StringType();
this.responsible.setValue(value);
}
return this;
}
/**
* @return {@link #type} (Categorizes a naming system for easier search by
* grouping related naming systems.)
*/
public CodeableConcept getType() {
if (this.type == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.type");
else if (Configuration.doAutoCreate())
this.type = new CodeableConcept(); // cc
return this.type;
}
public boolean hasType() {
return this.type != null && !this.type.isEmpty();
}
/**
* @param value {@link #type} (Categorizes a naming system for easier search by
* grouping related naming systems.)
*/
public NamingSystem setType(CodeableConcept value) {
this.type = value;
return this;
}
/**
* @return {@link #description} (A free text natural language description of the
* naming system from a consumer's perspective. Details about what the
* namespace identifies including scope, granularity, version labeling,
* etc.). This is the underlying object with id, value and extensions.
* The accessor "getDescription" gives direct access to the value
*/
public MarkdownType getDescriptionElement() {
if (this.description == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.description");
else if (Configuration.doAutoCreate())
this.description = new MarkdownType(); // bb
return this.description;
}
public boolean hasDescriptionElement() {
return this.description != null && !this.description.isEmpty();
}
public boolean hasDescription() {
return this.description != null && !this.description.isEmpty();
}
/**
* @param value {@link #description} (A free text natural language description
* of the naming system from a consumer's perspective. Details
* about what the namespace identifies including scope,
* granularity, version labeling, etc.). This is the underlying
* object with id, value and extensions. The accessor
* "getDescription" gives direct access to the value
*/
public NamingSystem setDescriptionElement(MarkdownType value) {
this.description = value;
return this;
}
/**
* @return A free text natural language description of the naming system from a
* consumer's perspective. Details about what the namespace identifies
* including scope, granularity, version labeling, etc.
*/
public String getDescription() {
return this.description == null ? null : this.description.getValue();
}
/**
* @param value A free text natural language description of the naming system
* from a consumer's perspective. Details about what the namespace
* identifies including scope, granularity, version labeling, etc.
*/
public NamingSystem setDescription(String value) {
if (value == null)
this.description = null;
else {
if (this.description == null)
this.description = new MarkdownType();
this.description.setValue(value);
}
return this;
}
/**
* @return {@link #useContext} (The content was developed with a focus and
* intent of supporting the contexts that are listed. These contexts may
* be general categories (gender, age, ...) or may be references to
* specific programs (insurance plans, studies, ...) and may be used to
* assist with indexing and searching for appropriate naming system
* instances.)
*/
public List getUseContext() {
if (this.useContext == null)
this.useContext = new ArrayList();
return this.useContext;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public NamingSystem setUseContext(List theUseContext) {
this.useContext = theUseContext;
return this;
}
public boolean hasUseContext() {
if (this.useContext == null)
return false;
for (UsageContext item : this.useContext)
if (!item.isEmpty())
return true;
return false;
}
public UsageContext addUseContext() { // 3
UsageContext t = new UsageContext();
if (this.useContext == null)
this.useContext = new ArrayList();
this.useContext.add(t);
return t;
}
public NamingSystem addUseContext(UsageContext t) { // 3
if (t == null)
return this;
if (this.useContext == null)
this.useContext = new ArrayList();
this.useContext.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #useContext}, creating
* it if it does not already exist {3}
*/
public UsageContext getUseContextFirstRep() {
if (getUseContext().isEmpty()) {
addUseContext();
}
return getUseContext().get(0);
}
/**
* @return {@link #jurisdiction} (A legal or geographic region in which the
* naming system is intended to be used.)
*/
public List getJurisdiction() {
if (this.jurisdiction == null)
this.jurisdiction = new ArrayList();
return this.jurisdiction;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public NamingSystem setJurisdiction(List theJurisdiction) {
this.jurisdiction = theJurisdiction;
return this;
}
public boolean hasJurisdiction() {
if (this.jurisdiction == null)
return false;
for (CodeableConcept item : this.jurisdiction)
if (!item.isEmpty())
return true;
return false;
}
public CodeableConcept addJurisdiction() { // 3
CodeableConcept t = new CodeableConcept();
if (this.jurisdiction == null)
this.jurisdiction = new ArrayList();
this.jurisdiction.add(t);
return t;
}
public NamingSystem addJurisdiction(CodeableConcept t) { // 3
if (t == null)
return this;
if (this.jurisdiction == null)
this.jurisdiction = new ArrayList();
this.jurisdiction.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #jurisdiction},
* creating it if it does not already exist {3}
*/
public CodeableConcept getJurisdictionFirstRep() {
if (getJurisdiction().isEmpty()) {
addJurisdiction();
}
return getJurisdiction().get(0);
}
/**
* @return {@link #usage} (Provides guidance on the use of the namespace,
* including the handling of formatting characters, use of upper vs.
* lower case, etc.). This is the underlying object with id, value and
* extensions. The accessor "getUsage" gives direct access to the value
*/
public StringType getUsageElement() {
if (this.usage == null)
if (Configuration.errorOnAutoCreate())
throw new Error("Attempt to auto-create NamingSystem.usage");
else if (Configuration.doAutoCreate())
this.usage = new StringType(); // bb
return this.usage;
}
public boolean hasUsageElement() {
return this.usage != null && !this.usage.isEmpty();
}
public boolean hasUsage() {
return this.usage != null && !this.usage.isEmpty();
}
/**
* @param value {@link #usage} (Provides guidance on the use of the namespace,
* including the handling of formatting characters, use of upper
* vs. lower case, etc.). This is the underlying object with id,
* value and extensions. The accessor "getUsage" gives direct
* access to the value
*/
public NamingSystem setUsageElement(StringType value) {
this.usage = value;
return this;
}
/**
* @return Provides guidance on the use of the namespace, including the handling
* of formatting characters, use of upper vs. lower case, etc.
*/
public String getUsage() {
return this.usage == null ? null : this.usage.getValue();
}
/**
* @param value Provides guidance on the use of the namespace, including the
* handling of formatting characters, use of upper vs. lower case,
* etc.
*/
public NamingSystem setUsage(String value) {
if (Utilities.noString(value))
this.usage = null;
else {
if (this.usage == null)
this.usage = new StringType();
this.usage.setValue(value);
}
return this;
}
/**
* @return {@link #uniqueId} (Indicates how the system may be identified when
* referenced in electronic exchange.)
*/
public List getUniqueId() {
if (this.uniqueId == null)
this.uniqueId = new ArrayList();
return this.uniqueId;
}
/**
* @return Returns a reference to this
for easy method chaining
*/
public NamingSystem setUniqueId(List theUniqueId) {
this.uniqueId = theUniqueId;
return this;
}
public boolean hasUniqueId() {
if (this.uniqueId == null)
return false;
for (NamingSystemUniqueIdComponent item : this.uniqueId)
if (!item.isEmpty())
return true;
return false;
}
public NamingSystemUniqueIdComponent addUniqueId() { // 3
NamingSystemUniqueIdComponent t = new NamingSystemUniqueIdComponent();
if (this.uniqueId == null)
this.uniqueId = new ArrayList();
this.uniqueId.add(t);
return t;
}
public NamingSystem addUniqueId(NamingSystemUniqueIdComponent t) { // 3
if (t == null)
return this;
if (this.uniqueId == null)
this.uniqueId = new ArrayList();
this.uniqueId.add(t);
return this;
}
/**
* @return The first repetition of repeating field {@link #uniqueId}, creating
* it if it does not already exist {3}
*/
public NamingSystemUniqueIdComponent getUniqueIdFirstRep() {
if (getUniqueId().isEmpty()) {
addUniqueId();
}
return getUniqueId().get(0);
}
protected void listChildren(List children) {
super.listChildren(children);
children.add(new Property("name", "string",
"A natural language name identifying the naming system. This name should be usable as an identifier for the module by machine processing applications such as code generation.",
0, 1, name));
children.add(new Property("status", "code",
"The status of this naming system. Enables tracking the life-cycle of the content.", 0, 1, status));
children.add(new Property("kind", "code",
"Indicates the purpose for the naming system - what kinds of things does it make unique?", 0, 1, kind));
children.add(new Property("date", "dateTime",
"The date (and optionally time) when the naming system was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the naming system changes.",
0, 1, date));
children.add(new Property("publisher", "string",
"The name of the organization or individual that published the naming system.", 0, 1, publisher));
children.add(new Property("contact", "ContactDetail",
"Contact details to assist a user in finding and communicating with the publisher.", 0,
java.lang.Integer.MAX_VALUE, contact));
children.add(new Property("responsible", "string",
"The name of the organization that is responsible for issuing identifiers or codes for this namespace and ensuring their non-collision.",
0, 1, responsible));
children.add(new Property("type", "CodeableConcept",
"Categorizes a naming system for easier search by grouping related naming systems.", 0, 1, type));
children.add(new Property("description", "markdown",
"A free text natural language description of the naming system from a consumer's perspective. Details about what the namespace identifies including scope, granularity, version labeling, etc.",
0, 1, description));
children.add(new Property("useContext", "UsageContext",
"The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate naming system instances.",
0, java.lang.Integer.MAX_VALUE, useContext));
children.add(new Property("jurisdiction", "CodeableConcept",
"A legal or geographic region in which the naming system is intended to be used.", 0,
java.lang.Integer.MAX_VALUE, jurisdiction));
children.add(new Property("usage", "string",
"Provides guidance on the use of the namespace, including the handling of formatting characters, use of upper vs. lower case, etc.",
0, 1, usage));
children.add(new Property("uniqueId", "",
"Indicates how the system may be identified when referenced in electronic exchange.", 0,
java.lang.Integer.MAX_VALUE, uniqueId));
}
@Override
public Property getNamedProperty(int _hash, String _name, boolean _checkValid) throws FHIRException {
switch (_hash) {
case 3373707:
/* name */ return new Property("name", "string",
"A natural language name identifying the naming system. This name should be usable as an identifier for the module by machine processing applications such as code generation.",
0, 1, name);
case -892481550:
/* status */ return new Property("status", "code",
"The status of this naming system. Enables tracking the life-cycle of the content.", 0, 1, status);
case 3292052:
/* kind */ return new Property("kind", "code",
"Indicates the purpose for the naming system - what kinds of things does it make unique?", 0, 1, kind);
case 3076014:
/* date */ return new Property("date", "dateTime",
"The date (and optionally time) when the naming system was published. The date must change when the business version changes and it must change if the status code changes. In addition, it should change when the substantive content of the naming system changes.",
0, 1, date);
case 1447404028:
/* publisher */ return new Property("publisher", "string",
"The name of the organization or individual that published the naming system.", 0, 1, publisher);
case 951526432:
/* contact */ return new Property("contact", "ContactDetail",
"Contact details to assist a user in finding and communicating with the publisher.", 0,
java.lang.Integer.MAX_VALUE, contact);
case 1847674614:
/* responsible */ return new Property("responsible", "string",
"The name of the organization that is responsible for issuing identifiers or codes for this namespace and ensuring their non-collision.",
0, 1, responsible);
case 3575610:
/* type */ return new Property("type", "CodeableConcept",
"Categorizes a naming system for easier search by grouping related naming systems.", 0, 1, type);
case -1724546052:
/* description */ return new Property("description", "markdown",
"A free text natural language description of the naming system from a consumer's perspective. Details about what the namespace identifies including scope, granularity, version labeling, etc.",
0, 1, description);
case -669707736:
/* useContext */ return new Property("useContext", "UsageContext",
"The content was developed with a focus and intent of supporting the contexts that are listed. These contexts may be general categories (gender, age, ...) or may be references to specific programs (insurance plans, studies, ...) and may be used to assist with indexing and searching for appropriate naming system instances.",
0, java.lang.Integer.MAX_VALUE, useContext);
case -507075711:
/* jurisdiction */ return new Property("jurisdiction", "CodeableConcept",
"A legal or geographic region in which the naming system is intended to be used.", 0,
java.lang.Integer.MAX_VALUE, jurisdiction);
case 111574433:
/* usage */ return new Property("usage", "string",
"Provides guidance on the use of the namespace, including the handling of formatting characters, use of upper vs. lower case, etc.",
0, 1, usage);
case -294460212:
/* uniqueId */ return new Property("uniqueId", "",
"Indicates how the system may be identified when referenced in electronic exchange.", 0,
java.lang.Integer.MAX_VALUE, uniqueId);
default:
return super.getNamedProperty(_hash, _name, _checkValid);
}
}
@Override
public Base[] getProperty(int hash, String name, boolean checkValid) throws FHIRException {
switch (hash) {
case 3373707:
/* name */ return this.name == null ? new Base[0] : new Base[] { this.name }; // StringType
case -892481550:
/* status */ return this.status == null ? new Base[0] : new Base[] { this.status }; // Enumeration
case 3292052:
/* kind */ return this.kind == null ? new Base[0] : new Base[] { this.kind }; // Enumeration
case 3076014:
/* date */ return this.date == null ? new Base[0] : new Base[] { this.date }; // DateTimeType
case 1447404028:
/* publisher */ return this.publisher == null ? new Base[0] : new Base[] { this.publisher }; // StringType
case 951526432:
/* contact */ return this.contact == null ? new Base[0] : this.contact.toArray(new Base[this.contact.size()]); // ContactDetail
case 1847674614:
/* responsible */ return this.responsible == null ? new Base[0] : new Base[] { this.responsible }; // StringType
case 3575610:
/* type */ return this.type == null ? new Base[0] : new Base[] { this.type }; // CodeableConcept
case -1724546052:
/* description */ return this.description == null ? new Base[0] : new Base[] { this.description }; // MarkdownType
case -669707736:
/* useContext */ return this.useContext == null ? new Base[0]
: this.useContext.toArray(new Base[this.useContext.size()]); // UsageContext
case -507075711:
/* jurisdiction */ return this.jurisdiction == null ? new Base[0]
: this.jurisdiction.toArray(new Base[this.jurisdiction.size()]); // CodeableConcept
case 111574433:
/* usage */ return this.usage == null ? new Base[0] : new Base[] { this.usage }; // StringType
case -294460212:
/* uniqueId */ return this.uniqueId == null ? new Base[0] : this.uniqueId.toArray(new Base[this.uniqueId.size()]); // NamingSystemUniqueIdComponent
default:
return super.getProperty(hash, name, checkValid);
}
}
@Override
public Base setProperty(int hash, String name, Base value) throws FHIRException {
switch (hash) {
case 3373707: // name
this.name = TypeConvertor.castToString(value); // StringType
return value;
case -892481550: // status
value = new PublicationStatusEnumFactory().fromType(TypeConvertor.castToCode(value));
this.status = (Enumeration) value; // Enumeration
return value;
case 3292052: // kind
value = new NamingSystemTypeEnumFactory().fromType(TypeConvertor.castToCode(value));
this.kind = (Enumeration) value; // Enumeration
return value;
case 3076014: // date
this.date = TypeConvertor.castToDateTime(value); // DateTimeType
return value;
case 1447404028: // publisher
this.publisher = TypeConvertor.castToString(value); // StringType
return value;
case 951526432: // contact
this.getContact().add(TypeConvertor.castToContactDetail(value)); // ContactDetail
return value;
case 1847674614: // responsible
this.responsible = TypeConvertor.castToString(value); // StringType
return value;
case 3575610: // type
this.type = TypeConvertor.castToCodeableConcept(value); // CodeableConcept
return value;
case -1724546052: // description
this.description = TypeConvertor.castToMarkdown(value); // MarkdownType
return value;
case -669707736: // useContext
this.getUseContext().add(TypeConvertor.castToUsageContext(value)); // UsageContext
return value;
case -507075711: // jurisdiction
this.getJurisdiction().add(TypeConvertor.castToCodeableConcept(value)); // CodeableConcept
return value;
case 111574433: // usage
this.usage = TypeConvertor.castToString(value); // StringType
return value;
case -294460212: // uniqueId
this.getUniqueId().add((NamingSystemUniqueIdComponent) value); // NamingSystemUniqueIdComponent
return value;
default:
return super.setProperty(hash, name, value);
}
}
@Override
public Base setProperty(String name, Base value) throws FHIRException {
if (name.equals("name")) {
this.name = TypeConvertor.castToString(value); // StringType
} else if (name.equals("status")) {
value = new PublicationStatusEnumFactory().fromType(TypeConvertor.castToCode(value));
this.status = (Enumeration) value; // Enumeration
} else if (name.equals("kind")) {
value = new NamingSystemTypeEnumFactory().fromType(TypeConvertor.castToCode(value));
this.kind = (Enumeration) value; // Enumeration
} else if (name.equals("date")) {
this.date = TypeConvertor.castToDateTime(value); // DateTimeType
} else if (name.equals("publisher")) {
this.publisher = TypeConvertor.castToString(value); // StringType
} else if (name.equals("contact")) {
this.getContact().add(TypeConvertor.castToContactDetail(value));
} else if (name.equals("responsible")) {
this.responsible = TypeConvertor.castToString(value); // StringType
} else if (name.equals("type")) {
this.type = TypeConvertor.castToCodeableConcept(value); // CodeableConcept
} else if (name.equals("description")) {
this.description = TypeConvertor.castToMarkdown(value); // MarkdownType
} else if (name.equals("useContext")) {
this.getUseContext().add(TypeConvertor.castToUsageContext(value));
} else if (name.equals("jurisdiction")) {
this.getJurisdiction().add(TypeConvertor.castToCodeableConcept(value));
} else if (name.equals("usage")) {
this.usage = TypeConvertor.castToString(value); // StringType
} else if (name.equals("uniqueId")) {
this.getUniqueId().add((NamingSystemUniqueIdComponent) value);
} else
return super.setProperty(name, value);
return value;
}
@Override
public void removeChild(String name, Base value) throws FHIRException {
if (name.equals("name")) {
this.name = null;
} else if (name.equals("status")) {
this.status = null;
} else if (name.equals("kind")) {
this.kind = null;
} else if (name.equals("date")) {
this.date = null;
} else if (name.equals("publisher")) {
this.publisher = null;
} else if (name.equals("contact")) {
this.getContact().remove(value);
} else if (name.equals("responsible")) {
this.responsible = null;
} else if (name.equals("type")) {
this.type = null;
} else if (name.equals("description")) {
this.description = null;
} else if (name.equals("useContext")) {
this.getUseContext().remove(value);
} else if (name.equals("jurisdiction")) {
this.getJurisdiction().remove(value);
} else if (name.equals("usage")) {
this.usage = null;
} else if (name.equals("uniqueId")) {
this.getUniqueId().remove((NamingSystemUniqueIdComponent) value);
} else
super.removeChild(name, value);
}
@Override
public Base makeProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707:
return getNameElement();
case -892481550:
return getStatusElement();
case 3292052:
return getKindElement();
case 3076014:
return getDateElement();
case 1447404028:
return getPublisherElement();
case 951526432:
return addContact();
case 1847674614:
return getResponsibleElement();
case 3575610:
return getType();
case -1724546052:
return getDescriptionElement();
case -669707736:
return addUseContext();
case -507075711:
return addJurisdiction();
case 111574433:
return getUsageElement();
case -294460212:
return addUniqueId();
default:
return super.makeProperty(hash, name);
}
}
@Override
public String[] getTypesForProperty(int hash, String name) throws FHIRException {
switch (hash) {
case 3373707:
/* name */ return new String[] { "string" };
case -892481550:
/* status */ return new String[] { "code" };
case 3292052:
/* kind */ return new String[] { "code" };
case 3076014:
/* date */ return new String[] { "dateTime" };
case 1447404028:
/* publisher */ return new String[] { "string" };
case 951526432:
/* contact */ return new String[] { "ContactDetail" };
case 1847674614:
/* responsible */ return new String[] { "string" };
case 3575610:
/* type */ return new String[] { "CodeableConcept" };
case -1724546052:
/* description */ return new String[] { "markdown" };
case -669707736:
/* useContext */ return new String[] { "UsageContext" };
case -507075711:
/* jurisdiction */ return new String[] { "CodeableConcept" };
case 111574433:
/* usage */ return new String[] { "string" };
case -294460212:
/* uniqueId */ return new String[] {};
default:
return super.getTypesForProperty(hash, name);
}
}
@Override
public Base addChild(String name) throws FHIRException {
if (name.equals("name")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.name");
} else if (name.equals("status")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.status");
} else if (name.equals("kind")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.kind");
} else if (name.equals("date")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.date");
} else if (name.equals("publisher")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.publisher");
} else if (name.equals("contact")) {
return addContact();
} else if (name.equals("responsible")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.responsible");
} else if (name.equals("type")) {
this.type = new CodeableConcept();
return this.type;
} else if (name.equals("description")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.description");
} else if (name.equals("useContext")) {
return addUseContext();
} else if (name.equals("jurisdiction")) {
return addJurisdiction();
} else if (name.equals("usage")) {
throw new FHIRException("Cannot call addChild on a singleton property NamingSystem.usage");
} else if (name.equals("uniqueId")) {
return addUniqueId();
} else
return super.addChild(name);
}
public String fhirType() {
return "NamingSystem";
}
public NamingSystem copy() {
NamingSystem dst = new NamingSystem();
copyValues(dst);
return dst;
}
public void copyValues(NamingSystem dst) {
super.copyValues(dst);
dst.name = name == null ? null : name.copy();
dst.status = status == null ? null : status.copy();
dst.kind = kind == null ? null : kind.copy();
dst.date = date == null ? null : date.copy();
dst.publisher = publisher == null ? null : publisher.copy();
if (contact != null) {
dst.contact = new ArrayList();
for (ContactDetail i : contact)
dst.contact.add(i.copy());
}
;
dst.responsible = responsible == null ? null : responsible.copy();
dst.type = type == null ? null : type.copy();
dst.description = description == null ? null : description.copy();
if (useContext != null) {
dst.useContext = new ArrayList();
for (UsageContext i : useContext)
dst.useContext.add(i.copy());
}
;
if (jurisdiction != null) {
dst.jurisdiction = new ArrayList();
for (CodeableConcept i : jurisdiction)
dst.jurisdiction.add(i.copy());
}
;
dst.usage = usage == null ? null : usage.copy();
if (uniqueId != null) {
dst.uniqueId = new ArrayList();
for (NamingSystemUniqueIdComponent i : uniqueId)
dst.uniqueId.add(i.copy());
}
;
}
protected NamingSystem typedCopy() {
return copy();
}
@Override
public boolean equalsDeep(Base other_) {
if (!super.equalsDeep(other_))
return false;
if (!(other_ instanceof NamingSystem))
return false;
NamingSystem o = (NamingSystem) other_;
return compareDeep(name, o.name, true) && compareDeep(status, o.status, true) && compareDeep(kind, o.kind, true)
&& compareDeep(date, o.date, true) && compareDeep(publisher, o.publisher, true)
&& compareDeep(contact, o.contact, true) && compareDeep(responsible, o.responsible, true)
&& compareDeep(type, o.type, true) && compareDeep(description, o.description, true)
&& compareDeep(useContext, o.useContext, true) && compareDeep(jurisdiction, o.jurisdiction, true)
&& compareDeep(usage, o.usage, true) && compareDeep(uniqueId, o.uniqueId, true);
}
@Override
public boolean equalsShallow(Base other_) {
if (!super.equalsShallow(other_))
return false;
if (!(other_ instanceof NamingSystem))
return false;
NamingSystem o = (NamingSystem) other_;
return compareValues(name, o.name, true) && compareValues(status, o.status, true)
&& compareValues(kind, o.kind, true) && compareValues(date, o.date, true)
&& compareValues(publisher, o.publisher, true) && compareValues(responsible, o.responsible, true)
&& compareValues(description, o.description, true) && compareValues(usage, o.usage, true);
}
public boolean isEmpty() {
return super.isEmpty() && ca.uhn.fhir.util.ElementUtil.isEmpty(name, status, kind, date, publisher, contact,
responsible, type, description, useContext, jurisdiction, usage, uniqueId);
}
@Override
public ResourceType getResourceType() {
return ResourceType.NamingSystem;
}
/**
* Search parameter: contact
*
* Description: Name of an individual to contact
* Type: string
* Path: NamingSystem.contact.name
*
*/
@SearchParamDefinition(name = "contact", path = "NamingSystem.contact.name", description = "Name of an individual to contact", type = "string")
public static final String SP_CONTACT = "contact";
/**
* Fluent Client search parameter constant for contact
*
* Description: Name of an individual to contact
* Type: string
* Path: NamingSystem.contact.name
*
*/
public static final ca.uhn.fhir.rest.gclient.StringClientParam CONTACT = new ca.uhn.fhir.rest.gclient.StringClientParam(
SP_CONTACT);
/**
* Search parameter: id-type
*
* Description: oid | uuid | uri | other
* Type: token
* Path: NamingSystem.uniqueId.type
*
*/
@SearchParamDefinition(name = "id-type", path = "NamingSystem.uniqueId.type", description = "oid | uuid | uri | other", type = "token")
public static final String SP_ID_TYPE = "id-type";
/**
* Fluent Client search parameter constant for id-type
*
* Description: oid | uuid | uri | other
* Type: token
* Path: NamingSystem.uniqueId.type
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam ID_TYPE = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_ID_TYPE);
/**
* Search parameter: kind
*
* Description: codesystem | identifier | root
* Type: token
* Path: NamingSystem.kind
*
*/
@SearchParamDefinition(name = "kind", path = "NamingSystem.kind", description = "codesystem | identifier | root", type = "token")
public static final String SP_KIND = "kind";
/**
* Fluent Client search parameter constant for kind
*
* Description: codesystem | identifier | root
* Type: token
* Path: NamingSystem.kind
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam KIND = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_KIND);
/**
* Search parameter: period
*
* Description: When is identifier valid?
* Type: date
* Path: NamingSystem.uniqueId.period
*
*/
@SearchParamDefinition(name = "period", path = "NamingSystem.uniqueId.period", description = "When is identifier valid?", type = "date")
public static final String SP_PERIOD = "period";
/**
* Fluent Client search parameter constant for period
*
* Description: When is identifier valid?
* Type: date
* Path: NamingSystem.uniqueId.period
*
*/
public static final ca.uhn.fhir.rest.gclient.DateClientParam PERIOD = new ca.uhn.fhir.rest.gclient.DateClientParam(
SP_PERIOD);
/**
* Search parameter: responsible
*
* Description: Who maintains system namespace?
* Type: string
* Path: NamingSystem.responsible
*
*/
@SearchParamDefinition(name = "responsible", path = "NamingSystem.responsible", description = "Who maintains system namespace?", type = "string")
public static final String SP_RESPONSIBLE = "responsible";
/**
* Fluent Client search parameter constant for responsible
*
* Description: Who maintains system namespace?
* Type: string
* Path: NamingSystem.responsible
*
*/
public static final ca.uhn.fhir.rest.gclient.StringClientParam RESPONSIBLE = new ca.uhn.fhir.rest.gclient.StringClientParam(
SP_RESPONSIBLE);
/**
* Search parameter: telecom
*
* Description: Contact details for individual or organization
* Type: token
* Path: NamingSystem.contact.telecom
*
*/
@SearchParamDefinition(name = "telecom", path = "NamingSystem.contact.telecom", description = "Contact details for individual or organization", type = "token")
public static final String SP_TELECOM = "telecom";
/**
* Fluent Client search parameter constant for telecom
*
* Description: Contact details for individual or organization
* Type: token
* Path: NamingSystem.contact.telecom
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam TELECOM = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_TELECOM);
/**
* Search parameter: type
*
* Description: e.g. driver, provider, patient, bank etc.
* Type: token
* Path: NamingSystem.type
*
*/
@SearchParamDefinition(name = "type", path = "NamingSystem.type", description = "e.g. driver, provider, patient, bank etc.", type = "token")
public static final String SP_TYPE = "type";
/**
* Fluent Client search parameter constant for type
*
* Description: e.g. driver, provider, patient, bank etc.
* Type: token
* Path: NamingSystem.type
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam TYPE = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_TYPE);
/**
* Search parameter: value
*
* Description: The unique identifier
* Type: string
* Path: NamingSystem.uniqueId.value
*
*/
@SearchParamDefinition(name = "value", path = "NamingSystem.uniqueId.value", description = "The unique identifier", type = "string")
public static final String SP_VALUE = "value";
/**
* Fluent Client search parameter constant for value
*
* Description: The unique identifier
* Type: string
* Path: NamingSystem.uniqueId.value
*
*/
public static final ca.uhn.fhir.rest.gclient.StringClientParam VALUE = new ca.uhn.fhir.rest.gclient.StringClientParam(
SP_VALUE);
/**
* Search parameter: context-quantity
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A quantity- or range-valued
* use context assigned to the capability statement
* [CodeSystem](codesystem.html): A quantity- or range-valued use context
* assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A quantity- or
* range-valued use context assigned to the compartment definition
* [ConceptMap](conceptmap.html): A quantity- or range-valued use context
* assigned to the concept map [GraphDefinition](graphdefinition.html): A
* quantity- or range-valued use context assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A quantity- or range-valued
* use context assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A quantity- or range-valued use
* context assigned to the message definition [NamingSystem](namingsystem.html):
* A quantity- or range-valued use context assigned to the naming system
* [OperationDefinition](operationdefinition.html): A quantity- or range-valued
* use context assigned to the operation definition
* [SearchParameter](searchparameter.html): A quantity- or range-valued use
* context assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A quantity- or range-valued
* use context assigned to the structure definition
* [StructureMap](structuremap.html): A quantity- or range-valued use context
* assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A quantity- or
* range-valued use context assigned to the terminology capabilities
* [ValueSet](valueset.html): A quantity- or range-valued use context assigned
* to the value set
* Type: quantity
* Path: (CapabilityStatement.useContext.value as Quantity) |
* (CapabilityStatement.useContext.value as Range) |
* (CodeSystem.useContext.value as Quantity) | (CodeSystem.useContext.value as
* Range) | (CompartmentDefinition.useContext.value as Quantity) |
* (CompartmentDefinition.useContext.value as Range) |
* (ConceptMap.useContext.value as Quantity) | (ConceptMap.useContext.value as
* Range) | (GraphDefinition.useContext.value as Quantity) |
* (GraphDefinition.useContext.value as Range) |
* (ImplementationGuide.useContext.value as Quantity) |
* (ImplementationGuide.useContext.value as Range) |
* (MessageDefinition.useContext.value as Quantity) |
* (MessageDefinition.useContext.value as Range) |
* (NamingSystem.useContext.value as Quantity) | (NamingSystem.useContext.value
* as Range) | (OperationDefinition.useContext.value as Quantity) |
* (OperationDefinition.useContext.value as Range) |
* (SearchParameter.useContext.value as Quantity) |
* (SearchParameter.useContext.value as Range) |
* (StructureDefinition.useContext.value as Quantity) |
* (StructureDefinition.useContext.value as Range) |
* (StructureMap.useContext.value as Quantity) | (StructureMap.useContext.value
* as Range) | (TerminologyCapabilities.useContext.value as Quantity) |
* (TerminologyCapabilities.useContext.value as Range) |
* (ValueSet.useContext.value as Quantity) | (ValueSet.useContext.value as
* Range)
*
*/
@SearchParamDefinition(name = "context-quantity", path = "(CapabilityStatement.useContext.value as Quantity) | (CapabilityStatement.useContext.value as Range) | (CodeSystem.useContext.value as Quantity) | (CodeSystem.useContext.value as Range) | (CompartmentDefinition.useContext.value as Quantity) | (CompartmentDefinition.useContext.value as Range) | (ConceptMap.useContext.value as Quantity) | (ConceptMap.useContext.value as Range) | (GraphDefinition.useContext.value as Quantity) | (GraphDefinition.useContext.value as Range) | (ImplementationGuide.useContext.value as Quantity) | (ImplementationGuide.useContext.value as Range) | (MessageDefinition.useContext.value as Quantity) | (MessageDefinition.useContext.value as Range) | (NamingSystem.useContext.value as Quantity) | (NamingSystem.useContext.value as Range) | (OperationDefinition.useContext.value as Quantity) | (OperationDefinition.useContext.value as Range) | (SearchParameter.useContext.value as Quantity) | (SearchParameter.useContext.value as Range) | (StructureDefinition.useContext.value as Quantity) | (StructureDefinition.useContext.value as Range) | (StructureMap.useContext.value as Quantity) | (StructureMap.useContext.value as Range) | (TerminologyCapabilities.useContext.value as Quantity) | (TerminologyCapabilities.useContext.value as Range) | (ValueSet.useContext.value as Quantity) | (ValueSet.useContext.value as Range)", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A quantity- or range-valued use context assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A quantity- or range-valued use context assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A quantity- or range-valued use context assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A quantity- or range-valued use context assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A quantity- or range-valued use context assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A quantity- or range-valued use context assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A quantity- or range-valued use context assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A quantity- or range-valued use context assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A quantity- or range-valued use context assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A quantity- or range-valued use context assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A quantity- or range-valued use context assigned to the structure definition\r\n* [StructureMap](structuremap.html): A quantity- or range-valued use context assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A quantity- or range-valued use context assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A quantity- or range-valued use context assigned to the value set\r\n", type = "quantity")
public static final String SP_CONTEXT_QUANTITY = "context-quantity";
/**
* Fluent Client search parameter constant for context-quantity
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A quantity- or range-valued
* use context assigned to the capability statement
* [CodeSystem](codesystem.html): A quantity- or range-valued use context
* assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A quantity- or
* range-valued use context assigned to the compartment definition
* [ConceptMap](conceptmap.html): A quantity- or range-valued use context
* assigned to the concept map [GraphDefinition](graphdefinition.html): A
* quantity- or range-valued use context assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A quantity- or range-valued
* use context assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A quantity- or range-valued use
* context assigned to the message definition [NamingSystem](namingsystem.html):
* A quantity- or range-valued use context assigned to the naming system
* [OperationDefinition](operationdefinition.html): A quantity- or range-valued
* use context assigned to the operation definition
* [SearchParameter](searchparameter.html): A quantity- or range-valued use
* context assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A quantity- or range-valued
* use context assigned to the structure definition
* [StructureMap](structuremap.html): A quantity- or range-valued use context
* assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A quantity- or
* range-valued use context assigned to the terminology capabilities
* [ValueSet](valueset.html): A quantity- or range-valued use context assigned
* to the value set
* Type: quantity
* Path: (CapabilityStatement.useContext.value as Quantity) |
* (CapabilityStatement.useContext.value as Range) |
* (CodeSystem.useContext.value as Quantity) | (CodeSystem.useContext.value as
* Range) | (CompartmentDefinition.useContext.value as Quantity) |
* (CompartmentDefinition.useContext.value as Range) |
* (ConceptMap.useContext.value as Quantity) | (ConceptMap.useContext.value as
* Range) | (GraphDefinition.useContext.value as Quantity) |
* (GraphDefinition.useContext.value as Range) |
* (ImplementationGuide.useContext.value as Quantity) |
* (ImplementationGuide.useContext.value as Range) |
* (MessageDefinition.useContext.value as Quantity) |
* (MessageDefinition.useContext.value as Range) |
* (NamingSystem.useContext.value as Quantity) | (NamingSystem.useContext.value
* as Range) | (OperationDefinition.useContext.value as Quantity) |
* (OperationDefinition.useContext.value as Range) |
* (SearchParameter.useContext.value as Quantity) |
* (SearchParameter.useContext.value as Range) |
* (StructureDefinition.useContext.value as Quantity) |
* (StructureDefinition.useContext.value as Range) |
* (StructureMap.useContext.value as Quantity) | (StructureMap.useContext.value
* as Range) | (TerminologyCapabilities.useContext.value as Quantity) |
* (TerminologyCapabilities.useContext.value as Range) |
* (ValueSet.useContext.value as Quantity) | (ValueSet.useContext.value as
* Range)
*
*/
public static final ca.uhn.fhir.rest.gclient.QuantityClientParam CONTEXT_QUANTITY = new ca.uhn.fhir.rest.gclient.QuantityClientParam(
SP_CONTEXT_QUANTITY);
/**
* Search parameter: context-type-quantity
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A use context type and
* quantity- or range-based value assigned to the capability statement
* [CodeSystem](codesystem.html): A use context type and quantity- or
* range-based value assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A use context type and
* quantity- or range-based value assigned to the compartment definition
* [ConceptMap](conceptmap.html): A use context type and quantity- or
* range-based value assigned to the concept map
* [GraphDefinition](graphdefinition.html): A use context type and quantity- or
* range-based value assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A use context type and
* quantity- or range-based value assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A use context type and quantity-
* or range-based value assigned to the message definition
* [NamingSystem](namingsystem.html): A use context type and quantity- or
* range-based value assigned to the naming system
* [OperationDefinition](operationdefinition.html): A use context type and
* quantity- or range-based value assigned to the operation definition
* [SearchParameter](searchparameter.html): A use context type and quantity- or
* range-based value assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A use context type and
* quantity- or range-based value assigned to the structure definition
* [StructureMap](structuremap.html): A use context type and quantity- or
* range-based value assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A use context type
* and quantity- or range-based value assigned to the terminology capabilities
* [ValueSet](valueset.html): A use context type and quantity- or range-based
* value assigned to the value set
* Type: composite
* Path: CapabilityStatement.useContext | CodeSystem.useContext |
* CompartmentDefinition.useContext | ConceptMap.useContext |
* GraphDefinition.useContext | ImplementationGuide.useContext |
* MessageDefinition.useContext | NamingSystem.useContext |
* OperationDefinition.useContext | SearchParameter.useContext |
* StructureDefinition.useContext | StructureMap.useContext |
* TerminologyCapabilities.useContext | ValueSet.useContext
*
*/
@SearchParamDefinition(name = "context-type-quantity", path = "CapabilityStatement.useContext | CodeSystem.useContext | CompartmentDefinition.useContext | ConceptMap.useContext | GraphDefinition.useContext | ImplementationGuide.useContext | MessageDefinition.useContext | NamingSystem.useContext | OperationDefinition.useContext | SearchParameter.useContext | StructureDefinition.useContext | StructureMap.useContext | TerminologyCapabilities.useContext | ValueSet.useContext", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A use context type and quantity- or range-based value assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A use context type and quantity- or range-based value assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A use context type and quantity- or range-based value assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A use context type and quantity- or range-based value assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A use context type and quantity- or range-based value assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A use context type and quantity- or range-based value assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A use context type and quantity- or range-based value assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A use context type and quantity- or range-based value assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A use context type and quantity- or range-based value assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A use context type and quantity- or range-based value assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A use context type and quantity- or range-based value assigned to the structure definition\r\n* [StructureMap](structuremap.html): A use context type and quantity- or range-based value assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A use context type and quantity- or range-based value assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A use context type and quantity- or range-based value assigned to the value set\r\n", type = "composite", compositeOf = {
"context-type", "context-quantity" })
public static final String SP_CONTEXT_TYPE_QUANTITY = "context-type-quantity";
/**
* Fluent Client search parameter constant for
* context-type-quantity
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A use context type and
* quantity- or range-based value assigned to the capability statement
* [CodeSystem](codesystem.html): A use context type and quantity- or
* range-based value assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A use context type and
* quantity- or range-based value assigned to the compartment definition
* [ConceptMap](conceptmap.html): A use context type and quantity- or
* range-based value assigned to the concept map
* [GraphDefinition](graphdefinition.html): A use context type and quantity- or
* range-based value assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A use context type and
* quantity- or range-based value assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A use context type and quantity-
* or range-based value assigned to the message definition
* [NamingSystem](namingsystem.html): A use context type and quantity- or
* range-based value assigned to the naming system
* [OperationDefinition](operationdefinition.html): A use context type and
* quantity- or range-based value assigned to the operation definition
* [SearchParameter](searchparameter.html): A use context type and quantity- or
* range-based value assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A use context type and
* quantity- or range-based value assigned to the structure definition
* [StructureMap](structuremap.html): A use context type and quantity- or
* range-based value assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A use context type
* and quantity- or range-based value assigned to the terminology capabilities
* [ValueSet](valueset.html): A use context type and quantity- or range-based
* value assigned to the value set
* Type: composite
* Path: CapabilityStatement.useContext | CodeSystem.useContext |
* CompartmentDefinition.useContext | ConceptMap.useContext |
* GraphDefinition.useContext | ImplementationGuide.useContext |
* MessageDefinition.useContext | NamingSystem.useContext |
* OperationDefinition.useContext | SearchParameter.useContext |
* StructureDefinition.useContext | StructureMap.useContext |
* TerminologyCapabilities.useContext | ValueSet.useContext
*
*/
public static final ca.uhn.fhir.rest.gclient.CompositeClientParam CONTEXT_TYPE_QUANTITY = new ca.uhn.fhir.rest.gclient.CompositeClientParam(
SP_CONTEXT_TYPE_QUANTITY);
/**
* Search parameter: context-type-value
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A use context type and value
* assigned to the capability statement [CodeSystem](codesystem.html): A use
* context type and value assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A use context type and
* value assigned to the compartment definition [ConceptMap](conceptmap.html): A
* use context type and value assigned to the concept map
* [GraphDefinition](graphdefinition.html): A use context type and value
* assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A use context type and value
* assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A use context type and value
* assigned to the message definition [NamingSystem](namingsystem.html): A use
* context type and value assigned to the naming system
* [OperationDefinition](operationdefinition.html): A use context type and value
* assigned to the operation definition [SearchParameter](searchparameter.html):
* A use context type and value assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A use context type and value
* assigned to the structure definition [StructureMap](structuremap.html): A use
* context type and value assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A use context type
* and value assigned to the terminology capabilities [ValueSet](valueset.html):
* A use context type and value assigned to the value set
* Type: composite
* Path: CapabilityStatement.useContext | CodeSystem.useContext |
* CompartmentDefinition.useContext | ConceptMap.useContext |
* GraphDefinition.useContext | ImplementationGuide.useContext |
* MessageDefinition.useContext | NamingSystem.useContext |
* OperationDefinition.useContext | SearchParameter.useContext |
* StructureDefinition.useContext | StructureMap.useContext |
* TerminologyCapabilities.useContext | ValueSet.useContext
*
*/
@SearchParamDefinition(name = "context-type-value", path = "CapabilityStatement.useContext | CodeSystem.useContext | CompartmentDefinition.useContext | ConceptMap.useContext | GraphDefinition.useContext | ImplementationGuide.useContext | MessageDefinition.useContext | NamingSystem.useContext | OperationDefinition.useContext | SearchParameter.useContext | StructureDefinition.useContext | StructureMap.useContext | TerminologyCapabilities.useContext | ValueSet.useContext", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A use context type and value assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A use context type and value assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A use context type and value assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A use context type and value assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A use context type and value assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A use context type and value assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A use context type and value assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A use context type and value assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A use context type and value assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A use context type and value assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A use context type and value assigned to the structure definition\r\n* [StructureMap](structuremap.html): A use context type and value assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A use context type and value assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A use context type and value assigned to the value set\r\n", type = "composite", compositeOf = {
"context-type", "context" })
public static final String SP_CONTEXT_TYPE_VALUE = "context-type-value";
/**
* Fluent Client search parameter constant for context-type-value
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A use context type and value
* assigned to the capability statement [CodeSystem](codesystem.html): A use
* context type and value assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A use context type and
* value assigned to the compartment definition [ConceptMap](conceptmap.html): A
* use context type and value assigned to the concept map
* [GraphDefinition](graphdefinition.html): A use context type and value
* assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A use context type and value
* assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A use context type and value
* assigned to the message definition [NamingSystem](namingsystem.html): A use
* context type and value assigned to the naming system
* [OperationDefinition](operationdefinition.html): A use context type and value
* assigned to the operation definition [SearchParameter](searchparameter.html):
* A use context type and value assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A use context type and value
* assigned to the structure definition [StructureMap](structuremap.html): A use
* context type and value assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A use context type
* and value assigned to the terminology capabilities [ValueSet](valueset.html):
* A use context type and value assigned to the value set
* Type: composite
* Path: CapabilityStatement.useContext | CodeSystem.useContext |
* CompartmentDefinition.useContext | ConceptMap.useContext |
* GraphDefinition.useContext | ImplementationGuide.useContext |
* MessageDefinition.useContext | NamingSystem.useContext |
* OperationDefinition.useContext | SearchParameter.useContext |
* StructureDefinition.useContext | StructureMap.useContext |
* TerminologyCapabilities.useContext | ValueSet.useContext
*
*/
public static final ca.uhn.fhir.rest.gclient.CompositeClientParam CONTEXT_TYPE_VALUE = new ca.uhn.fhir.rest.gclient.CompositeClientParam(
SP_CONTEXT_TYPE_VALUE);
/**
* Search parameter: context-type
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A type of use context
* assigned to the capability statement [CodeSystem](codesystem.html): A type of
* use context assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A type of use context
* assigned to the compartment definition [ConceptMap](conceptmap.html): A type
* of use context assigned to the concept map
* [GraphDefinition](graphdefinition.html): A type of use context assigned to
* the graph definition [ImplementationGuide](implementationguide.html): A type
* of use context assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A type of use context assigned
* to the message definition [NamingSystem](namingsystem.html): A type of use
* context assigned to the naming system
* [OperationDefinition](operationdefinition.html): A type of use context
* assigned to the operation definition [SearchParameter](searchparameter.html):
* A type of use context assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A type of use context
* assigned to the structure definition [StructureMap](structuremap.html): A
* type of use context assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A type of use
* context assigned to the terminology capabilities [ValueSet](valueset.html): A
* type of use context assigned to the value set
* Type: token
* Path: CapabilityStatement.useContext.code | CodeSystem.useContext.code |
* CompartmentDefinition.useContext.code | ConceptMap.useContext.code |
* GraphDefinition.useContext.code | ImplementationGuide.useContext.code |
* MessageDefinition.useContext.code | NamingSystem.useContext.code |
* OperationDefinition.useContext.code | SearchParameter.useContext.code |
* StructureDefinition.useContext.code | StructureMap.useContext.code |
* TerminologyCapabilities.useContext.code | ValueSet.useContext.code
*
*/
@SearchParamDefinition(name = "context-type", path = "CapabilityStatement.useContext.code | CodeSystem.useContext.code | CompartmentDefinition.useContext.code | ConceptMap.useContext.code | GraphDefinition.useContext.code | ImplementationGuide.useContext.code | MessageDefinition.useContext.code | NamingSystem.useContext.code | OperationDefinition.useContext.code | SearchParameter.useContext.code | StructureDefinition.useContext.code | StructureMap.useContext.code | TerminologyCapabilities.useContext.code | ValueSet.useContext.code", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A type of use context assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A type of use context assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A type of use context assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A type of use context assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A type of use context assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A type of use context assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A type of use context assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A type of use context assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A type of use context assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A type of use context assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A type of use context assigned to the structure definition\r\n* [StructureMap](structuremap.html): A type of use context assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A type of use context assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A type of use context assigned to the value set\r\n", type = "token")
public static final String SP_CONTEXT_TYPE = "context-type";
/**
* Fluent Client search parameter constant for context-type
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A type of use context
* assigned to the capability statement [CodeSystem](codesystem.html): A type of
* use context assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A type of use context
* assigned to the compartment definition [ConceptMap](conceptmap.html): A type
* of use context assigned to the concept map
* [GraphDefinition](graphdefinition.html): A type of use context assigned to
* the graph definition [ImplementationGuide](implementationguide.html): A type
* of use context assigned to the implementation guide
* [MessageDefinition](messagedefinition.html): A type of use context assigned
* to the message definition [NamingSystem](namingsystem.html): A type of use
* context assigned to the naming system
* [OperationDefinition](operationdefinition.html): A type of use context
* assigned to the operation definition [SearchParameter](searchparameter.html):
* A type of use context assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A type of use context
* assigned to the structure definition [StructureMap](structuremap.html): A
* type of use context assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A type of use
* context assigned to the terminology capabilities [ValueSet](valueset.html): A
* type of use context assigned to the value set
* Type: token
* Path: CapabilityStatement.useContext.code | CodeSystem.useContext.code |
* CompartmentDefinition.useContext.code | ConceptMap.useContext.code |
* GraphDefinition.useContext.code | ImplementationGuide.useContext.code |
* MessageDefinition.useContext.code | NamingSystem.useContext.code |
* OperationDefinition.useContext.code | SearchParameter.useContext.code |
* StructureDefinition.useContext.code | StructureMap.useContext.code |
* TerminologyCapabilities.useContext.code | ValueSet.useContext.code
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam CONTEXT_TYPE = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_CONTEXT_TYPE);
/**
* Search parameter: context
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A use context assigned to
* the capability statement [CodeSystem](codesystem.html): A use context
* assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A use context assigned
* to the compartment definition [ConceptMap](conceptmap.html): A use context
* assigned to the concept map [GraphDefinition](graphdefinition.html): A use
* context assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A use context assigned to
* the implementation guide [MessageDefinition](messagedefinition.html): A use
* context assigned to the message definition [NamingSystem](namingsystem.html):
* A use context assigned to the naming system
* [OperationDefinition](operationdefinition.html): A use context assigned to
* the operation definition [SearchParameter](searchparameter.html): A use
* context assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A use context assigned to
* the structure definition [StructureMap](structuremap.html): A use context
* assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A use context
* assigned to the terminology capabilities [ValueSet](valueset.html): A use
* context assigned to the value set
* Type: token
* Path: (CapabilityStatement.useContext.value as CodeableConcept) |
* (CodeSystem.useContext.value as CodeableConcept) |
* (CompartmentDefinition.useContext.value as CodeableConcept) |
* (ConceptMap.useContext.value as CodeableConcept) |
* (GraphDefinition.useContext.value as CodeableConcept) |
* (ImplementationGuide.useContext.value as CodeableConcept) |
* (MessageDefinition.useContext.value as CodeableConcept) |
* (NamingSystem.useContext.value as CodeableConcept) |
* (OperationDefinition.useContext.value as CodeableConcept) |
* (SearchParameter.useContext.value as CodeableConcept) |
* (StructureDefinition.useContext.value as CodeableConcept) |
* (StructureMap.useContext.value as CodeableConcept) |
* (TerminologyCapabilities.useContext.value as CodeableConcept) |
* (ValueSet.useContext.value as CodeableConcept)
*
*/
@SearchParamDefinition(name = "context", path = "(CapabilityStatement.useContext.value as CodeableConcept) | (CodeSystem.useContext.value as CodeableConcept) | (CompartmentDefinition.useContext.value as CodeableConcept) | (ConceptMap.useContext.value as CodeableConcept) | (GraphDefinition.useContext.value as CodeableConcept) | (ImplementationGuide.useContext.value as CodeableConcept) | (MessageDefinition.useContext.value as CodeableConcept) | (NamingSystem.useContext.value as CodeableConcept) | (OperationDefinition.useContext.value as CodeableConcept) | (SearchParameter.useContext.value as CodeableConcept) | (StructureDefinition.useContext.value as CodeableConcept) | (StructureMap.useContext.value as CodeableConcept) | (TerminologyCapabilities.useContext.value as CodeableConcept) | (ValueSet.useContext.value as CodeableConcept)", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): A use context assigned to the capability statement\r\n* [CodeSystem](codesystem.html): A use context assigned to the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): A use context assigned to the compartment definition\r\n* [ConceptMap](conceptmap.html): A use context assigned to the concept map\r\n* [GraphDefinition](graphdefinition.html): A use context assigned to the graph definition\r\n* [ImplementationGuide](implementationguide.html): A use context assigned to the implementation guide\r\n* [MessageDefinition](messagedefinition.html): A use context assigned to the message definition\r\n* [NamingSystem](namingsystem.html): A use context assigned to the naming system\r\n* [OperationDefinition](operationdefinition.html): A use context assigned to the operation definition\r\n* [SearchParameter](searchparameter.html): A use context assigned to the search parameter\r\n* [StructureDefinition](structuredefinition.html): A use context assigned to the structure definition\r\n* [StructureMap](structuremap.html): A use context assigned to the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): A use context assigned to the terminology capabilities\r\n* [ValueSet](valueset.html): A use context assigned to the value set\r\n", type = "token")
public static final String SP_CONTEXT = "context";
/**
* Fluent Client search parameter constant for context
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): A use context assigned to
* the capability statement [CodeSystem](codesystem.html): A use context
* assigned to the code system
* [CompartmentDefinition](compartmentdefinition.html): A use context assigned
* to the compartment definition [ConceptMap](conceptmap.html): A use context
* assigned to the concept map [GraphDefinition](graphdefinition.html): A use
* context assigned to the graph definition
* [ImplementationGuide](implementationguide.html): A use context assigned to
* the implementation guide [MessageDefinition](messagedefinition.html): A use
* context assigned to the message definition [NamingSystem](namingsystem.html):
* A use context assigned to the naming system
* [OperationDefinition](operationdefinition.html): A use context assigned to
* the operation definition [SearchParameter](searchparameter.html): A use
* context assigned to the search parameter
* [StructureDefinition](structuredefinition.html): A use context assigned to
* the structure definition [StructureMap](structuremap.html): A use context
* assigned to the structure map
* [TerminologyCapabilities](terminologycapabilities.html): A use context
* assigned to the terminology capabilities [ValueSet](valueset.html): A use
* context assigned to the value set
* Type: token
* Path: (CapabilityStatement.useContext.value as CodeableConcept) |
* (CodeSystem.useContext.value as CodeableConcept) |
* (CompartmentDefinition.useContext.value as CodeableConcept) |
* (ConceptMap.useContext.value as CodeableConcept) |
* (GraphDefinition.useContext.value as CodeableConcept) |
* (ImplementationGuide.useContext.value as CodeableConcept) |
* (MessageDefinition.useContext.value as CodeableConcept) |
* (NamingSystem.useContext.value as CodeableConcept) |
* (OperationDefinition.useContext.value as CodeableConcept) |
* (SearchParameter.useContext.value as CodeableConcept) |
* (StructureDefinition.useContext.value as CodeableConcept) |
* (StructureMap.useContext.value as CodeableConcept) |
* (TerminologyCapabilities.useContext.value as CodeableConcept) |
* (ValueSet.useContext.value as CodeableConcept)
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam CONTEXT = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_CONTEXT);
/**
* Search parameter: date
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): The capability statement
* publication date [CodeSystem](codesystem.html): The code system publication
* date [CompartmentDefinition](compartmentdefinition.html): The compartment
* definition publication date [ConceptMap](conceptmap.html): The concept map
* publication date [GraphDefinition](graphdefinition.html): The graph
* definition publication date [ImplementationGuide](implementationguide.html):
* The implementation guide publication date
* [MessageDefinition](messagedefinition.html): The message definition
* publication date [NamingSystem](namingsystem.html): The naming system
* publication date [OperationDefinition](operationdefinition.html): The
* operation definition publication date
* [SearchParameter](searchparameter.html): The search parameter publication
* date [StructureDefinition](structuredefinition.html): The structure
* definition publication date [StructureMap](structuremap.html): The structure
* map publication date [TerminologyCapabilities](terminologycapabilities.html):
* The terminology capabilities publication date [ValueSet](valueset.html): The
* value set publication date
* Type: date
* Path: CapabilityStatement.date | CodeSystem.date |
* CompartmentDefinition.date | ConceptMap.date | GraphDefinition.date |
* ImplementationGuide.date | MessageDefinition.date | NamingSystem.date |
* OperationDefinition.date | SearchParameter.date | StructureDefinition.date |
* StructureMap.date | TerminologyCapabilities.date | ValueSet.date
*
*/
@SearchParamDefinition(name = "date", path = "CapabilityStatement.date | CodeSystem.date | CompartmentDefinition.date | ConceptMap.date | GraphDefinition.date | ImplementationGuide.date | MessageDefinition.date | NamingSystem.date | OperationDefinition.date | SearchParameter.date | StructureDefinition.date | StructureMap.date | TerminologyCapabilities.date | ValueSet.date", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The capability statement publication date\r\n* [CodeSystem](codesystem.html): The code system publication date\r\n* [CompartmentDefinition](compartmentdefinition.html): The compartment definition publication date\r\n* [ConceptMap](conceptmap.html): The concept map publication date\r\n* [GraphDefinition](graphdefinition.html): The graph definition publication date\r\n* [ImplementationGuide](implementationguide.html): The implementation guide publication date\r\n* [MessageDefinition](messagedefinition.html): The message definition publication date\r\n* [NamingSystem](namingsystem.html): The naming system publication date\r\n* [OperationDefinition](operationdefinition.html): The operation definition publication date\r\n* [SearchParameter](searchparameter.html): The search parameter publication date\r\n* [StructureDefinition](structuredefinition.html): The structure definition publication date\r\n* [StructureMap](structuremap.html): The structure map publication date\r\n* [TerminologyCapabilities](terminologycapabilities.html): The terminology capabilities publication date\r\n* [ValueSet](valueset.html): The value set publication date\r\n", type = "date")
public static final String SP_DATE = "date";
/**
* Fluent Client search parameter constant for date
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): The capability statement
* publication date [CodeSystem](codesystem.html): The code system publication
* date [CompartmentDefinition](compartmentdefinition.html): The compartment
* definition publication date [ConceptMap](conceptmap.html): The concept map
* publication date [GraphDefinition](graphdefinition.html): The graph
* definition publication date [ImplementationGuide](implementationguide.html):
* The implementation guide publication date
* [MessageDefinition](messagedefinition.html): The message definition
* publication date [NamingSystem](namingsystem.html): The naming system
* publication date [OperationDefinition](operationdefinition.html): The
* operation definition publication date
* [SearchParameter](searchparameter.html): The search parameter publication
* date [StructureDefinition](structuredefinition.html): The structure
* definition publication date [StructureMap](structuremap.html): The structure
* map publication date [TerminologyCapabilities](terminologycapabilities.html):
* The terminology capabilities publication date [ValueSet](valueset.html): The
* value set publication date
* Type: date
* Path: CapabilityStatement.date | CodeSystem.date |
* CompartmentDefinition.date | ConceptMap.date | GraphDefinition.date |
* ImplementationGuide.date | MessageDefinition.date | NamingSystem.date |
* OperationDefinition.date | SearchParameter.date | StructureDefinition.date |
* StructureMap.date | TerminologyCapabilities.date | ValueSet.date
*
*/
public static final ca.uhn.fhir.rest.gclient.DateClientParam DATE = new ca.uhn.fhir.rest.gclient.DateClientParam(
SP_DATE);
/**
* Search parameter: description
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): The description of the
* capability statement [CodeSystem](codesystem.html): The description of the
* code system [CompartmentDefinition](compartmentdefinition.html): The
* description of the compartment definition [ConceptMap](conceptmap.html): The
* description of the concept map [GraphDefinition](graphdefinition.html): The
* description of the graph definition
* [ImplementationGuide](implementationguide.html): The description of the
* implementation guide [MessageDefinition](messagedefinition.html): The
* description of the message definition [NamingSystem](namingsystem.html): The
* description of the naming system
* [OperationDefinition](operationdefinition.html): The description of the
* operation definition [SearchParameter](searchparameter.html): The description
* of the search parameter [StructureDefinition](structuredefinition.html): The
* description of the structure definition [StructureMap](structuremap.html):
* The description of the structure map
* [TerminologyCapabilities](terminologycapabilities.html): The description of
* the terminology capabilities [ValueSet](valueset.html): The description of
* the value set
* Type: string
* Path: CapabilityStatement.description | CodeSystem.description |
* CompartmentDefinition.description | ConceptMap.description |
* GraphDefinition.description | ImplementationGuide.description |
* MessageDefinition.description | NamingSystem.description |
* OperationDefinition.description | SearchParameter.description |
* StructureDefinition.description | StructureMap.description |
* TerminologyCapabilities.description | ValueSet.description
*
*/
@SearchParamDefinition(name = "description", path = "CapabilityStatement.description | CodeSystem.description | CompartmentDefinition.description | ConceptMap.description | GraphDefinition.description | ImplementationGuide.description | MessageDefinition.description | NamingSystem.description | OperationDefinition.description | SearchParameter.description | StructureDefinition.description | StructureMap.description | TerminologyCapabilities.description | ValueSet.description", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The description of the capability statement\r\n* [CodeSystem](codesystem.html): The description of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): The description of the compartment definition\r\n* [ConceptMap](conceptmap.html): The description of the concept map\r\n* [GraphDefinition](graphdefinition.html): The description of the graph definition\r\n* [ImplementationGuide](implementationguide.html): The description of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The description of the message definition\r\n* [NamingSystem](namingsystem.html): The description of the naming system\r\n* [OperationDefinition](operationdefinition.html): The description of the operation definition\r\n* [SearchParameter](searchparameter.html): The description of the search parameter\r\n* [StructureDefinition](structuredefinition.html): The description of the structure definition\r\n* [StructureMap](structuremap.html): The description of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The description of the terminology capabilities\r\n* [ValueSet](valueset.html): The description of the value set\r\n", type = "string")
public static final String SP_DESCRIPTION = "description";
/**
* Fluent Client search parameter constant for description
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): The description of the
* capability statement [CodeSystem](codesystem.html): The description of the
* code system [CompartmentDefinition](compartmentdefinition.html): The
* description of the compartment definition [ConceptMap](conceptmap.html): The
* description of the concept map [GraphDefinition](graphdefinition.html): The
* description of the graph definition
* [ImplementationGuide](implementationguide.html): The description of the
* implementation guide [MessageDefinition](messagedefinition.html): The
* description of the message definition [NamingSystem](namingsystem.html): The
* description of the naming system
* [OperationDefinition](operationdefinition.html): The description of the
* operation definition [SearchParameter](searchparameter.html): The description
* of the search parameter [StructureDefinition](structuredefinition.html): The
* description of the structure definition [StructureMap](structuremap.html):
* The description of the structure map
* [TerminologyCapabilities](terminologycapabilities.html): The description of
* the terminology capabilities [ValueSet](valueset.html): The description of
* the value set
* Type: string
* Path: CapabilityStatement.description | CodeSystem.description |
* CompartmentDefinition.description | ConceptMap.description |
* GraphDefinition.description | ImplementationGuide.description |
* MessageDefinition.description | NamingSystem.description |
* OperationDefinition.description | SearchParameter.description |
* StructureDefinition.description | StructureMap.description |
* TerminologyCapabilities.description | ValueSet.description
*
*/
public static final ca.uhn.fhir.rest.gclient.StringClientParam DESCRIPTION = new ca.uhn.fhir.rest.gclient.StringClientParam(
SP_DESCRIPTION);
/**
* Search parameter: jurisdiction
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): Intended jurisdiction for
* the capability statement [CodeSystem](codesystem.html): Intended jurisdiction
* for the code system [ConceptMap](conceptmap.html): Intended jurisdiction for
* the concept map [GraphDefinition](graphdefinition.html): Intended
* jurisdiction for the graph definition
* [ImplementationGuide](implementationguide.html): Intended jurisdiction for
* the implementation guide [MessageDefinition](messagedefinition.html):
* Intended jurisdiction for the message definition
* [NamingSystem](namingsystem.html): Intended jurisdiction for the naming
* system [OperationDefinition](operationdefinition.html): Intended jurisdiction
* for the operation definition [SearchParameter](searchparameter.html):
* Intended jurisdiction for the search parameter
* [StructureDefinition](structuredefinition.html): Intended jurisdiction for
* the structure definition [StructureMap](structuremap.html): Intended
* jurisdiction for the structure map
* [TerminologyCapabilities](terminologycapabilities.html): Intended
* jurisdiction for the terminology capabilities [ValueSet](valueset.html):
* Intended jurisdiction for the value set
* Type: token
* Path: CapabilityStatement.jurisdiction | CodeSystem.jurisdiction |
* ConceptMap.jurisdiction | GraphDefinition.jurisdiction |
* ImplementationGuide.jurisdiction | MessageDefinition.jurisdiction |
* NamingSystem.jurisdiction | OperationDefinition.jurisdiction |
* SearchParameter.jurisdiction | StructureDefinition.jurisdiction |
* StructureMap.jurisdiction | TerminologyCapabilities.jurisdiction |
* ValueSet.jurisdiction
*
*/
@SearchParamDefinition(name = "jurisdiction", path = "CapabilityStatement.jurisdiction | CodeSystem.jurisdiction | ConceptMap.jurisdiction | GraphDefinition.jurisdiction | ImplementationGuide.jurisdiction | MessageDefinition.jurisdiction | NamingSystem.jurisdiction | OperationDefinition.jurisdiction | SearchParameter.jurisdiction | StructureDefinition.jurisdiction | StructureMap.jurisdiction | TerminologyCapabilities.jurisdiction | ValueSet.jurisdiction", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): Intended jurisdiction for the capability statement\r\n* [CodeSystem](codesystem.html): Intended jurisdiction for the code system\r\n* [ConceptMap](conceptmap.html): Intended jurisdiction for the concept map\r\n* [GraphDefinition](graphdefinition.html): Intended jurisdiction for the graph definition\r\n* [ImplementationGuide](implementationguide.html): Intended jurisdiction for the implementation guide\r\n* [MessageDefinition](messagedefinition.html): Intended jurisdiction for the message definition\r\n* [NamingSystem](namingsystem.html): Intended jurisdiction for the naming system\r\n* [OperationDefinition](operationdefinition.html): Intended jurisdiction for the operation definition\r\n* [SearchParameter](searchparameter.html): Intended jurisdiction for the search parameter\r\n* [StructureDefinition](structuredefinition.html): Intended jurisdiction for the structure definition\r\n* [StructureMap](structuremap.html): Intended jurisdiction for the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): Intended jurisdiction for the terminology capabilities\r\n* [ValueSet](valueset.html): Intended jurisdiction for the value set\r\n", type = "token")
public static final String SP_JURISDICTION = "jurisdiction";
/**
* Fluent Client search parameter constant for jurisdiction
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): Intended jurisdiction for
* the capability statement [CodeSystem](codesystem.html): Intended jurisdiction
* for the code system [ConceptMap](conceptmap.html): Intended jurisdiction for
* the concept map [GraphDefinition](graphdefinition.html): Intended
* jurisdiction for the graph definition
* [ImplementationGuide](implementationguide.html): Intended jurisdiction for
* the implementation guide [MessageDefinition](messagedefinition.html):
* Intended jurisdiction for the message definition
* [NamingSystem](namingsystem.html): Intended jurisdiction for the naming
* system [OperationDefinition](operationdefinition.html): Intended jurisdiction
* for the operation definition [SearchParameter](searchparameter.html):
* Intended jurisdiction for the search parameter
* [StructureDefinition](structuredefinition.html): Intended jurisdiction for
* the structure definition [StructureMap](structuremap.html): Intended
* jurisdiction for the structure map
* [TerminologyCapabilities](terminologycapabilities.html): Intended
* jurisdiction for the terminology capabilities [ValueSet](valueset.html):
* Intended jurisdiction for the value set
* Type: token
* Path: CapabilityStatement.jurisdiction | CodeSystem.jurisdiction |
* ConceptMap.jurisdiction | GraphDefinition.jurisdiction |
* ImplementationGuide.jurisdiction | MessageDefinition.jurisdiction |
* NamingSystem.jurisdiction | OperationDefinition.jurisdiction |
* SearchParameter.jurisdiction | StructureDefinition.jurisdiction |
* StructureMap.jurisdiction | TerminologyCapabilities.jurisdiction |
* ValueSet.jurisdiction
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam JURISDICTION = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_JURISDICTION);
/**
* Search parameter: name
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): Computationally friendly
* name of the capability statement [CodeSystem](codesystem.html):
* Computationally friendly name of the code system
* [CompartmentDefinition](compartmentdefinition.html): Computationally friendly
* name of the compartment definition [ConceptMap](conceptmap.html):
* Computationally friendly name of the concept map
* [GraphDefinition](graphdefinition.html): Computationally friendly name of the
* graph definition [ImplementationGuide](implementationguide.html):
* Computationally friendly name of the implementation guide
* [MessageDefinition](messagedefinition.html): Computationally friendly name of
* the message definition [NamingSystem](namingsystem.html): Computationally
* friendly name of the naming system
* [OperationDefinition](operationdefinition.html): Computationally friendly
* name of the operation definition [SearchParameter](searchparameter.html):
* Computationally friendly name of the search parameter
* [StructureDefinition](structuredefinition.html): Computationally friendly
* name of the structure definition [StructureMap](structuremap.html):
* Computationally friendly name of the structure map
* [TerminologyCapabilities](terminologycapabilities.html): Computationally
* friendly name of the terminology capabilities [ValueSet](valueset.html):
* Computationally friendly name of the value set
* Type: string
* Path: CapabilityStatement.name | CodeSystem.name |
* CompartmentDefinition.name | ConceptMap.name | GraphDefinition.name |
* ImplementationGuide.name | MessageDefinition.name | NamingSystem.name |
* OperationDefinition.name | SearchParameter.name | StructureDefinition.name |
* StructureMap.name | TerminologyCapabilities.name | ValueSet.name
*
*/
@SearchParamDefinition(name = "name", path = "CapabilityStatement.name | CodeSystem.name | CompartmentDefinition.name | ConceptMap.name | GraphDefinition.name | ImplementationGuide.name | MessageDefinition.name | NamingSystem.name | OperationDefinition.name | SearchParameter.name | StructureDefinition.name | StructureMap.name | TerminologyCapabilities.name | ValueSet.name", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): Computationally friendly name of the capability statement\r\n* [CodeSystem](codesystem.html): Computationally friendly name of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): Computationally friendly name of the compartment definition\r\n* [ConceptMap](conceptmap.html): Computationally friendly name of the concept map\r\n* [GraphDefinition](graphdefinition.html): Computationally friendly name of the graph definition\r\n* [ImplementationGuide](implementationguide.html): Computationally friendly name of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): Computationally friendly name of the message definition\r\n* [NamingSystem](namingsystem.html): Computationally friendly name of the naming system\r\n* [OperationDefinition](operationdefinition.html): Computationally friendly name of the operation definition\r\n* [SearchParameter](searchparameter.html): Computationally friendly name of the search parameter\r\n* [StructureDefinition](structuredefinition.html): Computationally friendly name of the structure definition\r\n* [StructureMap](structuremap.html): Computationally friendly name of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): Computationally friendly name of the terminology capabilities\r\n* [ValueSet](valueset.html): Computationally friendly name of the value set\r\n", type = "string")
public static final String SP_NAME = "name";
/**
* Fluent Client search parameter constant for name
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): Computationally friendly
* name of the capability statement [CodeSystem](codesystem.html):
* Computationally friendly name of the code system
* [CompartmentDefinition](compartmentdefinition.html): Computationally friendly
* name of the compartment definition [ConceptMap](conceptmap.html):
* Computationally friendly name of the concept map
* [GraphDefinition](graphdefinition.html): Computationally friendly name of the
* graph definition [ImplementationGuide](implementationguide.html):
* Computationally friendly name of the implementation guide
* [MessageDefinition](messagedefinition.html): Computationally friendly name of
* the message definition [NamingSystem](namingsystem.html): Computationally
* friendly name of the naming system
* [OperationDefinition](operationdefinition.html): Computationally friendly
* name of the operation definition [SearchParameter](searchparameter.html):
* Computationally friendly name of the search parameter
* [StructureDefinition](structuredefinition.html): Computationally friendly
* name of the structure definition [StructureMap](structuremap.html):
* Computationally friendly name of the structure map
* [TerminologyCapabilities](terminologycapabilities.html): Computationally
* friendly name of the terminology capabilities [ValueSet](valueset.html):
* Computationally friendly name of the value set
* Type: string
* Path: CapabilityStatement.name | CodeSystem.name |
* CompartmentDefinition.name | ConceptMap.name | GraphDefinition.name |
* ImplementationGuide.name | MessageDefinition.name | NamingSystem.name |
* OperationDefinition.name | SearchParameter.name | StructureDefinition.name |
* StructureMap.name | TerminologyCapabilities.name | ValueSet.name
*
*/
public static final ca.uhn.fhir.rest.gclient.StringClientParam NAME = new ca.uhn.fhir.rest.gclient.StringClientParam(
SP_NAME);
/**
* Search parameter: publisher
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): Name of the publisher of the
* capability statement [CodeSystem](codesystem.html): Name of the publisher of
* the code system [CompartmentDefinition](compartmentdefinition.html): Name of
* the publisher of the compartment definition [ConceptMap](conceptmap.html):
* Name of the publisher of the concept map
* [GraphDefinition](graphdefinition.html): Name of the publisher of the graph
* definition [ImplementationGuide](implementationguide.html): Name of the
* publisher of the implementation guide
* [MessageDefinition](messagedefinition.html): Name of the publisher of the
* message definition [NamingSystem](namingsystem.html): Name of the publisher
* of the naming system [OperationDefinition](operationdefinition.html): Name of
* the publisher of the operation definition
* [SearchParameter](searchparameter.html): Name of the publisher of the search
* parameter [StructureDefinition](structuredefinition.html): Name of the
* publisher of the structure definition [StructureMap](structuremap.html): Name
* of the publisher of the structure map
* [TerminologyCapabilities](terminologycapabilities.html): Name of the
* publisher of the terminology capabilities [ValueSet](valueset.html): Name of
* the publisher of the value set
* Type: string
* Path: CapabilityStatement.publisher | CodeSystem.publisher |
* CompartmentDefinition.publisher | ConceptMap.publisher |
* GraphDefinition.publisher | ImplementationGuide.publisher |
* MessageDefinition.publisher | NamingSystem.publisher |
* OperationDefinition.publisher | SearchParameter.publisher |
* StructureDefinition.publisher | StructureMap.publisher |
* TerminologyCapabilities.publisher | ValueSet.publisher
*
*/
@SearchParamDefinition(name = "publisher", path = "CapabilityStatement.publisher | CodeSystem.publisher | CompartmentDefinition.publisher | ConceptMap.publisher | GraphDefinition.publisher | ImplementationGuide.publisher | MessageDefinition.publisher | NamingSystem.publisher | OperationDefinition.publisher | SearchParameter.publisher | StructureDefinition.publisher | StructureMap.publisher | TerminologyCapabilities.publisher | ValueSet.publisher", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): Name of the publisher of the capability statement\r\n* [CodeSystem](codesystem.html): Name of the publisher of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): Name of the publisher of the compartment definition\r\n* [ConceptMap](conceptmap.html): Name of the publisher of the concept map\r\n* [GraphDefinition](graphdefinition.html): Name of the publisher of the graph definition\r\n* [ImplementationGuide](implementationguide.html): Name of the publisher of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): Name of the publisher of the message definition\r\n* [NamingSystem](namingsystem.html): Name of the publisher of the naming system\r\n* [OperationDefinition](operationdefinition.html): Name of the publisher of the operation definition\r\n* [SearchParameter](searchparameter.html): Name of the publisher of the search parameter\r\n* [StructureDefinition](structuredefinition.html): Name of the publisher of the structure definition\r\n* [StructureMap](structuremap.html): Name of the publisher of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): Name of the publisher of the terminology capabilities\r\n* [ValueSet](valueset.html): Name of the publisher of the value set\r\n", type = "string")
public static final String SP_PUBLISHER = "publisher";
/**
* Fluent Client search parameter constant for publisher
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): Name of the publisher of the
* capability statement [CodeSystem](codesystem.html): Name of the publisher of
* the code system [CompartmentDefinition](compartmentdefinition.html): Name of
* the publisher of the compartment definition [ConceptMap](conceptmap.html):
* Name of the publisher of the concept map
* [GraphDefinition](graphdefinition.html): Name of the publisher of the graph
* definition [ImplementationGuide](implementationguide.html): Name of the
* publisher of the implementation guide
* [MessageDefinition](messagedefinition.html): Name of the publisher of the
* message definition [NamingSystem](namingsystem.html): Name of the publisher
* of the naming system [OperationDefinition](operationdefinition.html): Name of
* the publisher of the operation definition
* [SearchParameter](searchparameter.html): Name of the publisher of the search
* parameter [StructureDefinition](structuredefinition.html): Name of the
* publisher of the structure definition [StructureMap](structuremap.html): Name
* of the publisher of the structure map
* [TerminologyCapabilities](terminologycapabilities.html): Name of the
* publisher of the terminology capabilities [ValueSet](valueset.html): Name of
* the publisher of the value set
* Type: string
* Path: CapabilityStatement.publisher | CodeSystem.publisher |
* CompartmentDefinition.publisher | ConceptMap.publisher |
* GraphDefinition.publisher | ImplementationGuide.publisher |
* MessageDefinition.publisher | NamingSystem.publisher |
* OperationDefinition.publisher | SearchParameter.publisher |
* StructureDefinition.publisher | StructureMap.publisher |
* TerminologyCapabilities.publisher | ValueSet.publisher
*
*/
public static final ca.uhn.fhir.rest.gclient.StringClientParam PUBLISHER = new ca.uhn.fhir.rest.gclient.StringClientParam(
SP_PUBLISHER);
/**
* Search parameter: status
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): The current status of the
* capability statement [CodeSystem](codesystem.html): The current status of the
* code system [CompartmentDefinition](compartmentdefinition.html): The current
* status of the compartment definition [ConceptMap](conceptmap.html): The
* current status of the concept map [GraphDefinition](graphdefinition.html):
* The current status of the graph definition
* [ImplementationGuide](implementationguide.html): The current status of the
* implementation guide [MessageDefinition](messagedefinition.html): The current
* status of the message definition [NamingSystem](namingsystem.html): The
* current status of the naming system
* [OperationDefinition](operationdefinition.html): The current status of the
* operation definition [SearchParameter](searchparameter.html): The current
* status of the search parameter
* [StructureDefinition](structuredefinition.html): The current status of the
* structure definition [StructureMap](structuremap.html): The current status of
* the structure map [TerminologyCapabilities](terminologycapabilities.html):
* The current status of the terminology capabilities [ValueSet](valueset.html):
* The current status of the value set
* Type: token
* Path: CapabilityStatement.status | CodeSystem.status |
* CompartmentDefinition.status | ConceptMap.status | GraphDefinition.status |
* ImplementationGuide.status | MessageDefinition.status | NamingSystem.status |
* OperationDefinition.status | SearchParameter.status |
* StructureDefinition.status | StructureMap.status |
* TerminologyCapabilities.status | ValueSet.status
*
*/
@SearchParamDefinition(name = "status", path = "CapabilityStatement.status | CodeSystem.status | CompartmentDefinition.status | ConceptMap.status | GraphDefinition.status | ImplementationGuide.status | MessageDefinition.status | NamingSystem.status | OperationDefinition.status | SearchParameter.status | StructureDefinition.status | StructureMap.status | TerminologyCapabilities.status | ValueSet.status", description = "Multiple Resources: \r\n\r\n* [CapabilityStatement](capabilitystatement.html): The current status of the capability statement\r\n* [CodeSystem](codesystem.html): The current status of the code system\r\n* [CompartmentDefinition](compartmentdefinition.html): The current status of the compartment definition\r\n* [ConceptMap](conceptmap.html): The current status of the concept map\r\n* [GraphDefinition](graphdefinition.html): The current status of the graph definition\r\n* [ImplementationGuide](implementationguide.html): The current status of the implementation guide\r\n* [MessageDefinition](messagedefinition.html): The current status of the message definition\r\n* [NamingSystem](namingsystem.html): The current status of the naming system\r\n* [OperationDefinition](operationdefinition.html): The current status of the operation definition\r\n* [SearchParameter](searchparameter.html): The current status of the search parameter\r\n* [StructureDefinition](structuredefinition.html): The current status of the structure definition\r\n* [StructureMap](structuremap.html): The current status of the structure map\r\n* [TerminologyCapabilities](terminologycapabilities.html): The current status of the terminology capabilities\r\n* [ValueSet](valueset.html): The current status of the value set\r\n", type = "token")
public static final String SP_STATUS = "status";
/**
* Fluent Client search parameter constant for status
*
* Description: Multiple Resources:
*
* [CapabilityStatement](capabilitystatement.html): The current status of the
* capability statement [CodeSystem](codesystem.html): The current status of the
* code system [CompartmentDefinition](compartmentdefinition.html): The current
* status of the compartment definition [ConceptMap](conceptmap.html): The
* current status of the concept map [GraphDefinition](graphdefinition.html):
* The current status of the graph definition
* [ImplementationGuide](implementationguide.html): The current status of the
* implementation guide [MessageDefinition](messagedefinition.html): The current
* status of the message definition [NamingSystem](namingsystem.html): The
* current status of the naming system
* [OperationDefinition](operationdefinition.html): The current status of the
* operation definition [SearchParameter](searchparameter.html): The current
* status of the search parameter
* [StructureDefinition](structuredefinition.html): The current status of the
* structure definition [StructureMap](structuremap.html): The current status of
* the structure map [TerminologyCapabilities](terminologycapabilities.html):
* The current status of the terminology capabilities [ValueSet](valueset.html):
* The current status of the value set
* Type: token
* Path: CapabilityStatement.status | CodeSystem.status |
* CompartmentDefinition.status | ConceptMap.status | GraphDefinition.status |
* ImplementationGuide.status | MessageDefinition.status | NamingSystem.status |
* OperationDefinition.status | SearchParameter.status |
* StructureDefinition.status | StructureMap.status |
* TerminologyCapabilities.status | ValueSet.status
*
*/
public static final ca.uhn.fhir.rest.gclient.TokenClientParam STATUS = new ca.uhn.fhir.rest.gclient.TokenClientParam(
SP_STATUS);
@Override
public String getPurpose() {
return new String();
}
@Override
public MarkdownType getPurposeElement() {
return new MarkdownType();
}
@Override
public CanonicalResource setPurpose(String thePurpose) {
return this;
}
@Override
public CanonicalResource setPurposeElement(MarkdownType thePurpose) {
return this;
}
@Override
public boolean hasPurpose() {
return false;
}
@Override
public boolean hasPurposeElement() {
return false;
}
@Override
public String getCopyright() {
return new String();
}
@Override
public MarkdownType getCopyrightElement() {
return new MarkdownType();
}
@Override
public CanonicalResource setCopyright(String theCopyright) {
return this;
}
@Override
public CanonicalResource setCopyrightElement(MarkdownType theCopyright) {
return this;
}
@Override
public boolean hasCopyright() {
return false;
}
@Override
public boolean hasCopyrightElement() {
return false;
}
@Override
public String getUrl() {
return new String();
}
@Override
public UriType getUrlElement() {
return new UriType();
}
@Override
public CanonicalResource setUrl(String theUrl) {
return this;
}
@Override
public CanonicalResource setUrlElement(UriType theUrl) {
return this;
}
@Override
public boolean hasUrl() {
return false;
}
@Override
public boolean hasUrlElement() {
return false;
}
@Override
public boolean getExperimental() {
return false;
}
@Override
public BooleanType getExperimentalElement() {
return new BooleanType();
}
@Override
public CanonicalResource setExperimental(boolean theExperimental) {
return this;
}
@Override
public CanonicalResource setExperimentalElement(BooleanType theExperimental) {
return this;
}
@Override
public boolean hasExperimental() {
return false;
}
@Override
public boolean hasExperimentalElement() {
return false;
}
@Override
public String getVersion() {
return new String();
}
@Override
public StringType getVersionElement() {
return new StringType();
}
@Override
public CanonicalResource setVersion(String theVersion) {
return this;
}
@Override
public CanonicalResource setVersionElement(StringType theVersion) {
return this;
}
@Override
public boolean hasVersion() {
return false;
}
@Override
public boolean hasVersionElement() {
return false;
}
@Override
public List getIdentifier() {
return new ArrayList<>();
}
@Override
public CanonicalResource setIdentifier(List theIdentifier) {
return this;
}
@Override
public boolean hasIdentifier() {
return false;
}
@Override
public Identifier addIdentifier() {
return null;
}
@Override
public CanonicalResource addIdentifier(Identifier t) {
return null;
}
@Override
public Identifier getIdentifierFirstRep() {
return new Identifier();
}
@Override
public String getTitle() {
return new String();
}
@Override
public StringType getTitleElement() {
return new StringType();
}
@Override
public CanonicalResource setTitle(String theTitle) {
return this;
}
@Override
public CanonicalResource setTitleElement(StringType theTitle) {
return this;
}
@Override
public boolean hasTitle() {
return false;
}
@Override
public boolean hasTitleElement() {
return false;
}
// Manual code (from Configuration.txt):
public boolean supportsCopyright() {
return false;
}
// end addition
}