Interface DbTypeSystem
-
- All Known Implementing Classes:
DbTypeSystemImpl
public interface DbTypeSystem
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AtomicTypefindAtomicTypeByCode(java.lang.String code)AtomicTypefindAtomicTypeByPk(long pk)AttributefindAttributeByPk(long pk)CollectionTypefindCollectionTypeByCode(java.lang.String code)CollectionTypefindCollectionTypeByPk(long pk)DbTypeSystemItemfindDbTypeSystemItemById(UniqueIdentifier id)DeploymentfindDeploymentByFullName(java.lang.String fullName)DeploymentfindDeploymentByTypeCode(int typeCode)MapTypefindMapTypeByCode(java.lang.String code)MapTypefindMapTypeByPk(long pk)TypefindTypeByCode(java.lang.String code)TypefindTypeByPK(long pk)java.lang.Iterable<NumberSeries>getNumberSeries()
-
-
-
Method Detail
-
findTypeByPK
Type findTypeByPK(long pk)
-
findTypeByCode
Type findTypeByCode(java.lang.String code)
-
findDeploymentByFullName
Deployment findDeploymentByFullName(java.lang.String fullName)
-
findDeploymentByTypeCode
Deployment findDeploymentByTypeCode(int typeCode)
-
findAttributeByPk
Attribute findAttributeByPk(long pk)
-
findAtomicTypeByPk
AtomicType findAtomicTypeByPk(long pk)
-
findAtomicTypeByCode
AtomicType findAtomicTypeByCode(java.lang.String code)
-
findCollectionTypeByPk
CollectionType findCollectionTypeByPk(long pk)
-
findCollectionTypeByCode
CollectionType findCollectionTypeByCode(java.lang.String code)
-
findMapTypeByPk
MapType findMapTypeByPk(long pk)
-
findMapTypeByCode
MapType findMapTypeByCode(java.lang.String code)
-
getNumberSeries
java.lang.Iterable<NumberSeries> getNumberSeries()
-
findDbTypeSystemItemById
DbTypeSystemItem findDbTypeSystemItemById(UniqueIdentifier id)
-
-