Package ca.uhn.fhir.rest.param

Examples of ca.uhn.fhir.rest.param.StringParam


  @SuppressWarnings("unchecked")
  @Override
  public List<IQueryParameterOr<?>> encode(FhirContext theContext, Object theString) throws InternalErrorException {
    String retVal = ((String) theString);
    List<?> retValList = Collections.singletonList(MethodUtil.singleton(new StringParam(retVal)));
    return (List<IQueryParameterOr<?>>) retValList;
  }
View Full Code Here


  @SuppressWarnings("unchecked")
  @Override
  public List<IQueryParameterOr<?>> encode(FhirContext theContext, Object theString) throws InternalErrorException {
    String retVal = ((String) theString);
    List<?> retValList = Collections.singletonList(MethodUtil.singleton(new StringParam(retVal)));
    return (List<IQueryParameterOr<?>>) retValList;
  }
View Full Code Here

TOP

Related Classes of ca.uhn.fhir.rest.param.StringParam

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.