Package ca.uhn.fhir.context.support
Class ValueSetExpansionOptions
java.lang.Object
ca.uhn.fhir.context.support.ValueSetExpansionOptions
public class ValueSetExpansionOptions extends Object
Options for ValueSet expansion
- See Also:
IValidationSupport
-
Constructor Summary
Constructors Constructor Description ValueSetExpansionOptions()
-
Method Summary
Modifier and Type Method Description static ValueSetExpansionOptions
forOffsetAndCount(int theOffset, int theCount)
int
getCount()
The number of codes to return.int
getOffset()
The code index to start at (i.e the individual code index, not the page number)boolean
isFailOnMissingCodeSystem()
Should the expansion fail if a codesystem is referenced by the valueset, but it can not be found?ValueSetExpansionOptions
setCount(int theCount)
The number of codes to return.ValueSetExpansionOptions
setFailOnMissingCodeSystem(boolean theFailOnMissingCodeSystem)
Should the expansion fail if a codesystem is referenced by the valueset, but it can not be found?ValueSetExpansionOptions
setOffset(int theOffset)
The code index to start at (i.e the individual code index, not the page number)
-
Constructor Details
-
ValueSetExpansionOptions
public ValueSetExpansionOptions()
-
-
Method Details
-
getCount
The number of codes to return.Default is 1000
-
setCount
The number of codes to return.Default is 1000
-
getOffset
The code index to start at (i.e the individual code index, not the page number) -
setOffset
The code index to start at (i.e the individual code index, not the page number) -
isFailOnMissingCodeSystem
Should the expansion fail if a codesystem is referenced by the valueset, but it can not be found?Default is
true
-
setFailOnMissingCodeSystem
Should the expansion fail if a codesystem is referenced by the valueset, but it can not be found?Default is
true
-
forOffsetAndCount
-