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.propertyeditor |
Modifier and Type | Method and Description |
---|---|
ConceptClass |
Concept.getConceptClass() |
Modifier and Type | Method and Description |
---|---|
Collection<ConceptClass> |
OrderType.getConceptClasses() |
Modifier and Type | Method and Description |
---|---|
void |
OrderType.addConceptClass(ConceptClass conceptClass)
Convenience method that adds the specified concept class
|
void |
Concept.setConceptClass(ConceptClass conceptClass) |
Modifier and Type | Method and Description |
---|---|
void |
OrderType.setConceptClasses(Collection<ConceptClass> conceptClasses) |
Modifier and Type | Method and Description |
---|---|
ConceptClass |
ConceptService.getConceptClass(Integer conceptClassId)
Return a Concept class matching the given identifier
|
ConceptClass |
ConceptService.getConceptClassByName(String name)
Return a Concept class matching the given name
|
ConceptClass |
ConceptService.getConceptClassByUuid(String uuid)
Get ConceptClass by its UUID
|
ConceptClass |
ConceptService.saveConceptClass(ConceptClass cc)
Creates or updates a concept class
|
Modifier and Type | Method and Description |
---|---|
List<ConceptClass> |
ConceptService.getAllConceptClasses()
Return a list of concept classes currently in the database
|
List<ConceptClass> |
ConceptService.getAllConceptClasses(boolean includeRetired)
Return a list of concept classes currently in the database
|
Modifier and Type | Method and Description |
---|---|
List<Concept> |
ConceptService.getConceptsByClass(ConceptClass cc) |
OrderType |
OrderService.getOrderTypeByConceptClass(ConceptClass conceptClass)
Gets the order type mapped to a given concept class
|
void |
ConceptService.purgeConceptClass(ConceptClass cc)
Purge a ConceptClass
|
ConceptClass |
ConceptService.saveConceptClass(ConceptClass cc)
Creates or updates a concept class
|
Modifier and Type | Method and Description |
---|---|
List<ConceptSearchResult> |
ConceptService.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size)
Searches for concepts by the given parameters.
|
List<ConceptSearchResult> |
ConceptService.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size)
Searches for concepts by the given parameters.
|
Integer |
ConceptService.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept)
Return the number of concepts matching a search phrase and the specified arguments
|
Integer |
ConceptService.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept)
Return the number of concepts matching a search phrase and the specified arguments
|
Modifier and Type | Method and Description |
---|---|
ConceptClass |
ConceptDAO.getConceptClass(Integer i) |
ConceptClass |
ConceptDAO.getConceptClassByUuid(String uuid) |
ConceptClass |
ConceptDAO.saveConceptClass(ConceptClass cc) |
Modifier and Type | Method and Description |
---|---|
List<ConceptClass> |
ConceptDAO.getAllConceptClasses(boolean includeRetired) |
List<ConceptClass> |
ConceptDAO.getConceptClasses(String name) |
Modifier and Type | Method and Description |
---|---|
List<Concept> |
ConceptDAO.getConceptsByClass(ConceptClass conceptClass) |
OrderType |
OrderDAO.getOrderTypeByConceptClass(ConceptClass conceptClass) |
void |
ConceptDAO.purgeConceptClass(ConceptClass cc) |
ConceptClass |
ConceptDAO.saveConceptClass(ConceptClass cc) |
Modifier and Type | Method and Description |
---|---|
List<ConceptSearchResult> |
ConceptDAO.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size) |
List<ConceptSearchResult> |
ConceptDAO.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size) |
List<Concept> |
ConceptDAO.getConcepts(String name,
Locale loc,
boolean searchOnPhrase,
List<ConceptClass> classes,
List<ConceptDatatype> datatypes)
Returns a list of concepts based on the search criteria
|
Integer |
ConceptDAO.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept) |
Integer |
ConceptDAO.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept) |
Modifier and Type | Method and Description |
---|---|
ConceptClass |
HibernateConceptDAO.getConceptClass(Integer i) |
ConceptClass |
HibernateConceptDAO.getConceptClassByUuid(String uuid) |
ConceptClass |
HibernateConceptDAO.saveConceptClass(ConceptClass cc) |
Modifier and Type | Method and Description |
---|---|
List<ConceptClass> |
HibernateConceptDAO.getAllConceptClasses(boolean includeRetired) |
List<ConceptClass> |
HibernateConceptDAO.getConceptClasses(String name) |
Modifier and Type | Method and Description |
---|---|
List<Concept> |
HibernateConceptDAO.getConceptsByClass(ConceptClass conceptClass) |
OrderType |
HibernateOrderDAO.getOrderTypeByConceptClass(ConceptClass conceptClass) |
void |
HibernateConceptDAO.purgeConceptClass(ConceptClass cc) |
ConceptClass |
HibernateConceptDAO.saveConceptClass(ConceptClass cc) |
Modifier and Type | Method and Description |
---|---|
List<ConceptSearchResult> |
HibernateConceptDAO.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size) |
List<ConceptSearchResult> |
HibernateConceptDAO.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size) |
List<Concept> |
HibernateConceptDAO.getConcepts(String name,
Locale loc,
boolean searchOnPhrase,
List<ConceptClass> classes,
List<ConceptDatatype> datatypes) |
Integer |
HibernateConceptDAO.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept) |
Integer |
HibernateConceptDAO.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept) |
Modifier and Type | Method and Description |
---|---|
ConceptClass |
ConceptServiceImpl.getConceptClass(Integer i) |
ConceptClass |
ConceptServiceImpl.getConceptClassByName(String name) |
ConceptClass |
ConceptServiceImpl.getConceptClassByUuid(String uuid) |
ConceptClass |
ConceptServiceImpl.saveConceptClass(ConceptClass cc) |
Modifier and Type | Method and Description |
---|---|
List<ConceptClass> |
ConceptServiceImpl.getAllConceptClasses() |
List<ConceptClass> |
ConceptServiceImpl.getAllConceptClasses(boolean includeRetired) |
Modifier and Type | Method and Description |
---|---|
List<Concept> |
ConceptServiceImpl.getConceptsByClass(ConceptClass cc) |
OrderType |
OrderServiceImpl.getOrderTypeByConceptClass(ConceptClass conceptClass) |
void |
ConceptServiceImpl.purgeConceptClass(ConceptClass cc) |
ConceptClass |
ConceptServiceImpl.saveConceptClass(ConceptClass cc) |
Modifier and Type | Method and Description |
---|---|
List<ConceptSearchResult> |
ConceptServiceImpl.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size) |
List<ConceptSearchResult> |
ConceptServiceImpl.getConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept,
Integer start,
Integer size) |
Integer |
ConceptServiceImpl.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept) |
Integer |
ConceptServiceImpl.getCountOfConcepts(String phrase,
List<Locale> locales,
boolean includeRetired,
List<ConceptClass> requireClasses,
List<ConceptClass> excludeClasses,
List<ConceptDatatype> requireDatatypes,
List<ConceptDatatype> excludeDatatypes,
Concept answersToConcept) |
Modifier and Type | Method and Description |
---|---|
protected ConceptClass |
ConceptClassEditor.getObjectById(Integer id) |
protected ConceptClass |
ConceptClassEditor.getObjectByUuid(String uuid) |
Copyright © 2024 OpenMRS Inc.. All rights reserved.