![JAR search and dependency download from the Maven repository](/logo.png)
io.github.linuxforhealth.hl7.parsing.result.ParsingResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hl7v2-fhir-converter Show documentation
Show all versions of hl7v2-fhir-converter Show documentation
FHIR converter is a Java based library that enables converting Hl7v2 messages to FHIR resources
/*
* (C) Copyright IBM Corp. 2020
*
* SPDX-License-Identifier: Apache-2.0
*/
package io.github.linuxforhealth.hl7.parsing.result;
import java.util.List;
/**
* Represents the result of parsing HL7 message.
*
*
* @author {user}
*/
public interface ParsingResult {
/**
* Returns single value of type T. If the parsing returned multiple values, then this method would
* return the first occurrence of that value
*
* @return Value of type T
*/
T getValue();
/**
* Returns all values of type T .
*
* @return List of values of type T
*/
List getValues();
/**
* Returns True if this object has no value
*
* @return boolean
*/
boolean isEmpty();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy