
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
All Methods Static Methods Instance Methods Concrete Methods 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 Detail
-
ValueSetExpansionOptions
public ValueSetExpansionOptions()
-
-
Method Detail
-
getCount
public int getCount()
The number of codes to return.Default is 1000
-
setCount
public ValueSetExpansionOptions setCount(int theCount)
The number of codes to return.Default is 1000
-
getOffset
public int getOffset()
The code index to start at (i.e the individual code index, not the page number)
-
setOffset
public ValueSetExpansionOptions setOffset(int theOffset)
The code index to start at (i.e the individual code index, not the page number)
-
isFailOnMissingCodeSystem
public boolean isFailOnMissingCodeSystem()
Should the expansion fail if a codesystem is referenced by the valueset, but it can not be found?Default is
true
-
setFailOnMissingCodeSystem
public ValueSetExpansionOptions setFailOnMissingCodeSystem(boolean theFailOnMissingCodeSystem)
Should the expansion fail if a codesystem is referenced by the valueset, but it can not be found?Default is
true
-
forOffsetAndCount
public static ValueSetExpansionOptions forOffsetAndCount(int theOffset, int theCount)
-
-