All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.ctakes.fhir.resource.FhirBasicParser Maven / Gradle / Ivy

package org.apache.ctakes.fhir.resource;

import org.apache.ctakes.core.util.Pair;
import org.apache.ctakes.fhir.element.FhirElementParser;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.uima.jcas.tcas.Annotation;
import org.hl7.fhir.dstu3.model.Basic;


/**
 * @author SPF , chip-nlp
 * @version %I%
 * @since 1/22/2018
 */
public interface FhirBasicParser extends FhirResourceParser {

   default void addTextSpan( final T type, final Basic resource, final Logger logger ) {
      final Pair textSpan = FhirElementParser.getTextSpan( resource.getExtension() );
      if ( textSpan == null ) {
         logger.error( "Could not parse text span for basic " + resource.getId() );
         return;
      }
      type.setBegin( textSpan.getValue1() );
      type.setEnd( textSpan.getValue2() );
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy