KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > derby > iapi > services > cache > ClassSizeCatalog


1 /*
2
3    Licensed to the Apache Software Foundation (ASF) under one or more
4    contributor license agreements. See the NOTICE file distributed with
5    this work for additional information regarding copyright ownership.
6    The ASF licenses this file to You under the Apache License, Version 2.0
7    (the "License"); you may not use this file except in compliance with
8    the License. You may obtain a copy of the License at
9
10       http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17  */

18 package org.apache.derby.iapi.services.cache;
19 import java.util.Hashtable JavaDoc;
20 class ClassSizeCatalog extends java.util.Hashtable JavaDoc
21 {
22     ClassSizeCatalog()
23     {
24         put( "org.apache.derby.iapi.types.SQLBit", new int[]{4,4});
25         put( "org.apache.derby.iapi.types.SQLBlob", new int[]{4,4});
26         put( "java.util.Vector", new int[]{12,3});
27         put( "org.apache.derby.iapi.types.SQLLongvarchar", new int[]{8,9});
28         put( "org.apache.derby.iapi.types.SQLLongVarbit", new int[]{4,4});
29         put( "org.apache.derby.impl.store.access.heap.HeapRowLocation", new int[]{12,3});
30         put( "java.util.ArrayList", new int[]{8,3});
31         put( "org.apache.derby.iapi.types.SQLTimestamp", new int[]{12,3});
32         put( "org.apache.derby.impl.store.raw.data.RecordId", new int[]{8,3});
33         put( "org.apache.derby.iapi.types.UserType", new int[]{0,3});
34         put( "org.apache.derby.iapi.types.DataType", new int[]{0,2});
35         put( "org.apache.derby.iapi.types.SQLInteger", new int[]{8,2});
36         put( "org.apache.derby.impl.store.access.btree.index.B2I", new int[]{32,5});
37         put( "org.apache.derby.iapi.types.SQLNationalVarchar", new int[]{8,9});
38         put( "org.apache.derby.iapi.types.BinaryDecimal", new int[]{4,3});
39         put( "org.apache.derby.impl.store.access.btree.BTree", new int[]{20,5});
40         put( "org.apache.derby.iapi.types.SQLChar", new int[]{8,9});
41         put( "org.apache.derby.iapi.types.SQLTinyint", new int[]{5,2});
42         put( "org.apache.derby.iapi.types.SQLTime", new int[]{8,3});
43         put( "org.apache.derby.iapi.types.SQLClob", new int[]{8,9});
44         put( "org.apache.derby.iapi.types.SQLNationalChar", new int[]{8,9});
45         put( "org.apache.derby.iapi.types.SQLBinary", new int[]{4,4});
46         put( "org.apache.derby.iapi.types.SQLVarchar", new int[]{8,9});
47         put( "org.apache.derby.iapi.types.SQLDate", new int[]{4,3});
48         put( "org.apache.derby.iapi.types.SQLVarbit", new int[]{4,4});
49         put( "org.apache.derby.impl.store.access.StorableFormatId", new int[]{4,2});
50         put( "org.apache.derby.iapi.types.NumberDataType", new int[]{0,2});
51         put( "org.apache.derby.iapi.types.XML", new int[]{8,3});
52         put( "org.apache.derby.iapi.types.SQLNationalLongvarchar", new int[]{8,9});
53         put( "org.apache.derby.impl.store.access.conglomerate.GenericConglomerate", new int[]{0,2});
54         put( "org.apache.derby.iapi.types.SQLDecimal", new int[]{4,4});
55         put( "org.apache.derby.iapi.types.SQLBoolean", new int[]{12,2});
56         put( "org.apache.derby.iapi.types.SQLRef", new int[]{0,3});
57         put( "org.apache.derby.iapi.types.SQLDouble", new int[]{12,2});
58         put( "java.lang.ref.WeakReference", new int[]{0,6});
59         put( "org.apache.derby.impl.store.access.heap.Heap", new int[]{0,4});
60         put( "org.apache.derby.iapi.types.SQLNClob", new int[]{8,9});
61         put( "java.math.BigDecimal", new int[]{4,3});
62         put( "org.apache.derby.iapi.types.SQLSmallint", new int[]{8,2});
63         put( "org.apache.derby.impl.store.access.UTF", new int[]{0,3});
64         put( "java.util.GregorianCalendar", new int[]{60,6});
65         put( "org.apache.derby.iapi.store.raw.ContainerKey", new int[]{16,2});
66         put( "org.apache.derby.iapi.types.SQLReal", new int[]{8,2});
67         put( "org.apache.derby.iapi.types.BigIntegerDecimal", new int[]{4,3});
68         put( "org.apache.derby.impl.services.cache.CachedItem", new int[]{8,3});
69         put( "org.apache.derby.iapi.types.SQLLongint", new int[]{12,2});
70     }
71 }
72
Popular Tags