public static final class MysqlxResultset.ColumnMetaData extends com.google.protobuf.GeneratedMessageV3 implements MysqlxResultset.ColumnMetaDataOrBuilder
meta data of a Column
.. note:: the encoding used for the different ``bytes`` fields in the meta data is externally
controlled.
.. seealso:: https://dev.mysql.com/doc/refman/8.0/en/charset-connection.html
.. note::
The server may not set the ``original_{table|name}`` fields if they are equal to the plain
``{table|name}`` field.
A client has to reconstruct it like::
if .original_name is empty and .name is not empty:
.original_name = .name
if .original_table is empty and .table is not empty:
.original_table = .table
.. note::
``compact metadata format`` can be requested by the client. In that case only ``.type`` is set and
all other fields are empty.
:param type:
.. table:: Expected Datatype of Mysqlx.Resultset.Row per SQL Type for non NULL values
================= ============ ======= ========== ====== ========
SQL Type .type .length .frac_dig .flags .charset
================= ============ ======= ========== ====== ========
TINY SINT x
TINY UNSIGNED UINT x x
SHORT SINT x
SHORT UNSIGNED UINT x x
INT24 SINT x
INT24 UNSIGNED UINT x x
INT SINT x
INT UNSIGNED UINT x x
LONGLONG SINT x
LONGLONG UNSIGNED UINT x x
DOUBLE DOUBLE x x x
FLOAT FLOAT x x x
DECIMAL DECIMAL x x x
VARCHAR,CHAR,... BYTES x x x
GEOMETRY BYTES
TIME TIME x
DATE DATETIME x
DATETIME DATETIME x
YEAR UINT x x
TIMESTAMP DATETIME x
SET SET x
ENUM ENUM x
NULL BYTES
BIT BIT x
================= ============ ======= ========== ====== ========
.. note:: the SQL "NULL" value is sent as an empty field value in :protobuf:msg:`Mysqlx.Resultset::Row`
.. seealso:: protobuf encoding of primitive datatypes are decribed in https://developers.google.com/protocol-buffers/docs/encoding
SINT
``.length``
maximum number of displayable decimal digits (including minus sign) of the type
.. note::
valid range is 0-255, but usually you'll see 1-20
=============== ==
SQL Type max digits per type
=============== ==
TINY SIGNED 4
SHORT SIGNED 6
INT24 SIGNED 8
INT SIGNED 11
LONGLONG SIGNED 20
=============== ==
.. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html
``value``
variable length encoded signed 64 integer
UINT
``.flags & 1`` (zerofill)
the client has to left pad with 0's up to .length
``.length``
maximum number of displayable decimal digits of the type
.. note::
valid range is 0-255, but usually you'll see 1-20
================= ==
SQL Type max digits per type
================= ==
TINY UNSIGNED 3
SHORT UNSIGNED 5
INT24 UNSIGNED 8
INT UNSIGNED 10
LONGLONG UNSIGNED 20
================= ==
.. seealso:: definition of ``M`` in https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html
``value``
variable length encoded unsigned 64 integer
BIT
``.length``
maximum number of displayable binary digits
.. note:: valid range for M of the ``BIT`` type is 1 - 64
.. seealso:: https://dev.mysql.com/doc/refman/8.0/en/numeric-type-overview.html
``value``
variable length encoded unsigned 64 integer
DOUBLE
``.length``
maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``)
``.fractional_digits``
maximum number of displayable decimal digits following the decimal point
``value``
encoded as Protobuf's 'double'
FLOAT
``.length``
maximum number of displayable decimal digits (including the decimal point and ``.fractional_digits``)
``.fractional_digits``
maximum number of displayable decimal digits following the decimal point
``value``
encoded as Protobuf's 'float'
BYTES, ENUM
BYTES is used for all opaque byte strings that may have a charset
* TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB
* TINYTEXT, TEXT, MEDIUMTEXT, LONGTEXT
* VARCHAR, VARBINARY
* CHAR, BINARY
* ENUM
``.length``
the maximum length of characters of the underlying type
``.flags & 1`` (rightpad)
if the length of the field is less than ``.length``, the receiver is
supposed to add padding characters to the right end of the string.
If the ``.charset`` is "binary", the padding character is ``0x00``,
otherwise it is a space character as defined by that character set.
============= ======= ======== =======
SQL Type .length .charset .flags
============= ======= ======== =======
TINYBLOB 256 binary
BLOB 65535 binary
VARCHAR(32) 32 utf8
VARBINARY(32) 32 utf8_bin
BINARY(32) 32 binary rightpad
CHAR(32) 32 utf8 rightpad
============= ======= ======== =======
``value``
sequence of bytes with added one extra '\0' byte at the end. To obtain the
original string, the extra '\0' should be removed.
.. note:: the length of the string can be acquired with protobuf's field length() method
length of sequence-of-bytes = length-of-field - 1
.. note:: the extra byte allows to distinguish between a NULL and empty byte sequence
TIME
A time value.
``value``
the following bytes sequence:
``| negate [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]``
* negate - one byte, should be one of: 0x00 for "+", 0x01 for "-"
* hour - optional variable length encoded unsigned64 value for the hour
* minutes - optional variable length encoded unsigned64 value for the minutes
* seconds - optional variable length encoded unsigned64 value for the seconds
* useconds - optional variable length encoded unsigned64 value for the microseconds
.. seealso:: protobuf encoding in https://developers.google.com/protocol-buffers/docs/encoding
.. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0
Example: 0x00 -> +00:00:00.000000
DATETIME
A date or date and time value.
``value``
a sequence of variants, arranged as follows:
``| year | month | day | [ | hour | [ | minutes | [ | seconds | [ | useconds | ]]]]``
* year - variable length encoded unsigned64 value for the year
* month - variable length encoded unsigned64 value for the month
* day - variable length encoded unsigned64 value for the day
* hour - optional variable length encoded unsigned64 value for the hour
* minutes - optional variable length encoded unsigned64 value for the minutes
* seconds - optional variable length encoded unsigned64 value for the seconds
* useconds - optional variable length encoded unsigned64 value for the microseconds
.. note:: hour, minutes, seconds, useconds are optional if all the values to the right are 0
``.flags & 1`` (timestamp)
============= =======
SQL Type .flags
============= =======
DATETIME
TIMESTAMP 1
DECIMAL
An arbitrary length number. The number is encoded as a single byte
indicating the position of the decimal point followed by the Packed BCD
encoded number. Packed BCD is used to simplify conversion to and
from strings and other native arbitrary precision math datatypes.
.. seealso:: packed BCD in https://en.wikipedia.org/wiki/Binary-coded_decimal
``.length``
maximum number of displayable decimal digits (*excluding* the decimal point and sign, but including ``.fractional_digits``)
.. note:: should be in the range of 1 - 65
``.fractional_digits``
is the decimal digits to display out of length
.. note:: should be in the range of 0 - 30
``value``
the following bytes sequence:
``| scale | BCD | sign | [0x0] |``
* scale - 8bit scale value (number of decimal digit after the '.')
* BCD - BCD encoded digits (4 bits for each digit)
* sign - sign encoded on 4 bits (0xc = "+", 0xd = "-")
* 0x0 - last 4bits if length(digits) % 2 == 0
Example: x04 0x12 0x34 0x01 0xd0 -> -12.3401
SET
A list of strings representing a SET of values.
``value``
A sequence of 0 or more of protobuf's bytes (length prepended octets) or one of
the special sequences with a predefined meaning listed below.
Example (length of the bytes array shown in brackets):
* ``[0]`` - the NULL value
* ``[1] 0x00`` - a set containing a blank string ''
* ``[1] 0x01`` - this would be an invalid value, but is to be treated as the empty set
* ``[2] 0x01 0x00`` - a set with a single item, which is the '\0' character
* ``[8] 0x03 F O O 0x03 B A R`` - a set with 2 items: FOO,BAR
:param name: name of the column
:param original_name: name of the column before an alias was applied
:param table: name of the table the column orginates from
:param original_table: name of the table the column orginates from before an alias was applied
:param schema: schema the column originates from
:param catalog:
catalog the schema originates from
.. note::
as there is current no support for catalogs in MySQL, don't expect this field to be set.
In the MySQL C/S protocol the field had the value ``def`` all the time.
:param fractional_digits: displayed factional decimal digits for floating point and fixed point numbers
:param length: maximum count of displayable characters of .type
:param flags:
``.type`` specific flags
======= ====== ===========
type value description
======= ====== ===========
UINT 0x0001 zerofill
DOUBLE 0x0001 unsigned
FLOAT 0x0001 unsigned
DECIMAL 0x0001 unsigned
BYTES 0x0001 rightpad
======= ====== ===========
====== ================
value description
====== ================
0x0010 NOT_NULL
0x0020 PRIMARY_KEY
0x0040 UNIQUE_KEY
0x0080 MULTIPLE_KEY
0x0100 AUTO_INCREMENT
====== ================
default: 0
:param content_type:
a hint about the higher-level encoding of a BYTES field, for more informations
please refer to Mysqlx.Resultset.ContentType_BYTES enum.
Protobuf type Mysqlx.Resultset.ColumnMetaData| Modifier and Type | Class and Description |
|---|---|
static class |
MysqlxResultset.ColumnMetaData.Builder
meta data of a Column
..
|
static class |
MysqlxResultset.ColumnMetaData.FieldType
Protobuf enum
Mysqlx.Resultset.ColumnMetaData.FieldType |
com.google.protobuf.GeneratedMessageV3.BuilderParent, com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage,BuilderType extends com.google.protobuf.GeneratedMessageV3.ExtendableBuilder<MessageType,BuilderType>>, com.google.protobuf.GeneratedMessageV3.ExtendableMessage<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.ExtendableMessageOrBuilder<MessageType extends com.google.protobuf.GeneratedMessageV3.ExtendableMessage>, com.google.protobuf.GeneratedMessageV3.FieldAccessorTable, com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter| Modifier and Type | Field and Description |
|---|---|
static int |
CATALOG_FIELD_NUMBER |
static int |
COLLATION_FIELD_NUMBER |
static int |
CONTENT_TYPE_FIELD_NUMBER |
static int |
FLAGS_FIELD_NUMBER |
static int |
FRACTIONAL_DIGITS_FIELD_NUMBER |
static int |
LENGTH_FIELD_NUMBER |
static int |
NAME_FIELD_NUMBER |
static int |
ORIGINAL_NAME_FIELD_NUMBER |
static int |
ORIGINAL_TABLE_FIELD_NUMBER |
static com.google.protobuf.Parser<MysqlxResultset.ColumnMetaData> |
PARSER
Deprecated.
|
static int |
SCHEMA_FIELD_NUMBER |
static int |
TABLE_FIELD_NUMBER |
static int |
TYPE_FIELD_NUMBER |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
com.google.protobuf.ByteString |
getCatalog()
optional bytes catalog = 7; |
long |
getCollation()
optional uint64 collation = 8; |
int |
getContentType()
optional uint32 content_type = 12; |
static MysqlxResultset.ColumnMetaData |
getDefaultInstance() |
MysqlxResultset.ColumnMetaData |
getDefaultInstanceForType() |
static com.google.protobuf.Descriptors.Descriptor |
getDescriptor() |
int |
getFlags()
optional uint32 flags = 11; |
int |
getFractionalDigits()
optional uint32 fractional_digits = 9; |
int |
getLength()
optional uint32 length = 10; |
com.google.protobuf.ByteString |
getName()
optional bytes name = 2; |
com.google.protobuf.ByteString |
getOriginalName()
optional bytes original_name = 3; |
com.google.protobuf.ByteString |
getOriginalTable()
optional bytes original_table = 5; |
com.google.protobuf.Parser<MysqlxResultset.ColumnMetaData> |
getParserForType() |
com.google.protobuf.ByteString |
getSchema()
optional bytes schema = 6; |
int |
getSerializedSize() |
com.google.protobuf.ByteString |
getTable()
optional bytes table = 4; |
MysqlxResultset.ColumnMetaData.FieldType |
getType()
datatype of the field in a row
|
com.google.protobuf.UnknownFieldSet |
getUnknownFields() |
boolean |
hasCatalog()
optional bytes catalog = 7; |
boolean |
hasCollation()
optional uint64 collation = 8; |
boolean |
hasContentType()
optional uint32 content_type = 12; |
boolean |
hasFlags()
optional uint32 flags = 11; |
boolean |
hasFractionalDigits()
optional uint32 fractional_digits = 9; |
int |
hashCode() |
boolean |
hasLength()
optional uint32 length = 10; |
boolean |
hasName()
optional bytes name = 2; |
boolean |
hasOriginalName()
optional bytes original_name = 3; |
boolean |
hasOriginalTable()
optional bytes original_table = 5; |
boolean |
hasSchema()
optional bytes schema = 6; |
boolean |
hasTable()
optional bytes table = 4; |
boolean |
hasType()
datatype of the field in a row
|
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable |
internalGetFieldAccessorTable() |
boolean |
isInitialized() |
static MysqlxResultset.ColumnMetaData.Builder |
newBuilder() |
static MysqlxResultset.ColumnMetaData.Builder |
newBuilder(MysqlxResultset.ColumnMetaData prototype) |
MysqlxResultset.ColumnMetaData.Builder |
newBuilderForType() |
protected MysqlxResultset.ColumnMetaData.Builder |
newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent) |
protected java.lang.Object |
newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused) |
static MysqlxResultset.ColumnMetaData |
parseDelimitedFrom(java.io.InputStream input) |
static MysqlxResultset.ColumnMetaData |
parseDelimitedFrom(java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static MysqlxResultset.ColumnMetaData |
parseFrom(byte[] data) |
static MysqlxResultset.ColumnMetaData |
parseFrom(byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static MysqlxResultset.ColumnMetaData |
parseFrom(java.nio.ByteBuffer data) |
static MysqlxResultset.ColumnMetaData |
parseFrom(java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static MysqlxResultset.ColumnMetaData |
parseFrom(com.google.protobuf.ByteString data) |
static MysqlxResultset.ColumnMetaData |
parseFrom(com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static MysqlxResultset.ColumnMetaData |
parseFrom(com.google.protobuf.CodedInputStream input) |
static MysqlxResultset.ColumnMetaData |
parseFrom(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static MysqlxResultset.ColumnMetaData |
parseFrom(java.io.InputStream input) |
static MysqlxResultset.ColumnMetaData |
parseFrom(java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static com.google.protobuf.Parser<MysqlxResultset.ColumnMetaData> |
parser() |
MysqlxResultset.ColumnMetaData.Builder |
toBuilder() |
void |
writeTo(com.google.protobuf.CodedOutputStream output) |
canUseUnsafe, computeStringSize, computeStringSizeNoTag, emptyBooleanList, emptyDoubleList, emptyFloatList, emptyIntList, emptyLongList, getAllFields, getDescriptorForType, getField, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, hasField, hasOneof, internalGetMapField, makeExtensionsImmutable, mergeFromAndMakeImmutableInternal, mutableCopy, mutableCopy, mutableCopy, mutableCopy, mutableCopy, newBooleanList, newBuilderForType, newDoubleList, newFloatList, newIntList, newLongList, parseDelimitedWithIOException, parseDelimitedWithIOException, parseUnknownField, parseUnknownFieldProto3, parseWithIOException, parseWithIOException, parseWithIOException, parseWithIOException, serializeBooleanMapTo, serializeIntegerMapTo, serializeLongMapTo, serializeStringMapTo, writeReplace, writeString, writeStringNoTagfindInitializationErrors, getInitializationErrorString, hashBoolean, hashEnum, hashEnumList, hashFields, hashLong, toStringaddAll, addAll, checkByteStringIsUtf8, toByteArray, toByteString, writeDelimitedTo, writeToclone, finalize, getClass, notify, notifyAll, wait, wait, waitpublic static final int TYPE_FIELD_NUMBER
public static final int NAME_FIELD_NUMBER
public static final int ORIGINAL_NAME_FIELD_NUMBER
public static final int TABLE_FIELD_NUMBER
public static final int ORIGINAL_TABLE_FIELD_NUMBER
public static final int SCHEMA_FIELD_NUMBER
public static final int CATALOG_FIELD_NUMBER
public static final int COLLATION_FIELD_NUMBER
public static final int FRACTIONAL_DIGITS_FIELD_NUMBER
public static final int LENGTH_FIELD_NUMBER
public static final int FLAGS_FIELD_NUMBER
public static final int CONTENT_TYPE_FIELD_NUMBER
@Deprecated public static final com.google.protobuf.Parser<MysqlxResultset.ColumnMetaData> PARSER
protected java.lang.Object newInstance(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
newInstance in class com.google.protobuf.GeneratedMessageV3public final com.google.protobuf.UnknownFieldSet getUnknownFields()
getUnknownFields in interface com.google.protobuf.MessageOrBuildergetUnknownFields in class com.google.protobuf.GeneratedMessageV3public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3public boolean hasType()
datatype of the field in a row
required .Mysqlx.Resultset.ColumnMetaData.FieldType type = 1;hasType in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic MysqlxResultset.ColumnMetaData.FieldType getType()
datatype of the field in a row
required .Mysqlx.Resultset.ColumnMetaData.FieldType type = 1;getType in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasName()
optional bytes name = 2;hasName in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic com.google.protobuf.ByteString getName()
optional bytes name = 2;getName in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasOriginalName()
optional bytes original_name = 3;hasOriginalName in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic com.google.protobuf.ByteString getOriginalName()
optional bytes original_name = 3;getOriginalName in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasTable()
optional bytes table = 4;hasTable in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic com.google.protobuf.ByteString getTable()
optional bytes table = 4;getTable in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasOriginalTable()
optional bytes original_table = 5;hasOriginalTable in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic com.google.protobuf.ByteString getOriginalTable()
optional bytes original_table = 5;getOriginalTable in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasSchema()
optional bytes schema = 6;hasSchema in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic com.google.protobuf.ByteString getSchema()
optional bytes schema = 6;getSchema in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasCatalog()
optional bytes catalog = 7;hasCatalog in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic com.google.protobuf.ByteString getCatalog()
optional bytes catalog = 7;getCatalog in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasCollation()
optional uint64 collation = 8;hasCollation in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic long getCollation()
optional uint64 collation = 8;getCollation in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasFractionalDigits()
optional uint32 fractional_digits = 9;hasFractionalDigits in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic int getFractionalDigits()
optional uint32 fractional_digits = 9;getFractionalDigits in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasLength()
optional uint32 length = 10;hasLength in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic int getLength()
optional uint32 length = 10;getLength in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasFlags()
optional uint32 flags = 11;hasFlags in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic int getFlags()
optional uint32 flags = 11;getFlags in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic boolean hasContentType()
optional uint32 content_type = 12;hasContentType in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic int getContentType()
optional uint32 content_type = 12;getContentType in interface MysqlxResultset.ColumnMetaDataOrBuilderpublic final boolean isInitialized()
isInitialized in interface com.google.protobuf.MessageLiteOrBuilderisInitialized in class com.google.protobuf.GeneratedMessageV3public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException
writeTo in interface com.google.protobuf.MessageLitewriteTo in class com.google.protobuf.GeneratedMessageV3java.io.IOExceptionpublic int getSerializedSize()
getSerializedSize in interface com.google.protobuf.MessageLitegetSerializedSize in class com.google.protobuf.GeneratedMessageV3public boolean equals(java.lang.Object obj)
equals in interface com.google.protobuf.Messageequals in class com.google.protobuf.AbstractMessagepublic int hashCode()
hashCode in interface com.google.protobuf.MessagehashCode in class com.google.protobuf.AbstractMessagepublic static MysqlxResultset.ColumnMetaData parseFrom(java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
com.google.protobuf.InvalidProtocolBufferExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(java.io.InputStream input) throws java.io.IOException
java.io.IOExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
java.io.IOExceptionpublic static MysqlxResultset.ColumnMetaData parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException
java.io.IOExceptionpublic static MysqlxResultset.ColumnMetaData parseDelimitedFrom(java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
java.io.IOExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(com.google.protobuf.CodedInputStream input) throws java.io.IOException
java.io.IOExceptionpublic static MysqlxResultset.ColumnMetaData parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException
java.io.IOExceptionpublic MysqlxResultset.ColumnMetaData.Builder newBuilderForType()
newBuilderForType in interface com.google.protobuf.MessagenewBuilderForType in interface com.google.protobuf.MessageLitepublic static MysqlxResultset.ColumnMetaData.Builder newBuilder()
public static MysqlxResultset.ColumnMetaData.Builder newBuilder(MysqlxResultset.ColumnMetaData prototype)
public MysqlxResultset.ColumnMetaData.Builder toBuilder()
toBuilder in interface com.google.protobuf.MessagetoBuilder in interface com.google.protobuf.MessageLiteprotected MysqlxResultset.ColumnMetaData.Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
newBuilderForType in class com.google.protobuf.GeneratedMessageV3public static MysqlxResultset.ColumnMetaData getDefaultInstance()
public static com.google.protobuf.Parser<MysqlxResultset.ColumnMetaData> parser()
public com.google.protobuf.Parser<MysqlxResultset.ColumnMetaData> getParserForType()
getParserForType in interface com.google.protobuf.MessagegetParserForType in interface com.google.protobuf.MessageLitegetParserForType in class com.google.protobuf.GeneratedMessageV3public MysqlxResultset.ColumnMetaData getDefaultInstanceForType()
getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuildergetDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder