Enum EndpointConnectionType
- java.lang.Object
-
- java.lang.Enum<EndpointConnectionType>
-
- org.hl7.fhir.r4.model.codesystems.EndpointConnectionType
-
- All Implemented Interfaces:
Serializable,Comparable<EndpointConnectionType>
public enum EndpointConnectionType extends Enum<EndpointConnectionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DICOMQIDORSDICOMweb RESTful Image query - http://dicom.nema.org/medical/dicom/current/output/chtml/part18/sect_6.7.htmlDICOMSTOWRSDICOMweb RESTful image sending and storage - http://dicom.nema.org/medical/dicom/current/output/chtml/part18/sect_6.6.htmlDICOMWADORSDICOMweb RESTful Image Retrieve - http://dicom.nema.org/medical/dicom/current/output/chtml/part18/sect_6.5.htmlDICOMWADOURIDICOMweb Image Retrieve - http://dicom.nema.org/dicom/2013/output/chtml/part18/sect_6.3.htmlDIRECTPROJECTDirect Project information - http://wiki.directproject.org/HL7FHIRMSGUse the servers FHIR Messaging interface.HL7FHIRRESTInteract with the server interface using FHIR's RESTful interface.HL7V2MLLPHL7v2 messages over an LLP TCP connectionIHEIIDIHE Invoke Image Display (IID) - http://wiki.ihe.net/index.php/Invoke_Image_DisplayIHEXCAIHE Cross Community Access Profile (XCA) - http://wiki.ihe.net/index.php/Cross-Community_AccessIHEXCPDIHE Cross Community Patient Discovery Profile (XCPD) - http://wiki.ihe.net/index.php/Cross-Community_Patient_DiscoveryIHEXDRIHE Cross-Enterprise Document Reliable Exchange (XDR) - http://wiki.ihe.net/index.php/Cross-enterprise_Document_Reliable_InterchangeIHEXDSIHE Cross-Enterprise Document Sharing (XDS) - http://wiki.ihe.net/index.php/Cross-Enterprise_Document_SharingNULLadded to help the parsersSECUREEMAILEmail delivery using a digital certificate to encrypt the content using the public key, receiver must have the private key to decrypt the content
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EndpointConnectionTypefromCode(String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()StringtoCode()static EndpointConnectionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static EndpointConnectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IHEXCPD
public static final EndpointConnectionType IHEXCPD
IHE Cross Community Patient Discovery Profile (XCPD) - http://wiki.ihe.net/index.php/Cross-Community_Patient_Discovery
-
IHEXCA
public static final EndpointConnectionType IHEXCA
IHE Cross Community Access Profile (XCA) - http://wiki.ihe.net/index.php/Cross-Community_Access
-
IHEXDR
public static final EndpointConnectionType IHEXDR
IHE Cross-Enterprise Document Reliable Exchange (XDR) - http://wiki.ihe.net/index.php/Cross-enterprise_Document_Reliable_Interchange
-
IHEXDS
public static final EndpointConnectionType IHEXDS
IHE Cross-Enterprise Document Sharing (XDS) - http://wiki.ihe.net/index.php/Cross-Enterprise_Document_Sharing
-
IHEIID
public static final EndpointConnectionType IHEIID
IHE Invoke Image Display (IID) - http://wiki.ihe.net/index.php/Invoke_Image_Display
-
DICOMWADORS
public static final EndpointConnectionType DICOMWADORS
DICOMweb RESTful Image Retrieve - http://dicom.nema.org/medical/dicom/current/output/chtml/part18/sect_6.5.html
-
DICOMQIDORS
public static final EndpointConnectionType DICOMQIDORS
DICOMweb RESTful Image query - http://dicom.nema.org/medical/dicom/current/output/chtml/part18/sect_6.7.html
-
DICOMSTOWRS
public static final EndpointConnectionType DICOMSTOWRS
DICOMweb RESTful image sending and storage - http://dicom.nema.org/medical/dicom/current/output/chtml/part18/sect_6.6.html
-
DICOMWADOURI
public static final EndpointConnectionType DICOMWADOURI
DICOMweb Image Retrieve - http://dicom.nema.org/dicom/2013/output/chtml/part18/sect_6.3.html
-
HL7FHIRREST
public static final EndpointConnectionType HL7FHIRREST
Interact with the server interface using FHIR's RESTful interface. For details on its version/capabilities you should connect the value in Endpoint.address and retrieve the FHIR CapabilityStatement.
-
HL7FHIRMSG
public static final EndpointConnectionType HL7FHIRMSG
Use the servers FHIR Messaging interface. Details can be found on the messaging.html page in the FHIR Specification. The FHIR server's base address is specified in the Endpoint.address property.
-
HL7V2MLLP
public static final EndpointConnectionType HL7V2MLLP
HL7v2 messages over an LLP TCP connection
-
SECUREEMAIL
public static final EndpointConnectionType SECUREEMAIL
Email delivery using a digital certificate to encrypt the content using the public key, receiver must have the private key to decrypt the content
-
DIRECTPROJECT
public static final EndpointConnectionType DIRECTPROJECT
Direct Project information - http://wiki.directproject.org/
-
NULL
public static final EndpointConnectionType NULL
added to help the parsers
-
-
Method Detail
-
values
public static EndpointConnectionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EndpointConnectionType c : EndpointConnectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EndpointConnectionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromCode
public static EndpointConnectionType fromCode(String codeString) throws org.hl7.fhir.exceptions.FHIRException
- Throws:
org.hl7.fhir.exceptions.FHIRException
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
-