1 21 22 23 package org.apache.derby.iapi.reference; 24 25 26 35 36 public interface ClassName 37 { 38 39 String STORE_CONGLOMDIR = 40 "org.apache.derby.impl.store.access.ConglomerateDirectory"; 41 42 String STORE_PCXENA = 43 "org.apache.derby.impl.store.access.PC_XenaVersion"; 44 45 46 String DataValueFactory = "org.apache.derby.iapi.types.DataValueFactory"; 47 String DataValueDescriptor = "org.apache.derby.iapi.types.DataValueDescriptor"; 48 49 String BooleanDataValue = "org.apache.derby.iapi.types.BooleanDataValue"; 50 51 String BitDataValue = "org.apache.derby.iapi.types.BitDataValue"; 52 String StringDataValue = "org.apache.derby.iapi.types.StringDataValue"; 53 String DateTimeDataValue = "org.apache.derby.iapi.types.DateTimeDataValue"; 54 String NumberDataValue = "org.apache.derby.iapi.types.NumberDataValue"; 55 String RefDataValue = "org.apache.derby.iapi.types.RefDataValue"; 56 String UserDataValue = "org.apache.derby.iapi.types.UserDataValue"; 57 String ConcatableDataValue = "org.apache.derby.iapi.types.ConcatableDataValue"; 58 String XMLDataValue = "org.apache.derby.iapi.types.XMLDataValue"; 59 60 String FormatableBitSet = "org.apache.derby.iapi.services.io.FormatableBitSet"; 61 62 String BaseActivation = "org.apache.derby.impl.sql.execute.BaseActivation"; 63 String BaseExpressionActivation = "org.apache.derby.impl.sql.execute.BaseExpressionActivation"; 64 65 String CursorActivation = "org.apache.derby.impl.sql.execute.CursorActivation"; 66 67 String Row = "org.apache.derby.iapi.sql.Row"; 68 String Qualifier = "org.apache.derby.iapi.store.access.Qualifier"; 69 70 String RunTimeStatistics = "org.apache.derby.iapi.sql.execute.RunTimeStatistics"; 71 72 String Storable = "org.apache.derby.iapi.services.io.Storable"; 73 String StandardException = "org.apache.derby.iapi.error.StandardException"; 74 75 String LanguageConnectionContext = "org.apache.derby.iapi.sql.conn.LanguageConnectionContext"; 76 String ConstantAction = "org.apache.derby.iapi.sql.execute.ConstantAction"; 77 String DataDictionary = "org.apache.derby.iapi.sql.dictionary.DataDictionary"; 78 79 String CursorResultSet = "org.apache.derby.iapi.sql.execute.CursorResultSet"; 80 81 String ExecIndexRow = "org.apache.derby.iapi.sql.execute.ExecIndexRow"; 82 83 String ExecPreparedStatement = "org.apache.derby.iapi.sql.execute.ExecPreparedStatement"; 84 85 String ExecRow = "org.apache.derby.iapi.sql.execute.ExecRow"; 86 String Activation = "org.apache.derby.iapi.sql.Activation"; 87 88 String ResultSet = "org.apache.derby.iapi.sql.ResultSet"; 89 90 String FileMonitor = "org.apache.derby.impl.services.monitor.FileMonitor"; 91 92 String GeneratedClass = "org.apache.derby.iapi.services.loader.GeneratedClass"; 93 String GeneratedMethod = "org.apache.derby.iapi.services.loader.GeneratedMethod"; 94 String GeneratedByteCode = "org.apache.derby.iapi.services.loader.GeneratedByteCode"; 95 96 String Context = "org.apache.derby.iapi.services.context.Context"; 97 98 String NoPutResultSet = "org.apache.derby.iapi.sql.execute.NoPutResultSet"; 99 100 String ResultSetFactory = "org.apache.derby.iapi.sql.execute.ResultSetFactory"; 101 String RowFactory = "org.apache.derby.iapi.sql.execute.RowFactory"; 102 103 String RowLocation = "org.apache.derby.iapi.types.RowLocation"; 104 105 String VariableSizeDataValue = "org.apache.derby.iapi.types.VariableSizeDataValue"; 106 String ParameterValueSet = "org.apache.derby.iapi.sql.ParameterValueSet"; 107 108 109 String CurrentDatetime = "org.apache.derby.impl.sql.execute.CurrentDatetime"; 110 111 String MaxMinAggregator = "org.apache.derby.impl.sql.execute.MaxMinAggregator"; 112 String SumAggregator = "org.apache.derby.impl.sql.execute.SumAggregator"; 113 String CountAggregator = "org.apache.derby.impl.sql.execute.CountAggregator"; 114 String AvgAggregator = "org.apache.derby.impl.sql.execute.AvgAggregator"; 115 116 String ExecutionFactory = "org.apache.derby.iapi.sql.execute.ExecutionFactory"; 117 String LanguageFactory ="org.apache.derby.iapi.sql.LanguageFactory"; 118 String ParameterValueSetFactory ="org.apache.derby.iapi.sql.ParameterValueSetFactory"; 119 120 String TriggerNewTransitionRows = "org.apache.derby.catalog.TriggerNewTransitionRows"; 121 String TriggerOldTransitionRows = "org.apache.derby.catalog.TriggerOldTransitionRows"; 122 String VTICosting = "org.apache.derby.vti.VTICosting"; 123 124 String Authorizer = "org.apache.derby.iapi.sql.conn.Authorizer"; 125 } 126 | Popular Tags |