Uses of Class
org.postgresql.core.AsciiStringInterner.BaseKey
-
Packages that use AsciiStringInterner.BaseKey Package Description org.postgresql.core -
-
Uses of AsciiStringInterner.BaseKey in org.postgresql.core
Subclasses of AsciiStringInterner.BaseKey in org.postgresql.core Modifier and Type Class Description private static class
AsciiStringInterner.Key
Instance used for inserting values into the cache.private static class
AsciiStringInterner.TempKey
Only used for lookups, never to actually store entries.Fields in org.postgresql.core declared as AsciiStringInterner.BaseKey Modifier and Type Field Description private AsciiStringInterner.BaseKey
AsciiStringInterner.StringReference. key
Fields in org.postgresql.core with type parameters of type AsciiStringInterner.BaseKey Modifier and Type Field Description (package private) java.util.concurrent.ConcurrentMap<AsciiStringInterner.BaseKey,java.lang.ref.SoftReference<java.lang.String>>
AsciiStringInterner. cache
Contains the canonicalized values, keyed by the asciibyte[]
.Methods in org.postgresql.core with parameters of type AsciiStringInterner.BaseKey Modifier and Type Method Description (package private) abstract boolean
AsciiStringInterner.BaseKey. equalsBytes(AsciiStringInterner.BaseKey other)
(package private) boolean
AsciiStringInterner.Key. equalsBytes(AsciiStringInterner.BaseKey other)
(package private) boolean
AsciiStringInterner.TempKey. equalsBytes(AsciiStringInterner.BaseKey other)
Constructors in org.postgresql.core with parameters of type AsciiStringInterner.BaseKey Constructor Description StringReference(AsciiStringInterner.BaseKey key, java.lang.String referent)
-