
Package ca.uhn.fhir.rest.param
Class CompositeParam<A extends IQueryParameterType,B extends IQueryParameterType>
- java.lang.Object
-
- ca.uhn.fhir.rest.param.BaseParam
-
- ca.uhn.fhir.rest.param.CompositeParam<A,B>
-
- All Implemented Interfaces:
IQueryParameterType
,Serializable
public class CompositeParam<A extends IQueryParameterType,B extends IQueryParameterType> extends BaseParam implements IQueryParameterType
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CompositeParam(A theLeftInstance, B theRightInstance)
CompositeParam(Class<A> theLeftType, Class<B> theRightType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description A
getLeftValue()
B
getRightValue()
String
toString()
-
Methods inherited from class ca.uhn.fhir.rest.param.BaseParam
getMissing, getQueryParameterQualifier, getValueAsQueryToken, isSupportsChain, setMissing, setValueAsQueryToken
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface ca.uhn.fhir.model.api.IQueryParameterType
getMissing, getQueryParameterQualifier, getValueAsQueryToken, setMissing, setValueAsQueryToken
-
-
-
-
Constructor Detail
-
CompositeParam
public CompositeParam(A theLeftInstance, B theRightInstance)
-
CompositeParam
public CompositeParam(Class<A> theLeftType, Class<B> theRightType)
-
-
Method Detail
-
getLeftValue
public A getLeftValue()
- Returns:
- Returns the left value for this parameter (the first of two parameters in this composite)
-
getRightValue
public B getRightValue()
- Returns:
- Returns the right value for this parameter (the second of two parameters in this composite)
-
-