public class StudySeriesInstanceSelectiveMatchModel extends StudySeriesInstanceModel
The StudySeriesInstanceSelectiveMatchModel class
supports a minimal DICOM Study/Series/Instance model.
Matching of each information entity is performed by all appropriate attributes at
that level, not just the instance UIDs alone that are used in StudySeriesInstanceModel.
Attributes of other DICOM entities than Study, Series and Instance are included at the appropriate lower level entity.
StudySeriesInstanceModelderivedAcquisitionDateTimeColumnName, derivedContentDateTimeColumnName, derivedLossyImageCompressionColumnName, derivedSeriesDateTimeColumnName, derivedStudyDateTimeColumnNameadditionalIndexMapOfColumnsToTables, databaseConnection, databaseRootName, defaultDatabaseRootName, dictionary, externalServerInstance, FILE_COPIED, FILE_REFERENCED, listsOfAttributesByInformationEntity, localFileName, localFileReferenceTypeColumnName, localParentReferenceColumnName, localPrimaryKeyColumnName, localRecordInsertionTimeColumnName, personNameCanonicalColumnNamePrefix, personNameCanonicalColumnNameSuffix, personNamePhoneticCanonicalColumnNamePrefix, personNamePhoneticCanonicalColumnNameSuffix, rootInformationEntity, userColumnName1, userColumnName2, userColumnName3, userColumnName4| Constructor and Description |
|---|
StudySeriesInstanceSelectiveMatchModel(String databaseFileName)
Construct a model with the attributes from the default dictionary.
|
StudySeriesInstanceSelectiveMatchModel(String databaseFileName,
DicomDictionary dictionary)
Construct a model with the attributes from the specified dictionary.
|
StudySeriesInstanceSelectiveMatchModel(String databaseFileName,
String databaseServerName)
Construct a model with the attributes from the default dictionary allowing external SQL access.
|
StudySeriesInstanceSelectiveMatchModel(String databaseFileName,
String databaseServerName,
DicomDictionary dictionary)
Construct a model with the attributes from the specified dictionary allowing external SQL access.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
extendStatementStringWithMatchingAttributesForSelectedInformationEntity(StringBuffer b,
AttributeList list,
InformationEntity ie)
Extend a SQL SELECT statement in the process of being constructed with matching clauses for the unique keys of the entity and all its parents.
|
getChildTypeForParent, getChildTypeForParent, getChildTypeForParent, getDescriptiveColumnName, getOtherDescriptiveColumnName, getOtherOtherDescriptiveColumnName, getUIDColumnNameForInformationEntity, isInformationEntityInModelcreatePrimaryKeyForSelectedInformationEntity, extendCreateStatementStringWithDerivedAttributes, extendInsertStatementStringWithAttributeNamesForSelectedInformationEntity, extendInsertStatementStringWithAttributeValuesForSelectedInformationEntity, extendInsertStatementStringWithDerivedAttributeNamesForSelectedInformationEntity, extendInsertStatementStringWithDerivedAttributeValuesForSelectedInformationEntity, extendInsertStatementStringWithPersonNameSearchColumnsForSelectedInformationEntity, extendInsertStatementStringWithPersonNameSearchValuesForSelectedInformationEntity, getDateFromDicomDateAndTime, getDateFromDicomDateAndTime, getNametoDescribeThisInstanceOfInformationEntity, getQueryResponseGeneratorFactory, getQuotedEscapedSingleStringValueOrNull, getQuotedSingleStringValueOrNull, getQuotedUnescapedSingleStringValueOrNull, getQuotedValueOrNULL, getRetrieveResponseGeneratorFactory, getTimestampFromDate, getTimestampFromDicomDateAndTime, getTimestampFromDicomDateAndTimeappendExactOrIsNullMatch, close, createAdditionalIndexes, deleteRecord, doCommonConstructorStuff, extendCreateStatementStringWithAnyExtraAttributes, extendCreateStatementStringWithUserColumns, finalize, findAllAttributeValuesForAllRecordsForThisInformationEntity, findAllAttributeValuesForAllRecordsForThisInformationEntityWithMatchingParent, findAllAttributeValuesForAllRecordsForThisInformationEntityWithSpecifiedKeyValue, findAllAttributeValuesForAllRecordsForThisInformationEntityWithSpecifiedParent, findAllAttributeValuesForAllRecordsForThisInformationEntityWithSpecifiedUID, findAllAttributeValuesForSelectedRecord, findSelectedAttributeValuesForSelectedRecord, getAttributeTagFromDatabaseColumnName, getDatabaseColumnNameFromDicomName, getDatabaseColumnNameFromDicomTag, getDicomNameFromDatabaseColumnName, getInformationEntityFromTag, getLocalFileNameColumnName, getLocalFileReferenceTypeColumnName, getLocalParentReferenceColumnName, getLocalPrimaryKeyColumnName, getLocalRecordInsertionTimeColumnName, getSQLTypeFromDicomValueRepresentation, getTableNameForInformationEntity, insertObject, isInformationEntityInModel, toString, updateSelectedRecordpublic StudySeriesInstanceSelectiveMatchModel(String databaseFileName) throws DicomException
Construct a model with the attributes from the default dictionary.
The dictionary DicomDictionaryForStudySeriesInstanceModel is used.
databaseFileName - DicomExceptionpublic StudySeriesInstanceSelectiveMatchModel(String databaseFileName, DicomDictionary dictionary) throws DicomException
Construct a model with the attributes from the specified dictionary.
databaseFileName - dictionary - DicomExceptionpublic StudySeriesInstanceSelectiveMatchModel(String databaseFileName, String databaseServerName) throws DicomException
Construct a model with the attributes from the default dictionary allowing external SQL access.
The dictionary DicomDictionaryForStudySeriesInstanceModel is used.
databaseFileName - databaseServerName - DicomExceptionpublic StudySeriesInstanceSelectiveMatchModel(String databaseFileName, String databaseServerName, DicomDictionary dictionary) throws DicomException
Construct a model with the attributes from the specified dictionary allowing external SQL access.
databaseFileName - databaseServerName - dictionary - DicomExceptionprotected void extendStatementStringWithMatchingAttributesForSelectedInformationEntity(StringBuffer b, AttributeList list, InformationEntity ie) throws DicomException
DatabaseInformationModelExtend a SQL SELECT statement in the process of being constructed with matching clauses for the unique keys of the entity and all its parents.
For example, a model might specify the unique key for the patient to be PatientID,
the study to be StudyInstanceUID, the series to be SeriesInstanceUID and so on. A
match requested at the series level would then require PatientID, StudyInstanceUID
and SeriesInstanceUID to match what was in the supplied AttributeList
Called when inserting a new record for an instance of the entity.
Specific to each concrete information model extending DatabaseInformationModel.
extendStatementStringWithMatchingAttributesForSelectedInformationEntity in class StudySeriesInstanceModelb - list - ie - DicomException