|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package com.mysql.jdbc; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public class Constants { |
|
|
|
|
|
|
|
public final static byte[] EMPTY_BYTE_ARRAY = new byte[0]; |
|
|
|
|
|
|
|
|
|
public final static String MILLIS_I18N = Messages.getString("Milliseconds"); |
|
|
|
public final static byte[] SLASH_STAR_SPACE_AS_BYTES = new byte[] { |
|
(byte) '/', (byte) '*', (byte) ' ' }; |
|
|
|
public final static byte[] SPACE_STAR_SLASH_SPACE_AS_BYTES = new byte[] { |
|
(byte) ' ', (byte) '*', (byte) '/', (byte) ' ' }; |
|
|
|
|
|
|
|
|
|
private static final Character[] CHARACTER_CACHE = new Character[128]; |
|
|
|
private static final int BYTE_CACHE_OFFSET = 128; |
|
|
|
private static final Byte[] BYTE_CACHE = new Byte[256]; |
|
|
|
private static final int INTEGER_CACHE_OFFSET = 128; |
|
|
|
private static final Integer[] INTEGER_CACHE = new Integer[256]; |
|
|
|
private static final int SHORT_CACHE_OFFSET = 128; |
|
|
|
private static final Short[] SHORT_CACHE = new Short[256]; |
|
|
|
private static final Long[] LONG_CACHE = new Long[256]; |
|
|
|
private static final int LONG_CACHE_OFFSET = 128; |
|
|
|
static { |
|
for (int i = 0; i < CHARACTER_CACHE.length; i++) { |
|
CHARACTER_CACHE[i] = new Character((char) i); |
|
} |
|
|
|
for (int i = 0; i < INTEGER_CACHE.length; i++) { |
|
INTEGER_CACHE[i] = new Integer(i - 128); |
|
} |
|
|
|
for (int i = 0; i < SHORT_CACHE.length; i++) { |
|
SHORT_CACHE[i] = new Short((short) (i - 128)); |
|
} |
|
|
|
for (int i = 0; i < LONG_CACHE.length; i++) { |
|
LONG_CACHE[i] = new Long(i - 128); |
|
} |
|
|
|
for (int i = 0; i < BYTE_CACHE.length; i++) |
|
BYTE_CACHE[i] = new Byte((byte) (i - BYTE_CACHE_OFFSET)); |
|
} |
|
|
|
|
|
|
|
public static Character characterValueOf(char c) { |
|
if (c <= 127) { |
|
return CHARACTER_CACHE[c]; |
|
} |
|
|
|
return new Character(c); |
|
} |
|
|
|
|
|
|
|
public static final Byte byteValueOf(byte b) { |
|
return BYTE_CACHE[b + BYTE_CACHE_OFFSET]; |
|
} |
|
|
|
|
|
|
|
public static final Integer integerValueOf(int i) { |
|
if (i >= -128 && i <= 127) { |
|
return INTEGER_CACHE[i + INTEGER_CACHE_OFFSET]; |
|
} |
|
|
|
return new Integer(i); |
|
} |
|
|
|
|
|
|
|
public static Short shortValueOf(short s) { |
|
|
|
if (s >= -128 && s <= 127) { |
|
return SHORT_CACHE[s + SHORT_CACHE_OFFSET]; |
|
} |
|
|
|
return new Short(s); |
|
} |
|
|
|
|
|
|
|
public static final Long longValueOf(long l) { |
|
if (l >= -128 && l <= 127) { |
|
return LONG_CACHE[(int) l + LONG_CACHE_OFFSET]; |
|
} |
|
|
|
return new Long(l); |
|
} |
|
|
|
|
|
|
|
|
|
private Constants() { |
|
} |
|
} |
|
|