001: /*
002:
003: Derby - Class org.apache.derby.iapi.reference.ClassName
004:
005: Licensed to the Apache Software Foundation (ASF) under one or more
006: contributor license agreements. See the NOTICE file distributed with
007: this work for additional information regarding copyright ownership.
008: The ASF licenses this file to you under the Apache License, Version 2.0
009: (the "License"); you may not use this file except in compliance with
010: the License. You may obtain a copy of the License at
011:
012: http://www.apache.org/licenses/LICENSE-2.0
013:
014: Unless required by applicable law or agreed to in writing, software
015: distributed under the License is distributed on an "AS IS" BASIS,
016: WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017: See the License for the specific language governing permissions and
018: limitations under the License.
019:
020: */
021:
022: package org.apache.derby.iapi.reference;
023:
024: /**
025: List of strings representing class names, which are typically found
026: for classes with implement the Formatable interface.
027: These strings are removed from the code to separate them from the
028: strings which need to be internationalized. It also reduces footprint.
029: <P>
030: This class has no methods, all it contains are String's which by default
031: are public, static and final since they are declared in an interface.
032: */
033:
034: public interface ClassName {
035:
036: String STORE_CONGLOMDIR = "org.apache.derby.impl.store.access.ConglomerateDirectory";
037:
038: String STORE_PCXENA = "org.apache.derby.impl.store.access.PC_XenaVersion";
039:
040: String DataValueFactory = "org.apache.derby.iapi.types.DataValueFactory";
041: String DataValueDescriptor = "org.apache.derby.iapi.types.DataValueDescriptor";
042:
043: String BooleanDataValue = "org.apache.derby.iapi.types.BooleanDataValue";
044:
045: String BitDataValue = "org.apache.derby.iapi.types.BitDataValue";
046: String StringDataValue = "org.apache.derby.iapi.types.StringDataValue";
047: String DateTimeDataValue = "org.apache.derby.iapi.types.DateTimeDataValue";
048: String NumberDataValue = "org.apache.derby.iapi.types.NumberDataValue";
049: String RefDataValue = "org.apache.derby.iapi.types.RefDataValue";
050: String UserDataValue = "org.apache.derby.iapi.types.UserDataValue";
051: String ConcatableDataValue = "org.apache.derby.iapi.types.ConcatableDataValue";
052: String XMLDataValue = "org.apache.derby.iapi.types.XMLDataValue";
053:
054: String FormatableBitSet = "org.apache.derby.iapi.services.io.FormatableBitSet";
055:
056: String BaseActivation = "org.apache.derby.impl.sql.execute.BaseActivation";
057: String BaseExpressionActivation = "org.apache.derby.impl.sql.execute.BaseExpressionActivation";
058:
059: String CursorActivation = "org.apache.derby.impl.sql.execute.CursorActivation";
060:
061: String Row = "org.apache.derby.iapi.sql.Row";
062: String Qualifier = "org.apache.derby.iapi.store.access.Qualifier";
063:
064: String RunTimeStatistics = "org.apache.derby.iapi.sql.execute.RunTimeStatistics";
065:
066: String Storable = "org.apache.derby.iapi.services.io.Storable";
067: String StandardException = "org.apache.derby.iapi.error.StandardException";
068:
069: String LanguageConnectionContext = "org.apache.derby.iapi.sql.conn.LanguageConnectionContext";
070: String ConstantAction = "org.apache.derby.iapi.sql.execute.ConstantAction";
071: String DataDictionary = "org.apache.derby.iapi.sql.dictionary.DataDictionary";
072:
073: String CursorResultSet = "org.apache.derby.iapi.sql.execute.CursorResultSet";
074:
075: String ExecIndexRow = "org.apache.derby.iapi.sql.execute.ExecIndexRow";
076:
077: String ExecPreparedStatement = "org.apache.derby.iapi.sql.execute.ExecPreparedStatement";
078:
079: String ExecRow = "org.apache.derby.iapi.sql.execute.ExecRow";
080: String Activation = "org.apache.derby.iapi.sql.Activation";
081:
082: String ResultSet = "org.apache.derby.iapi.sql.ResultSet";
083:
084: String FileMonitor = "org.apache.derby.impl.services.monitor.FileMonitor";
085:
086: String GeneratedClass = "org.apache.derby.iapi.services.loader.GeneratedClass";
087: String GeneratedMethod = "org.apache.derby.iapi.services.loader.GeneratedMethod";
088: String GeneratedByteCode = "org.apache.derby.iapi.services.loader.GeneratedByteCode";
089:
090: String Context = "org.apache.derby.iapi.services.context.Context";
091:
092: String NoPutResultSet = "org.apache.derby.iapi.sql.execute.NoPutResultSet";
093:
094: String ResultSetFactory = "org.apache.derby.iapi.sql.execute.ResultSetFactory";
095: String RowFactory = "org.apache.derby.iapi.sql.execute.RowFactory";
096:
097: String RowLocation = "org.apache.derby.iapi.types.RowLocation";
098:
099: String VariableSizeDataValue = "org.apache.derby.iapi.types.VariableSizeDataValue";
100: String ParameterValueSet = "org.apache.derby.iapi.sql.ParameterValueSet";
101:
102: String CurrentDatetime = "org.apache.derby.impl.sql.execute.CurrentDatetime";
103:
104: String MaxMinAggregator = "org.apache.derby.impl.sql.execute.MaxMinAggregator";
105: String SumAggregator = "org.apache.derby.impl.sql.execute.SumAggregator";
106: String CountAggregator = "org.apache.derby.impl.sql.execute.CountAggregator";
107: String AvgAggregator = "org.apache.derby.impl.sql.execute.AvgAggregator";
108:
109: String ExecutionFactory = "org.apache.derby.iapi.sql.execute.ExecutionFactory";
110: String LanguageFactory = "org.apache.derby.iapi.sql.LanguageFactory";
111: String ParameterValueSetFactory = "org.apache.derby.iapi.sql.ParameterValueSetFactory";
112:
113: String TriggerNewTransitionRows = "org.apache.derby.catalog.TriggerNewTransitionRows";
114: String TriggerOldTransitionRows = "org.apache.derby.catalog.TriggerOldTransitionRows";
115: String VTICosting = "org.apache.derby.vti.VTICosting";
116:
117: String Authorizer = "org.apache.derby.iapi.sql.conn.Authorizer";
118: }
|