Interface OracleColumnOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OracleColumn,OracleColumn.Builder
public interface OracleColumnOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetColumnName()Column name.com.google.protobuf.ByteStringgetColumnNameBytes()Column name.StringgetDataType()The Oracle data type.com.google.protobuf.ByteStringgetDataTypeBytes()The Oracle data type.StringgetEncoding()Column encoding.com.google.protobuf.ByteStringgetEncodingBytes()Column encoding.intgetLength()Column length.booleangetNullable()Whether or not the column can accept a null value.intgetOrdinalPosition()The ordinal position of the column in the table.intgetPrecision()Column precision.booleangetPrimaryKey()Whether or not the column represents a primary key.intgetScale()Column scale.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getColumnName
String getColumnName()
Column name.
string column_name = 1;- Returns:
- The columnName.
-
getColumnNameBytes
com.google.protobuf.ByteString getColumnNameBytes()
Column name.
string column_name = 1;- Returns:
- The bytes for columnName.
-
getDataType
String getDataType()
The Oracle data type.
string data_type = 2;- Returns:
- The dataType.
-
getDataTypeBytes
com.google.protobuf.ByteString getDataTypeBytes()
The Oracle data type.
string data_type = 2;- Returns:
- The bytes for dataType.
-
getLength
int getLength()
Column length.
int32 length = 3;- Returns:
- The length.
-
getPrecision
int getPrecision()
Column precision.
int32 precision = 4;- Returns:
- The precision.
-
getScale
int getScale()
Column scale.
int32 scale = 5;- Returns:
- The scale.
-
getEncoding
String getEncoding()
Column encoding.
string encoding = 6;- Returns:
- The encoding.
-
getEncodingBytes
com.google.protobuf.ByteString getEncodingBytes()
Column encoding.
string encoding = 6;- Returns:
- The bytes for encoding.
-
getPrimaryKey
boolean getPrimaryKey()
Whether or not the column represents a primary key.
bool primary_key = 7;- Returns:
- The primaryKey.
-
getNullable
boolean getNullable()
Whether or not the column can accept a null value.
bool nullable = 8;- Returns:
- The nullable.
-
getOrdinalPosition
int getOrdinalPosition()
The ordinal position of the column in the table.
int32 ordinal_position = 9;- Returns:
- The ordinalPosition.
-
-