Class MapGroup
- java.lang.Object
-
- in.cdac.medinfo.csnotk.csnolib.icdmap.MapGroup
-
public class MapGroup extends java.lang.ObjectProvides SNOMED CT to ICD-10 mapping details for a group. Group has details of map target ICD-10 code and list of advices.- See Also:
MapAdvice
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddMapAdvice(MapAdvice mapAdvice)Adds a new advice to list of advices.java.util.List<MapAdvice>getMapAdvices()Returns the list of map advice.java.lang.StringgetMappedICDCode()Returns the mapped ICD-10 code.voidsetMapAdvices(java.util.List<MapAdvice> mapAdvices)Sets the list of map advice.voidsetMappedICDCode(java.lang.String mapTarget)Sets the mapped ICD-10 code.
-
-
-
Constructor Detail
-
MapGroup
public MapGroup()
Default constructor.
-
MapGroup
public MapGroup(java.lang.String mappedICDCode, java.util.List<MapAdvice> mapAdvices)Parameterized constructor.- Parameters:
mappedICDCode- map target ICD-10 codemapAdvices- list of mapping advice
-
-
Method Detail
-
getMappedICDCode
public java.lang.String getMappedICDCode()
Returns the mapped ICD-10 code.- Returns:
- ICD-10 code
-
setMappedICDCode
public void setMappedICDCode(java.lang.String mapTarget)
Sets the mapped ICD-10 code.- Parameters:
mapTarget- ICD-10 code
-
getMapAdvices
public java.util.List<MapAdvice> getMapAdvices()
Returns the list of map advice.- Returns:
- list of map advice
-
setMapAdvices
public void setMapAdvices(java.util.List<MapAdvice> mapAdvices)
Sets the list of map advice.- Parameters:
mapAdvices- list of map advice
-
addMapAdvice
public void addMapAdvice(MapAdvice mapAdvice)
Adds a new advice to list of advices.- Parameters:
mapAdvice- map advice to be added to the list
-
-