Package | Description |
---|---|
org.openmrs |
These classes represent the core domain objects for the OpenMRS project.
|
org.openmrs.api |
The primary OpenMRS API interfaces.
|
org.openmrs.api.db |
OpenMRS database layer interfaces.
|
org.openmrs.api.db.hibernate |
Resources for Hibernate ORM.
|
org.openmrs.api.impl | |
org.openmrs.cohort |
Deprecated
|
org.openmrs.cohort.impl | |
org.openmrs.logic |
The OpenMRS Logic Service provides access to granular and derived
data.
|
org.openmrs.logic.datasource |
Logic data sources are responsible for providing data to the logic service engine.
|
org.openmrs.report |
Deprecated
|
org.openmrs.report.impl | |
org.openmrs.reporting |
Deprecated
|
org.openmrs.reporting.data | |
org.openmrs.reporting.export | |
org.openmrs.reporting.report | |
org.openmrs.web.dwr |
Modifier and Type | Method and Description |
---|---|
static Cohort |
Cohort.intersect(Cohort a,
Cohort b)
Returns the intersection of two cohorts, treating null as an empty cohort
|
static Cohort |
Cohort.subtract(Cohort a,
Cohort b)
Subtracts a cohort from a cohort
|
static Cohort |
Cohort.union(Cohort a,
Cohort b)
Returns the union of two cohorts
|
Modifier and Type | Method and Description |
---|---|
static Cohort |
Cohort.intersect(Cohort a,
Cohort b)
Returns the intersection of two cohorts, treating null as an empty cohort
|
static Cohort |
Cohort.subtract(Cohort a,
Cohort b)
Subtracts a cohort from a cohort
|
static Cohort |
Cohort.union(Cohort a,
Cohort b)
Returns the union of two cohorts
|
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortService.addPatientToCohort(Cohort cohort,
Patient patient)
Adds a new patient to a Cohort.
|
Cohort |
PatientSetService.convertPatientIdentifier(List<String> identifiers)
TODO write something here
|
Cohort |
CohortService.createCohort(Cohort cohort)
Deprecated.
replaced by saveCohort(Cohort)
|
Cohort |
CohortService.evaluate(CohortDefinition definition,
EvaluationContext evalContext)
Deprecated.
see reportingcompatibility module
|
Cohort |
PatientSetService.getAllPatients() |
Cohort |
CohortService.getCohort(Integer id)
Gets a Cohort by its database primary key
|
Cohort |
CohortService.getCohort(String name)
Gets a non voided Cohort by its name
|
Cohort |
CohortService.getCohortByUuid(String uuid)
Get Cohort by its UUID
|
Cohort |
PatientSetService.getInverseOfCohort(Cohort cohort)
Equivalent to Cohort.subtract(PatientSetService.getAllPatients(), cohort) but may eventually
perform faster by delegating to the database.
|
Cohort |
PatientSetService.getPatients(Integer start,
Integer size)
Get a batch of patients that are not voided in the database
|
Cohort |
PatientSetService.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate) |
Cohort |
PatientSetService.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly)
Get patients by specified gender, birthdate range, age range, and alive status (all optional)
|
Cohort |
PatientSetService.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly,
Date effectiveDate)
Get patients by specified gender, birthdate range, age range, and alive status (all optional)
|
Cohort |
PatientSetService.getPatientsByProgramAndState(Program program,
List<ProgramWorkflowState> stateList,
Date fromDate,
Date toDate)
Gets patients who are enrolled in the given program or in the given state(s) at the specified
time
|
Cohort |
PatientSetService.getPatientsHavingDateObs(Integer conceptId,
Date startTime,
Date endTime) |
Cohort |
PatientSetService.getPatientsHavingDrugOrder(Collection<Integer> patientIds,
Collection<Integer> takingIds,
Date onDate)
Returns a Cohort of patient who had drug orders for a set of drugs active on a certain date.
|
Cohort |
PatientSetService.getPatientsHavingDrugOrder(Collection<Integer> patientIds,
Collection<Integer> drugIds,
PatientSetService.GroupMethod groupMethod,
Date fromDate,
Date toDate)
Returns a Cohort of patient who had drug orders for a set of drugs active between a pair of
dates.
|
Cohort |
PatientSetService.getPatientsHavingDrugOrder(List<Drug> drug,
List<Concept> drugConcept,
Date startDateFrom,
Date startDateTo,
Date stopDateFrom,
Date stopDateTo,
Boolean discontinued,
List<Concept> discontinuedReason) |
Cohort |
PatientSetService.getPatientsHavingEncounters(EncounterType encounterType,
Location location,
Form form,
Date fromDate,
Date toDate,
Integer minCount,
Integer maxCount)
Searches for patients who have encounters as described by the arguments to this method
|
Cohort |
PatientSetService.getPatientsHavingEncounters(List<EncounterType> encounterTypeList,
Location location,
Form form,
Date fromDate,
Date toDate,
Integer minCount,
Integer maxCount)
Gets patients who have encounters as described by the parameters specified (all optional)
|
Cohort |
PatientSetService.getPatientsHavingLocation(Integer locationId) |
Cohort |
PatientSetService.getPatientsHavingLocation(Integer locationId,
PatientSetService.PatientLocationMethod method) |
Cohort |
PatientSetService.getPatientsHavingLocation(Location loc) |
Cohort |
PatientSetService.getPatientsHavingLocation(Location loc,
PatientSetService.PatientLocationMethod method) |
Cohort |
PatientSetService.getPatientsHavingNumericObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Number value,
Date fromDate,
Date toDate) |
Cohort |
PatientSetService.getPatientsHavingObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Object value,
Date fromDate,
Date toDate)
Searches for patients who have observations as described by the arguments to this method
|
Cohort |
PatientSetService.getPatientsHavingPersonAttribute(PersonAttributeType attribute,
String value)
At least one of attribute and value must be non-null
|
Cohort |
PatientSetService.getPatientsHavingTextObs(Concept concept,
String value,
PatientSetService.TimeModifier timeModifier) |
Cohort |
PatientSetService.getPatientsHavingTextObs(Integer conceptId,
String value,
PatientSetService.TimeModifier timeModifier) |
Cohort |
PatientSetService.getPatientsInProgram(Program program,
Date fromDate,
Date toDate) |
Cohort |
CohortService.purgeCohort(Cohort cohort)
Completely removes a Cohort from the database (not reversible)
|
Cohort |
CohortService.removePatientFromCohort(Cohort cohort,
Patient patient)
Removes a patient from a Cohort.
|
Cohort |
CohortService.saveCohort(Cohort cohort)
Save a cohort to the database (create if new, or update if changed) This method will throw an
exception if any patientIds in the Cohort don't exist.
|
Cohort |
CohortService.updateCohort(Cohort cohort)
Deprecated.
replaced by saveCohort(Cohort)
|
Cohort |
CohortService.voidCohort(Cohort cohort,
String reason)
Voids the given cohort, deleting it from the perspective of the typical end user.
|
Modifier and Type | Method and Description |
---|---|
List<Cohort> |
CohortService.getAllCohorts()
Gets all Cohorts (not including voided ones)
|
List<Cohort> |
CohortService.getAllCohorts(boolean includeVoided)
Gets all Cohorts, possibly including the voided ones
|
List<Cohort> |
CohortService.getCohorts()
Deprecated.
replaced by getAllCohorts()
|
List<Cohort> |
CohortService.getCohorts(String nameFragment)
Returns Cohorts whose names match the given string.
|
List<Cohort> |
CohortService.getCohortsContainingPatient(Patient patient)
Find all Cohorts that contain the given patient.
|
List<Cohort> |
CohortService.getCohortsContainingPatientId(Integer patientId)
Find all Cohorts that contain the given patientId.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortService.addPatientToCohort(Cohort cohort,
Patient patient)
Adds a new patient to a Cohort.
|
Cohort |
CohortService.createCohort(Cohort cohort)
Deprecated.
replaced by saveCohort(Cohort)
|
DataSet |
DataSetService.evaluate(DataSetDefinition definition,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
Evaluate a data set definition to get turn it into a DataSet
|
ReportData |
ReportService.evaluate(ReportSchema reportSchema,
Cohort inputCohort,
EvaluationContext context)
Deprecated.
This method evaluates a ReportSchema object for the given EvaluationContext and input Cohort.
|
String |
PatientSetService.exportXml(Cohort ps)
Export a set of patients to an XML
|
Map<Integer,List<Encounter>> |
EncounterService.getAllEncounters(Cohort patients)
Get all encounters for a cohort of patients
|
Map<Integer,Map<String,Object>> |
PatientSetService.getCharacteristics(Cohort patients)
TODO write something here
|
Map<Integer,List<DrugOrder>> |
PatientSetService.getCurrentDrugOrders(Cohort ps,
Concept drugSet) |
Map<Integer,PatientProgram> |
PatientSetService.getCurrentPatientPrograms(Cohort ps,
Program program) |
Map<Integer,PatientState> |
PatientSetService.getCurrentStates(Cohort ps,
ProgramWorkflow wf)
Gets statistical information about current states of patients within given cohort for specific program workflow
|
Map<Integer,List<DrugOrder>> |
PatientSetService.getDrugOrders(Cohort ps,
Concept drugSet) |
Map<Integer,Object> |
PatientSetService.getEncounterAttrsByType(Cohort patients,
List<EncounterType> encTypes,
String attr)
TODO write something here
|
Map<Integer,Encounter> |
PatientSetService.getEncounters(Cohort patients)
This method returns a map of patients matched against their most recent encounters given a
Cohort of patients, see
EncounterService.getAllEncounters(Cohort) which gets a map of
patient matched against lists of all their encounters. |
List<Encounter> |
PatientSetService.getEncountersByForm(Cohort patients,
List<Form> form)
Gets a list of encounters associated with the given form, filtered by the given patient set.
|
Map<Integer,Encounter> |
PatientSetService.getEncountersByType(Cohort patients,
EncounterType encType)
TODO write something here
|
Map<Integer,Encounter> |
PatientSetService.getEncountersByType(Cohort patients,
List<EncounterType> encType)
TODO write something here
|
Map<Integer,Object> |
PatientSetService.getFirstEncounterAttrsByType(Cohort patients,
List<EncounterType> encTypes,
String attr)
TODO write something here
|
Map<Integer,Encounter> |
PatientSetService.getFirstEncountersByType(Cohort patients,
EncounterType encType)
TODO write something here
|
Map<Integer,Encounter> |
PatientSetService.getFirstEncountersByType(Cohort patients,
List<EncounterType> types)
TODO write something here
|
Cohort |
PatientSetService.getInverseOfCohort(Cohort cohort)
Equivalent to Cohort.subtract(PatientSetService.getAllPatients(), cohort) but may eventually
perform faster by delegating to the database.
|
Map<Integer,List<Obs>> |
PatientSetService.getObservations(Cohort patients,
Concept concept) |
Map<Integer,List<Obs>> |
PatientSetService.getObservations(Cohort patients,
Concept concept,
Date fromDate,
Date toDate)
Date range is inclusive of both endpoints
|
List<Obs> |
ObsService.getObservations(Cohort patients,
List<Concept> concepts,
Date fromDate,
Date toDate)
|
Map<Integer,List<List<Object>>> |
PatientSetService.getObservationsValues(Cohort patients,
Concept c)
TODO write something here
|
Map<Integer,List<List<Object>>> |
PatientSetService.getObservationsValues(Cohort patients,
Concept c,
List<String> attributes)
Deprecated.
|
Map<Integer,List<List<Object>>> |
PatientSetService.getObservationsValues(Cohort patients,
Concept c,
List<String> attributes,
Integer limit,
boolean showMostRecentFirst)
Returns a mapping from patient id to obs for concept
c |
Map<Integer,Object> |
PatientSetService.getPatientAttributes(Cohort patients,
String classNameDotProperty,
boolean returnAll)
TODO write something here
|
Map<Integer,Object> |
PatientSetService.getPatientAttributes(Cohort patients,
String className,
String property,
boolean returnAll)
TODO write something here
|
Map<Integer,PatientIdentifier> |
PatientSetService.getPatientIdentifiersByType(Cohort patients,
PatientIdentifierType type)
Deprecated.
use method by same name that returns just the string instead of the whole object
|
Map<Integer,String> |
PatientSetService.getPatientIdentifierStringsByType(Cohort patients,
PatientIdentifierType type)
Gets a map of patient identifiers values by identifier type, indexed by patient primary key.
|
List<PatientProgram> |
ProgramWorkflowService.getPatientPrograms(Cohort cohort,
Collection<Program> programs)
TODO: refactor?
|
Map<Integer,PatientProgram> |
PatientSetService.getPatientPrograms(Cohort ps,
Program program)
Gets program enrollment data for the given cohort in the given program.
|
Map<Integer,Object> |
PatientSetService.getPersonAttributes(Cohort patients,
String attributeName,
String joinClass,
String joinProperty,
String outputColumn,
boolean returnAll) |
Map<Integer,List<Relationship>> |
PatientSetService.getRelationships(Cohort ps,
RelationshipType relType) |
Map<Integer,List<Person>> |
PatientSetService.getRelatives(Cohort ps,
RelationshipType relType,
boolean forwards) |
Cohort |
CohortService.purgeCohort(Cohort cohort)
Completely removes a Cohort from the database (not reversible)
|
Cohort |
CohortService.removePatientFromCohort(Cohort cohort,
Patient patient)
Removes a patient from a Cohort.
|
Cohort |
CohortService.saveCohort(Cohort cohort)
Save a cohort to the database (create if new, or update if changed) This method will throw an
exception if any patientIds in the Cohort don't exist.
|
Cohort |
CohortService.updateCohort(Cohort cohort)
Deprecated.
replaced by saveCohort(Cohort)
|
Cohort |
CohortService.voidCohort(Cohort cohort,
String reason)
Voids the given cohort, deleting it from the perspective of the typical end user.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
PatientSetDAO.convertPatientIdentifier(List<String> identifiers) |
Cohort |
CohortDAO.deleteCohort(Cohort cohort)
Removes a cohort from the database
|
Cohort |
PatientSetDAO.getAllPatients() |
Cohort |
CohortDAO.getCohort(Integer id)
Finds the cohort with the given primary key
|
Cohort |
CohortDAO.getCohort(String name)
Finds a cohort by name
|
Cohort |
CohortDAO.getCohortByUuid(String uuid)
Auto generated method comment
|
Cohort |
PatientSetDAO.getPatients(Integer start,
Integer size) |
Cohort |
PatientSetDAO.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly) |
Cohort |
PatientSetDAO.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly,
Date effectiveDate) |
Cohort |
PatientSetDAO.getPatientsByProgramAndState(Program program,
List<ProgramWorkflowState> stateList,
Date fromDate,
Date toDate) |
Cohort |
PatientSetDAO.getPatientsByRelationship(RelationshipType relType,
boolean includeAtoB,
boolean includeBtoA,
Person target)
Returns the cohort of patients matching a particular relationship search.
|
Cohort |
PatientSetDAO.getPatientsHavingDateObs(Integer conceptId,
Date startTime,
Date endTime) |
Cohort |
PatientSetDAO.getPatientsHavingDrugOrder(List<Drug> drugList,
List<Concept> drugConceptList,
Date startDateFrom,
Date startDateTo,
Date stopDateFrom,
Date stopDateTo,
Boolean discontinued,
List<Concept> discontinuedReason) |
Cohort |
PatientSetDAO.getPatientsHavingEncounters(List<EncounterType> encounterTypeList,
Location location,
Form form,
Date fromDate,
Date toDate,
Integer minCount,
Integer maxCount) |
Cohort |
PatientSetDAO.getPatientsHavingLocation(Integer locationId,
PatientSetService.PatientLocationMethod method) |
Cohort |
PatientSetDAO.getPatientsHavingNumericObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Number value,
Date fromDate,
Date toDate) |
Cohort |
PatientSetDAO.getPatientsHavingObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Object value,
Date fromDate,
Date toDate) |
Cohort |
PatientSetDAO.getPatientsHavingPersonAttribute(PersonAttributeType attribute,
String value) |
Cohort |
PatientSetDAO.getPatientsHavingTextObs(Integer conceptId,
String value,
PatientSetService.TimeModifier timeModifier) |
Cohort |
PatientSetDAO.getPatientsInProgram(Integer programId,
Date fromDate,
Date toDate) |
Cohort |
CohortDAO.saveCohort(Cohort cohort)
Saves a Cohort to the database
|
Modifier and Type | Method and Description |
---|---|
List<Cohort> |
CohortDAO.getAllCohorts(boolean includeVoided)
Gets all cohorts in the database
|
List<Cohort> |
CohortDAO.getCohorts(String nameFragment)
Finds all Cohorts with matching names
|
List<Cohort> |
CohortDAO.getCohortsContainingPatientId(Integer patientId)
Finds all cohorts that contain the given patientId
|
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortDAO.deleteCohort(Cohort cohort)
Removes a cohort from the database
|
String |
PatientSetDAO.exportXml(Cohort ps)
Deprecated.
|
Map<Integer,List<Encounter>> |
EncounterDAO.getAllEncounters(Cohort patients) |
Map<Integer,Map<String,Object>> |
PatientSetDAO.getCharacteristics(Cohort patients) |
Map<Integer,List<DrugOrder>> |
PatientSetDAO.getCurrentDrugOrders(Cohort ps,
List<Concept> drugConcepts) |
Map<Integer,PatientState> |
PatientSetDAO.getCurrentStates(Cohort ps,
ProgramWorkflow wf) |
Map<Integer,List<DrugOrder>> |
PatientSetDAO.getDrugOrders(Cohort ps,
List<Concept> drugConcepts) |
Map<Integer,Object> |
PatientSetDAO.getEncounterAttrsByType(Cohort patients,
List<EncounterType> encTypes,
String attr,
Boolean earliestFirst) |
Map<Integer,Encounter> |
PatientSetDAO.getEncounters(Cohort patients) |
List<Encounter> |
PatientSetDAO.getEncountersByForm(Cohort patients,
List<Form> forms) |
Map<Integer,Encounter> |
PatientSetDAO.getEncountersByType(Cohort patients,
List<EncounterType> encType) |
Map<Integer,Encounter> |
PatientSetDAO.getFirstEncountersByType(Cohort patients,
List<EncounterType> encType) |
Map<Integer,List<Obs>> |
PatientSetDAO.getObservations(Cohort patients,
Concept concept,
Date fromDate,
Date toDate) |
Map<Integer,List<List<Object>>> |
PatientSetDAO.getObservationsValues(Cohort patients,
Concept c,
List<String> attributes,
Integer limit,
boolean showMostRecentFirst) |
Map<Integer,Object> |
PatientSetDAO.getPatientAttributes(Cohort patients,
String className,
String property,
boolean returnAll) |
Map<Integer,String> |
PatientSetDAO.getPatientIdentifierByType(Cohort patients,
List<PatientIdentifierType> types) |
List<PatientProgram> |
ProgramWorkflowDAO.getPatientPrograms(Cohort cohort,
Collection<Program> programs) |
Map<Integer,PatientProgram> |
PatientSetDAO.getPatientPrograms(Cohort ps,
Program program,
boolean includeVoided,
boolean includePast) |
Map<Integer,Object> |
PatientSetDAO.getPersonAttributes(Cohort patients,
String attributeName,
String joinClass,
String joinProperty,
String outputColumn,
boolean returnAll) |
Map<Integer,List<Relationship>> |
PatientSetDAO.getRelationships(Cohort ps,
RelationshipType relType) |
Map<Integer,List<Person>> |
PatientSetDAO.getRelatives(Cohort ps,
RelationshipType relType,
boolean forwards) |
Cohort |
CohortDAO.saveCohort(Cohort cohort)
Saves a Cohort to the database
|
Modifier and Type | Method and Description |
---|---|
Cohort |
HibernatePatientSetDAO.convertPatientIdentifier(List<String> identifiers) |
Cohort |
HibernateCohortDAO.deleteCohort(Cohort cohort) |
Cohort |
HibernatePatientSetDAO.getAllPatients() |
Cohort |
HibernateCohortDAO.getCohort(Integer id) |
Cohort |
HibernateCohortDAO.getCohort(String name) |
Cohort |
HibernateCohortDAO.getCohortByUuid(String uuid) |
Cohort |
HibernatePatientSetDAO.getPatients(Integer start,
Integer size) |
Cohort |
HibernatePatientSetDAO.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly) |
Cohort |
HibernatePatientSetDAO.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly,
Date effectiveDate) |
Cohort |
HibernatePatientSetDAO.getPatientsByProgramAndState(Program program,
List<ProgramWorkflowState> stateList,
Date fromDate,
Date toDate)
TODO: Fails to leave out patients who are voided Returns the set of patients that were in a
given program, workflow, and state, within a given date range
|
Cohort |
HibernatePatientSetDAO.getPatientsByRelationship(RelationshipType relType,
boolean includeAtoB,
boolean includeBtoA,
Person target)
TODO get rid of the potentially-expensive call to getAllPatients()
|
Cohort |
HibernatePatientSetDAO.getPatientsHavingDateObs(Integer conceptId,
Date startTime,
Date endTime)
TODO: don't return voided patients Gets all patients with an obs's value_date column value
within
startTime and endTime |
Cohort |
HibernatePatientSetDAO.getPatientsHavingDrugOrder(List<Drug> drugList,
List<Concept> drugConceptList,
Date startDateFrom,
Date startDateTo,
Date stopDateFrom,
Date stopDateTo,
Boolean discontinued,
List<Concept> discontinuedReason) |
Cohort |
HibernatePatientSetDAO.getPatientsHavingEncounters(List<EncounterType> encounterTypeList,
Location location,
Form form,
Date fromDate,
Date toDate,
Integer minCount,
Integer maxCount)
Returns the set of patients that have encounters, with several optional parameters:
of type encounterType
at a given location
from filling out a specific form
on or after fromDate
on or before toDate
patients with at least minCount of the given encounters
patients with up to maxCount of the given encounters
|
Cohort |
HibernatePatientSetDAO.getPatientsHavingLocation(Integer locationId,
PatientSetService.PatientLocationMethod method) |
Cohort |
HibernatePatientSetDAO.getPatientsHavingNumericObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Number value,
Date fromDate,
Date toDate) |
Cohort |
HibernatePatientSetDAO.getPatientsHavingObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Object value,
Date fromDate,
Date toDate) |
Cohort |
HibernatePatientSetDAO.getPatientsHavingPersonAttribute(PersonAttributeType attribute,
String value) |
Cohort |
HibernatePatientSetDAO.getPatientsHavingTextObs(Integer conceptId,
String value,
PatientSetService.TimeModifier timeModifier) |
Cohort |
HibernatePatientSetDAO.getPatientsInProgram(Integer programId,
Date fromDate,
Date toDate)
TODO: Don't return voided patients Returns the set of patients that were ever in enrolled in
a given program.
|
Cohort |
HibernateCohortDAO.saveCohort(Cohort cohort) |
Modifier and Type | Method and Description |
---|---|
List<Cohort> |
HibernateCohortDAO.getAllCohorts(boolean includeVoided) |
List<Cohort> |
HibernateCohortDAO.getCohorts(String nameFragment) |
List<Cohort> |
HibernateCohortDAO.getCohortsContainingPatientId(Integer patientId) |
Modifier and Type | Method and Description |
---|---|
Cohort |
HibernateCohortDAO.deleteCohort(Cohort cohort) |
String |
HibernatePatientSetDAO.exportXml(Cohort ps)
Deprecated.
|
Map<Integer,List<Encounter>> |
HibernateEncounterDAO.getAllEncounters(Cohort patients) |
Map<Integer,Map<String,Object>> |
HibernatePatientSetDAO.getCharacteristics(Cohort patients) |
Map<Integer,List<DrugOrder>> |
HibernatePatientSetDAO.getCurrentDrugOrders(Cohort patients,
List<Concept> drugConcepts) |
Map<Integer,PatientState> |
HibernatePatientSetDAO.getCurrentStates(Cohort ps,
ProgramWorkflow wf) |
Map<Integer,List<DrugOrder>> |
HibernatePatientSetDAO.getDrugOrders(Cohort patients,
List<Concept> drugConcepts) |
Map<Integer,Object> |
HibernatePatientSetDAO.getEncounterAttrsByType(Cohort patients,
List<EncounterType> encTypes,
String attr,
Boolean earliestFirst) |
Map<Integer,Encounter> |
HibernatePatientSetDAO.getEncounters(Cohort patients) |
List<Encounter> |
HibernatePatientSetDAO.getEncountersByForm(Cohort patients,
List<Form> forms)
Gets a list of encounters associated with the given form, filtered by the given patient set.
|
Map<Integer,Encounter> |
HibernatePatientSetDAO.getEncountersByType(Cohort patients,
List<EncounterType> encTypes) |
Map<Integer,Encounter> |
HibernatePatientSetDAO.getFirstEncountersByType(Cohort patients,
List<EncounterType> types) |
Map<Integer,List<Obs>> |
HibernatePatientSetDAO.getObservations(Cohort patients,
Concept concept,
Date fromDate,
Date toDate) |
Map<Integer,List<List<Object>>> |
HibernatePatientSetDAO.getObservationsValues(Cohort patients,
Concept c,
List<String> attributes,
Integer limit,
boolean showMostRecentFirst) |
Map<Integer,Object> |
HibernatePatientSetDAO.getPatientAttributes(Cohort patients,
String className,
String property,
boolean returnAll) |
Map<Integer,String> |
HibernatePatientSetDAO.getPatientIdentifierByType(Cohort patients,
List<PatientIdentifierType> types) |
List<PatientProgram> |
HibernateProgramWorkflowDAO.getPatientPrograms(Cohort cohort,
Collection<Program> programs)
TODO: refactor this
|
Map<Integer,PatientProgram> |
HibernatePatientSetDAO.getPatientPrograms(Cohort ps,
Program program,
boolean includeVoided,
boolean includePast)
This method assumes the patient is not simultaneously enrolled in the program more than once.
|
Map<Integer,Object> |
HibernatePatientSetDAO.getPersonAttributes(Cohort patients,
String attributeTypeName,
String joinClass,
String joinProperty,
String outputColumn,
boolean returnAll) |
Map<Integer,List<Relationship>> |
HibernatePatientSetDAO.getRelationships(Cohort patients,
RelationshipType relType) |
Map<Integer,List<Person>> |
HibernatePatientSetDAO.getRelatives(Cohort patients,
RelationshipType relType,
boolean forwards) |
Cohort |
HibernateCohortDAO.saveCohort(Cohort cohort) |
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortServiceImpl.addPatientToCohort(Cohort cohort,
Patient patient) |
Cohort |
PatientSetServiceImpl.convertPatientIdentifier(List<String> identifiers) |
Cohort |
CohortServiceImpl.createCohort(Cohort cohort)
Deprecated.
|
Cohort |
CohortServiceImpl.evaluate(CohortDefinition definition,
EvaluationContext evalContext)
Deprecated.
see reportingcompatibility module
|
Cohort |
PatientSetServiceImpl.getAllPatients() |
Cohort |
CohortServiceImpl.getCohort(Integer id) |
Cohort |
CohortServiceImpl.getCohort(String name) |
Cohort |
CohortServiceImpl.getCohortByUuid(String uuid) |
Cohort |
PatientSetServiceImpl.getInverseOfCohort(Cohort cohort) |
Cohort |
PatientSetServiceImpl.getPatients(Integer start,
Integer size) |
Cohort |
PatientSetServiceImpl.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate) |
Cohort |
PatientSetServiceImpl.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly) |
Cohort |
PatientSetServiceImpl.getPatientsByCharacteristics(String gender,
Date minBirthdate,
Date maxBirthdate,
Integer minAge,
Integer maxAge,
Boolean aliveOnly,
Boolean deadOnly,
Date effectiveDate) |
Cohort |
PatientSetServiceImpl.getPatientsByProgramAndState(Program program,
List<ProgramWorkflowState> stateList,
Date fromDate,
Date toDate) |
Cohort |
PatientSetServiceImpl.getPatientsHavingDateObs(Integer conceptId,
Date startTime,
Date endTime) |
Cohort |
PatientSetServiceImpl.getPatientsHavingDrugOrder(Collection<Integer> patientIds,
Collection<Integer> takingIds,
Date onDate)
Returns a PatientSet of patient who had drug orders for a set of drugs active on a certain
date.
|
Cohort |
PatientSetServiceImpl.getPatientsHavingDrugOrder(Collection<Integer> patientIds,
Collection<Integer> drugIds,
PatientSetService.GroupMethod groupMethod,
Date fromDate,
Date toDate) |
Cohort |
PatientSetServiceImpl.getPatientsHavingDrugOrder(List<Drug> drug,
List<Concept> drugConcept,
Date startDateFrom,
Date startDateTo,
Date stopDateFrom,
Date stopDateTo,
Boolean discontinued,
List<Concept> discontinuedReason) |
Cohort |
PatientSetServiceImpl.getPatientsHavingEncounters(EncounterType encounterType,
Location location,
Form form,
Date fromDate,
Date toDate,
Integer minCount,
Integer maxCount) |
Cohort |
PatientSetServiceImpl.getPatientsHavingEncounters(List<EncounterType> encounterTypeList,
Location location,
Form form,
Date fromDate,
Date toDate,
Integer minCount,
Integer maxCount) |
Cohort |
PatientSetServiceImpl.getPatientsHavingLocation(Integer locationId) |
Cohort |
PatientSetServiceImpl.getPatientsHavingLocation(Integer locationId,
PatientSetService.PatientLocationMethod method) |
Cohort |
PatientSetServiceImpl.getPatientsHavingLocation(Location loc) |
Cohort |
PatientSetServiceImpl.getPatientsHavingLocation(Location loc,
PatientSetService.PatientLocationMethod method) |
Cohort |
PatientSetServiceImpl.getPatientsHavingNumericObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Number value,
Date fromDate,
Date toDate) |
Cohort |
PatientSetServiceImpl.getPatientsHavingObs(Integer conceptId,
PatientSetService.TimeModifier timeModifier,
PatientSetService.Modifier modifier,
Object value,
Date fromDate,
Date toDate) |
Cohort |
PatientSetServiceImpl.getPatientsHavingPersonAttribute(PersonAttributeType attribute,
String value) |
Cohort |
PatientSetServiceImpl.getPatientsHavingTextObs(Concept concept,
String value,
PatientSetService.TimeModifier timeModifier) |
Cohort |
PatientSetServiceImpl.getPatientsHavingTextObs(Integer conceptId,
String value,
PatientSetService.TimeModifier timeModifier) |
Cohort |
PatientSetServiceImpl.getPatientsInProgram(Program program,
Date fromDate,
Date toDate) |
Cohort |
CohortServiceImpl.purgeCohort(Cohort cohort) |
Cohort |
CohortServiceImpl.removePatientFromCohort(Cohort cohort,
Patient patient) |
Cohort |
CohortServiceImpl.saveCohort(Cohort cohort) |
Cohort |
CohortServiceImpl.updateCohort(Cohort cohort)
Deprecated.
|
Cohort |
CohortServiceImpl.voidCohort(Cohort cohort,
String reason) |
Modifier and Type | Method and Description |
---|---|
List<Cohort> |
CohortServiceImpl.getAllCohorts() |
List<Cohort> |
CohortServiceImpl.getAllCohorts(boolean includeVoided) |
List<Cohort> |
CohortServiceImpl.getCohorts()
Deprecated.
|
List<Cohort> |
CohortServiceImpl.getCohorts(String nameFragment) |
List<Cohort> |
CohortServiceImpl.getCohortsContainingPatient(Patient patient) |
List<Cohort> |
CohortServiceImpl.getCohortsContainingPatientId(Integer patientId) |
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortServiceImpl.addPatientToCohort(Cohort cohort,
Patient patient) |
Cohort |
CohortServiceImpl.createCohort(Cohort cohort)
Deprecated.
|
String |
PatientSetServiceImpl.exportXml(Cohort ps) |
Map<Integer,List<Encounter>> |
EncounterServiceImpl.getAllEncounters(Cohort patients) |
Map<Integer,Map<String,Object>> |
PatientSetServiceImpl.getCharacteristics(Cohort patients) |
Map<Integer,List<DrugOrder>> |
PatientSetServiceImpl.getCurrentDrugOrders(Cohort ps,
Concept drugSet) |
Map<Integer,PatientProgram> |
PatientSetServiceImpl.getCurrentPatientPrograms(Cohort ps,
Program program) |
Map<Integer,PatientState> |
PatientSetServiceImpl.getCurrentStates(Cohort ps,
ProgramWorkflow wf) |
Map<Integer,List<DrugOrder>> |
PatientSetServiceImpl.getDrugOrders(Cohort ps,
Concept drugSet) |
Map<Integer,Object> |
PatientSetServiceImpl.getEncounterAttrsByType(Cohort patients,
List<EncounterType> encTypes,
String attr) |
Map<Integer,Encounter> |
PatientSetServiceImpl.getEncounters(Cohort patients) |
List<Encounter> |
PatientSetServiceImpl.getEncountersByForm(Cohort patients,
List<Form> forms)
Gets a list of encounters associated with the given form, filtered by the given patient set.
|
Map<Integer,Encounter> |
PatientSetServiceImpl.getEncountersByType(Cohort patients,
EncounterType encType) |
Map<Integer,Encounter> |
PatientSetServiceImpl.getEncountersByType(Cohort patients,
List<EncounterType> types) |
Map<Integer,Object> |
PatientSetServiceImpl.getFirstEncounterAttrsByType(Cohort patients,
List<EncounterType> encTypes,
String attr) |
Map<Integer,Encounter> |
PatientSetServiceImpl.getFirstEncountersByType(Cohort patients,
EncounterType encType) |
Map<Integer,Encounter> |
PatientSetServiceImpl.getFirstEncountersByType(Cohort patients,
List<EncounterType> types) |
Cohort |
PatientSetServiceImpl.getInverseOfCohort(Cohort cohort) |
Map<Integer,List<Obs>> |
PatientSetServiceImpl.getObservations(Cohort patients,
Concept concept) |
Map<Integer,List<Obs>> |
PatientSetServiceImpl.getObservations(Cohort patients,
Concept concept,
Date fromDate,
Date toDate)
Date range is inclusive of both endpoints
|
List<Obs> |
ObsServiceImpl.getObservations(Cohort patients,
List<Concept> concepts,
Date fromDate,
Date toDate)
Deprecated.
|
Map<Integer,List<List<Object>>> |
PatientSetServiceImpl.getObservationsValues(Cohort patients,
Concept c) |
Map<Integer,List<List<Object>>> |
PatientSetServiceImpl.getObservationsValues(Cohort patients,
Concept c,
List<String> attributes)
Deprecated.
|
Map<Integer,List<List<Object>>> |
PatientSetServiceImpl.getObservationsValues(Cohort patients,
Concept c,
List<String> attributes,
Integer limit,
boolean showMostRecentFirst) |
Map<Integer,Object> |
PatientSetServiceImpl.getPatientAttributes(Cohort patients,
String classNameDotProperty,
boolean returnAll) |
Map<Integer,Object> |
PatientSetServiceImpl.getPatientAttributes(Cohort patients,
String className,
String property,
boolean returnAll) |
Map<Integer,PatientIdentifier> |
PatientSetServiceImpl.getPatientIdentifiersByType(Cohort patients,
PatientIdentifierType type) |
Map<Integer,String> |
PatientSetServiceImpl.getPatientIdentifierStringsByType(Cohort patients,
PatientIdentifierType type) |
List<PatientProgram> |
ProgramWorkflowServiceImpl.getPatientPrograms(Cohort cohort,
Collection<Program> programs) |
Map<Integer,PatientProgram> |
PatientSetServiceImpl.getPatientPrograms(Cohort ps,
Program program) |
Map<Integer,Object> |
PatientSetServiceImpl.getPersonAttributes(Cohort patients,
String attributeName,
String joinClass,
String joinProperty,
String outputColumn,
boolean returnAll) |
Map<Integer,List<Relationship>> |
PatientSetServiceImpl.getRelationships(Cohort ps,
RelationshipType relType) |
Map<Integer,List<Person>> |
PatientSetServiceImpl.getRelatives(Cohort ps,
RelationshipType relType,
boolean forwards) |
Cohort |
CohortServiceImpl.purgeCohort(Cohort cohort) |
Cohort |
CohortServiceImpl.removePatientFromCohort(Cohort cohort,
Patient patient) |
Cohort |
CohortServiceImpl.saveCohort(Cohort cohort) |
Cohort |
CohortServiceImpl.updateCohort(Cohort cohort)
Deprecated.
|
Cohort |
CohortServiceImpl.voidCohort(Cohort cohort,
String reason) |
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortDefinitionProvider.evaluate(CohortDefinition cohortDefinition,
EvaluationContext evaluationContext)
Deprecated.
Computes the list of patients who currently meet the given definition CohortService ensures
that this method is only called with a CohortDefinition of a class this provider is
registered for.
|
Cohort |
CohortSearchHistory.CohortSearchHistoryItemHolder.getCachedResult() |
Cohort |
StaticCohortDefinition.getCohort()
Deprecated.
|
Cohort |
CohortSearchHistory.getLastPatientSet(EvaluationContext context)
Deprecated.
|
Cohort |
CohortSearchHistory.getPatientSet(int i,
boolean useCache,
EvaluationContext context)
Deprecated.
TODO: Implement
CohortServiceImpl.getAllCohorts() |
Cohort |
CohortSearchHistory.getPatientSet(int i,
EvaluationContext context)
Deprecated.
|
Cohort |
CohortSearchHistory.getPatientSetCombineWithAnd(EvaluationContext context)
Deprecated.
|
Cohort |
CohortSearchHistory.getPatientSetCombineWithOr(EvaluationContext context)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
List<Cohort> |
CohortSearchHistory.getCachedResults()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
CohortSearchHistory.CohortSearchHistoryItemHolder.setCachedResult(Cohort cachedResult) |
void |
StaticCohortDefinition.setCohort(Cohort cohort)
Deprecated.
|
Constructor and Description |
---|
StaticCohortDefinition(Cohort cohort)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
PatientSearchCohortDefinitionProvider.evaluate(CohortDefinition cohortDefinition,
EvaluationContext evaluationContext)
Deprecated.
|
Cohort |
StaticCohortDefinitionProvider.evaluate(CohortDefinition cohortDefinition,
EvaluationContext evaluationContext)
Deprecated.
Note that this method does *not* set a CohortDefinition or EvaluationContext in the Cohort
that it returns, although that Cohort may have had those properties set when it was
originally evaluated.
|
Modifier and Type | Method and Description |
---|---|
Map<LogicCriteria,Map<Integer,Result>> |
LogicService.eval(Cohort who,
List<LogicCriteria> criterias)
Evaluates a collection of queries for a set of patients
|
Map<Integer,Result> |
LogicService.eval(Cohort who,
LogicCriteria criteria)
Evaluates a query over a list of patients
|
Map<Integer,Result> |
LogicService.eval(Cohort who,
LogicCriteria criteria,
Map<String,Object> parameters)
Evaluates a query over a list of patients
|
Map<Integer,Result> |
LogicService.eval(Cohort who,
String expression)
Evaluates a query over a list of patients
|
Map<Integer,Result> |
LogicService.eval(Cohort who,
String expression,
Map<String,Object> parameters)
Evaluates a query over a list of patients
|
Modifier and Type | Method and Description |
---|---|
Map<Integer,Result> |
LogicDataSource.read(LogicContext context,
Cohort patients,
LogicCriteria criteria)
Extracts data from the data source.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
EvaluationContext.getBaseCohort()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Map<String,Cohort> |
CohortDataSet.getCohortData()
Deprecated.
|
Map<String,Cohort> |
CohortDataSet.getData()
Deprecated.
|
Iterator<Map<String,Cohort>> |
CohortDataSet.iterator()
Deprecated.
Returns this map as a single-row data set
|
Modifier and Type | Method and Description |
---|---|
DataSet |
DataSetProvider.evaluate(DataSetDefinition dataSetDefinition,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
Evaluate a dataset on a given input cohort (which may be null, and may be ignored by some
data sets)
|
DataSet |
CohortDataSetProvider.evaluate(DataSetDefinition dataSetDefinition,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
|
DataSet<?> |
RowPerProgramEnrollmentDataSetProvider.evaluate(DataSetDefinition dataSetDefinition,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
|
DataSet<?> |
RowPerObsDataSetProvider.evaluate(DataSetDefinition dataSetDefinition,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
|
void |
EvaluationContext.setBaseCohort(Cohort baseCohort)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
CohortDataSet.setCohortData(Map<String,Cohort> cohortData)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
DataSet |
DataSetServiceImpl.evaluate(DataSetDefinition definition,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
|
ReportData |
ReportServiceImpl.evaluate(ReportSchema reportSchema,
Cohort inputCohort,
EvaluationContext evalContext)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
CachingPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
ProgramPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
PatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
Determine all patients in _input_ who also match some criteria.
|
Cohort |
InversePatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
(The following at-should unit tests should really be distributed across many other classes, but it's much faster to put them all here.)
|
Cohort |
CohortFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
DrugOrderPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
LogicPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CohortHistoryCompositionFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CompoundPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
abstract Cohort |
CachingPatientFilter.filterImpl(EvaluationContext context)
Deprecated.
Subclasses should implement PatientFilter.filter("all patients", evalContext) in this method
|
Cohort |
PatientCharacteristicFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
DrugOrderStopFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
EncounterPatientFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
RelationshipPatientFilter.filterImpl(EvaluationContext context) |
Cohort |
ProgramStatePatientFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
ObsPatientFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
DrugOrderFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
LocationPatientFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
PersonAttributeFilter.filterImpl(EvaluationContext context)
Deprecated.
|
Cohort |
CachingPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
AbstractPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
Basic implementation of filterInverse that delegates to PatientSetService.getAllPatients() and
this class's filter() method.
|
Cohort |
PatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
Determine all patients in _input_ who do *not* match some criteria
|
Cohort |
InversePatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
LogicPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CohortHistoryCompositionFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CompoundPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CohortFilter.getCohort()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
CachingPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
ProgramPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
PatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
Determine all patients in _input_ who also match some criteria.
|
Cohort |
InversePatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
(The following at-should unit tests should really be distributed across many other classes, but it's much faster to put them all here.)
|
Cohort |
CohortFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
DrugOrderPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
LogicPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CohortHistoryCompositionFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CompoundPatientFilter.filter(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CachingPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
AbstractPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
Basic implementation of filterInverse that delegates to PatientSetService.getAllPatients() and
this class's filter() method.
|
Cohort |
PatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
Determine all patients in _input_ who do *not* match some criteria
|
Cohort |
InversePatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
LogicPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CohortHistoryCompositionFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
Cohort |
CompoundPatientFilter.filterInverse(Cohort input,
EvaluationContext context)
Deprecated.
|
void |
CohortFilter.setCohort(Cohort cohort)
Deprecated.
|
Constructor and Description |
---|
CohortFilter(Cohort cohort)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
CohortDefinition.getCohort()
Deprecated.
Get the cohort instance assigned to this cohort definition
|
Modifier and Type | Method and Description |
---|---|
void |
CohortDefinition.setCohort(Cohort cohort)
Deprecated.
Set the cohort instance for this cohort definition.
|
Modifier and Type | Field and Description |
---|---|
protected Cohort |
DataExportFunctions.patientSet
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
RowPerObsDataExportReportObject.generatePatientSet(EvaluationContext context)
Deprecated.
Generate the patientSet according to this report's characteristics
|
Cohort |
DataExportReportObject.generatePatientSet(EvaluationContext context)
Deprecated.
Generate the patientSet according to this report's characteristics
|
Cohort |
DataExportFunctions.getPatientSet()
Deprecated.
|
Cohort |
DataExportFunctions.getPatientSetIfNotAllPatients()
Deprecated.
Returns the patient set only if it is a subset of all patients.
|
Modifier and Type | Method and Description |
---|---|
static void |
DataExportUtil.generateExport(DataExportReportObject dataExport,
Cohort patientSet,
DataExportFunctions functions,
EvaluationContext context)
Deprecated.
Auto generated method comment
|
static void |
DataExportUtil.generateExport(DataExportReportObject dataExport,
Cohort patientSet,
EvaluationContext context)
Deprecated.
|
static void |
DataExportUtil.generateExport(DataExportReportObject dataExport,
Cohort patientSet,
String separator,
EvaluationContext context)
Deprecated.
Generates a data export file given a data export (columns) and patient set (rows).
|
void |
DataExportFunctions.setPatientSet(Cohort patientSet)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Cohort |
ReportDefinition.getPatientSet()
Deprecated.
Gets the default patient set.
|
Modifier and Type | Method and Description |
---|---|
void |
ReportDefinition.setPatientSet(Cohort patientSet)
Deprecated.
Sets the default patient set.
|
Constructor and Description |
---|
CohortListItem(Cohort cohort) |
Copyright © 2018 OpenMRS LLC.. All Rights Reserved.