Uses of Class
org.postgresql.core.Encoding
-
Packages that use Encoding Package Description org.postgresql.copy org.postgresql.core org.postgresql.jdbc org.postgresql.util -
-
Uses of Encoding in org.postgresql.copy
Fields in org.postgresql.copy declared as Encoding Modifier and Type Field Description private EncodingCopyManager. encoding -
Uses of Encoding in org.postgresql.core
Subclasses of Encoding in org.postgresql.core Modifier and Type Class Description (package private) classByteOptimizedUTF8EncoderUTF-8 encoder which validates input and is optimized for jdk 9+ whereStringobjects are backed bybyte[].(package private) classCharOptimizedUTF8EncoderUTF-8 encoder which validates input and is optimized for jdk 8 and lower whereStringobjects are backed bychar[].(package private) classOptimizedUTF8EncoderUTF-8 encoder implementation which validates values during decoding which is significantly faster than using aCharsetDecoder.Fields in org.postgresql.core declared as Encoding Modifier and Type Field Description private static EncodingEncoding. DEFAULT_ENCODINGprivate EncodingPGStream. encodingMethods in org.postgresql.core that return Encoding Modifier and Type Method Description static EncodingEncoding. defaultEncoding()Get an Encoding using the default encoding for the JVM.static EncodingEncoding. getDatabaseEncoding(java.lang.String databaseEncoding)Construct an Encoding for a given database encoding.EncodingBaseConnection. getEncoding()EncodingEncoding.UTFEncodingProvider. getEncoding()EncodingPGStream. getEncoding()EncodingQueryExecutor. getEncoding()EncodingQueryExecutorBase. getEncoding()static EncodingEncoding. getJVMEncoding(java.lang.String jvmEncoding)Construct an Encoding for a given JVM encoding.Methods in org.postgresql.core with parameters of type Encoding Modifier and Type Method Description voidPGStream. setEncoding(Encoding encoding)Change the encoding used by this connection.voidQueryExecutorBase. setEncoding(Encoding encoding) -
Uses of Encoding in org.postgresql.jdbc
Methods in org.postgresql.jdbc that return Encoding Modifier and Type Method Description EncodingPgConnection. getEncoding() -
Uses of Encoding in org.postgresql.util
Methods in org.postgresql.util with parameters of type Encoding Modifier and Type Method Description static java.util.Map<java.lang.String,java.lang.String>HStoreConverter. fromBytes(byte[] b, Encoding encoding)static byte[]HStoreConverter. toBytes(java.util.Map<?,?> m, Encoding encoding)
-