Uses of Class
com.impossibl.postgres.protocol.FieldFormat
-
Packages that use FieldFormat Package Description com.impossibl.postgres.jdbc com.impossibl.postgres.protocol com.impossibl.postgres.protocol.v30 com.impossibl.postgres.system com.impossibl.postgres.types -
-
Uses of FieldFormat in com.impossibl.postgres.jdbc
Methods in com.impossibl.postgres.jdbc with parameters of type FieldFormat Modifier and Type Method Description static void
PGBuffersArray. encode(Context context, Type componentType, FieldFormat format, Object value, List<io.netty.buffer.ByteBuf> elementBuffers)
Constructors in com.impossibl.postgres.jdbc with parameters of type FieldFormat Constructor Description PGBuffersArray(Context context, ArrayType type, FieldFormat elementFormat, io.netty.buffer.ByteBuf[] elementBuffers, int[] dimensions)
-
Uses of FieldFormat in com.impossibl.postgres.protocol
Fields in com.impossibl.postgres.protocol declared as FieldFormat Modifier and Type Field Description static FieldFormat[]
FieldFormats. REQUEST_ALL_BINARY
static FieldFormat[]
FieldFormats. REQUEST_ALL_TEXT
Methods in com.impossibl.postgres.protocol that return FieldFormat Modifier and Type Method Description FieldFormat
FieldFormat. getFormat()
FieldFormat
FieldFormatRef. getFormat()
FieldFormat
ResultField. getFormat()
static FieldFormat
FieldFormat. valueOf(String name)
Returns the enum constant of this type with the specified name.static FieldFormat[]
FieldFormat. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.impossibl.postgres.protocol with parameters of type FieldFormat Modifier and Type Method Description void
ResultField. setFormat(FieldFormat v)
Constructors in com.impossibl.postgres.protocol with parameters of type FieldFormat Constructor Description ResultField(String name, int relationId, short relationAttributeNumber, TypeRef typeRef, short typeLength, int typeModifier, FieldFormat format)
ResultField(String name, int relationId, short relationAttributeNumber, Type type, short typeLength, int typeModifier, FieldFormat format)
-
Uses of FieldFormat in com.impossibl.postgres.protocol.v30
Methods in com.impossibl.postgres.protocol.v30 with parameters of type FieldFormat Modifier and Type Method Description ProtocolHandler
ProtocolHandler.CopyBothResponse. copyBoth(CopyFormat format, FieldFormat[] fieldFormats)
InputStream
ProtocolHandler.CopyInResponse. copyIn(CopyFormat format, FieldFormat[] fieldFormats)
ProtocolHandler
ProtocolHandler.CopyOutResponse. copyOut(CopyFormat format, FieldFormat[] fieldFormats)
-
Uses of FieldFormat in com.impossibl.postgres.system
Fields in com.impossibl.postgres.system declared as FieldFormat Modifier and Type Field Description static FieldFormat[]
Empty. EMPTY_FORMATS
Fields in com.impossibl.postgres.system with type parameters of type FieldFormat Modifier and Type Field Description static Setting<FieldFormat>
SystemSettings. FIELD_FORMAT_PREF
static Setting<FieldFormat>
SystemSettings. PARAM_FORMAT_PREF
-
Uses of FieldFormat in com.impossibl.postgres.types
Methods in com.impossibl.postgres.types that return FieldFormat Modifier and Type Method Description FieldFormat
NestedArrayType. getElementFormat()
FieldFormat
Type. getParameterFormat()
FieldFormat
Type. getResultFormat()
Methods in com.impossibl.postgres.types with parameters of type FieldFormat Modifier and Type Method Description Type.Codec<?,?>
Type. getCodec(FieldFormat format)
boolean
ArrayType. isParameterFormatSupported(FieldFormat format)
boolean
DomainType. isParameterFormatSupported(FieldFormat format)
boolean
EnumerationType. isParameterFormatSupported(FieldFormat format)
boolean
RangeType. isParameterFormatSupported(FieldFormat format)
boolean
Type. isParameterFormatSupported(FieldFormat format)
boolean
ArrayType. isResultFormatSupported(FieldFormat format)
boolean
DomainType. isResultFormatSupported(FieldFormat format)
boolean
EnumerationType. isResultFormatSupported(FieldFormat format)
boolean
RangeType. isResultFormatSupported(FieldFormat format)
boolean
Type. isResultFormatSupported(FieldFormat format)
Constructors in com.impossibl.postgres.types with parameters of type FieldFormat Constructor Description ArrayType(int id, String name, Short length, Byte alignment, Type.Category category, char delimeter, int arrayTypeId, Procs procs, FieldFormat preferredParameterFormat, FieldFormat preferredResultFormat, Type elementType)
ArrayType(int id, String name, Short length, Byte alignment, Type.Category category, char delimeter, int arrayTypeId, String procName, Procs procs, FieldFormat preferredParameterFormat, FieldFormat preferredResultFormat, Type elementType)
ArrayType(int id, String name, String namespace, Short length, Byte alignment, Type.Category category, char delimeter, int arrayTypeId, Type.BinaryCodec binaryCodec, Type.TextCodec textCodec, Modifiers.Parser modifierParser, FieldFormat preferredParameterFormat, FieldFormat preferredResultFormat, Type elementType)
BaseType(int id, String name, Short length, Byte alignment, Type.Category category, char delimeter, int arrayTypeId, Procs procs, FieldFormat preferredParameterFormat, FieldFormat preferredResultFormat)
BaseType(int id, String name, String namespace, Short length, Byte alignment, Type.Category category, char delimeter, int arrayTypeId, String procName, Procs procs, FieldFormat preferredParameterFormat, FieldFormat preferredResultFormat)
NestedArrayType(ArrayType arrayType, Type elementType, FieldFormat elementFormat, int[] dimensions)
Type(int id, String name, String namespace, Short length, Byte alignment, Type.Category category, Character delimeter, Integer arrayTypeId, Type.BinaryCodec binaryCodec, Type.TextCodec textCodec, Modifiers.Parser modifierParser, FieldFormat preferredParameterFormat, FieldFormat preferredResultFormat)
-