| 1 package com.daffodilwoods.daffodildb.server.datadictionarysystem.information; 2 3 import java.util.*; 4 5 public interface _TableInformation { 6 7 String getName(); 8 9 String getCatalog(); 10 11 String getSchema(); 12 13 String getQualifiedName(); 14 15 ArrayList getAllColumns(); 16 17 ArrayList getAllIndexes(); 18 19 ArrayList getAllFullTextIndexes(); 20 21 ArrayList getAllTriggers(); 22 23 ArrayList getAllConstraints(); 24 25 _ColumnsInformation getColumnInformation(); 26 27 _IndexInformation getIndexInformation(); 28 29 _FullTextIndexInformation getFullTextIndexInformation(); 30 31 _TriggerInformation getTriggerInformation(); 32 33 _ConstraintInformation getConstraintInformation(); 34 35 String getType(); 36 37 String getRemarks(); 38 } 39 | Popular Tags |