blob: dfe74c82acc5ae3d27a3bca3107fa6e583a54f36 [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<body>
Useful constants that the Java compiler will in-line.
A collection of reference interfaces that contain primitive or
String constants. Such constants will be in-lined by the Java
compiler hopefully leading to smaller footprint, than a reference
to a field entails. Fields in interfaces are automatically public,
static and final, hence constants.
<P>
These classes should not need to be shipped with any of the Derby jar files.
If one is shipped with a Jar file then it most likely means the field
representing the constant was a non-String Object (e.g. new Integer(1))
or the final field is a calculated value that could not be resolved
to a constant by the Java compiler.
</body>