org.polypheny.prism.Index Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polypheny-jdbc-driver Show documentation
Show all versions of polypheny-jdbc-driver Show documentation
A standards-compliant JDBC driver for Polypheny-DB.
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: org/polypheny/prism/namespace_meta_responses.proto
package org.polypheny.prism;
/**
*
*
*The Index message provides details about an index defined on a table. Indexes are crucial for improving the performance of data retrieval operations by effectively organizing the data stored in a database table. This message includes information about the index's database, namespace (or schema), table, uniqueness, name, columns involved, physical location, and type.
*
*
* Protobuf type {@code org.polypheny.prism.Index}
*/
public final class Index extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:org.polypheny.prism.Index)
IndexOrBuilder {
private static final long serialVersionUID = 0L;
// Use Index.newBuilder() to construct.
private Index(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Index() {
namespaceName_ = "";
tableName_ = "";
indexName_ = "";
columns_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Index();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.polypheny.prism.NamespaceMetaResponses.internal_static_org_polypheny_prism_Index_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.polypheny.prism.NamespaceMetaResponses.internal_static_org_polypheny_prism_Index_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.polypheny.prism.Index.class, org.polypheny.prism.Index.Builder.class);
}
public static final int NAMESPACE_NAME_FIELD_NUMBER = 2;
@SuppressWarnings("serial")
private volatile java.lang.Object namespaceName_ = "";
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @return The namespaceName.
*/
@java.lang.Override
public java.lang.String getNamespaceName() {
java.lang.Object ref = namespaceName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
namespaceName_ = s;
return s;
}
}
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @return The bytes for namespaceName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNamespaceNameBytes() {
java.lang.Object ref = namespaceName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
namespaceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TABLE_NAME_FIELD_NUMBER = 3;
@SuppressWarnings("serial")
private volatile java.lang.Object tableName_ = "";
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @return The tableName.
*/
@java.lang.Override
public java.lang.String getTableName() {
java.lang.Object ref = tableName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
tableName_ = s;
return s;
}
}
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @return The bytes for tableName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getTableNameBytes() {
java.lang.Object ref = tableName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
tableName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int UNIQUE_FIELD_NUMBER = 4;
private boolean unique_ = false;
/**
*
*
*Indicates if the index enforces unique values.
*A boolean value where true means the index ensures that all values in the index are unique.
*
*
* bool unique = 4;
* @return The unique.
*/
@java.lang.Override
public boolean getUnique() {
return unique_;
}
public static final int INDEX_NAME_FIELD_NUMBER = 5;
@SuppressWarnings("serial")
private volatile java.lang.Object indexName_ = "";
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @return The indexName.
*/
@java.lang.Override
public java.lang.String getIndexName() {
java.lang.Object ref = indexName_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
indexName_ = s;
return s;
}
}
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @return The bytes for indexName.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getIndexNameBytes() {
java.lang.Object ref = indexName_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
indexName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int COLUMNS_FIELD_NUMBER = 6;
@SuppressWarnings("serial")
private java.util.List columns_;
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
@java.lang.Override
public java.util.List getColumnsList() {
return columns_;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
@java.lang.Override
public java.util.List extends org.polypheny.prism.ColumnOrBuilder>
getColumnsOrBuilderList() {
return columns_;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
@java.lang.Override
public int getColumnsCount() {
return columns_.size();
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
@java.lang.Override
public org.polypheny.prism.Column getColumns(int index) {
return columns_.get(index);
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
@java.lang.Override
public org.polypheny.prism.ColumnOrBuilder getColumnsOrBuilder(
int index) {
return columns_.get(index);
}
public static final int LOCATION_FIELD_NUMBER = 8;
private long location_ = 0L;
/**
*
*
*A numeric identifier representing the location or storage of the index.
*This field is used to identify where the index is physically stored within the database system, if applicable.
*
*
* int64 location = 8;
* @return The location.
*/
@java.lang.Override
public long getLocation() {
return location_;
}
public static final int INDEX_TYPE_FIELD_NUMBER = 9;
private int indexType_ = 0;
/**
*
*
*A numeric representation indicating the type or mechanism of the index.
*This could represent different types of indexing strategies used by the database system, such as B-tree, hash, etc.
*
*
* int32 index_type = 9;
* @return The indexType.
*/
@java.lang.Override
public int getIndexType() {
return indexType_;
}
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(namespaceName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, namespaceName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(tableName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, tableName_);
}
if (unique_ != false) {
output.writeBool(4, unique_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(indexName_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 5, indexName_);
}
for (int i = 0; i < columns_.size(); i++) {
output.writeMessage(6, columns_.get(i));
}
if (location_ != 0L) {
output.writeInt64(8, location_);
}
if (indexType_ != 0) {
output.writeInt32(9, indexType_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(namespaceName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, namespaceName_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(tableName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, tableName_);
}
if (unique_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(4, unique_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(indexName_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, indexName_);
}
for (int i = 0; i < columns_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(6, columns_.get(i));
}
if (location_ != 0L) {
size += com.google.protobuf.CodedOutputStream
.computeInt64Size(8, location_);
}
if (indexType_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(9, indexType_);
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof org.polypheny.prism.Index)) {
return super.equals(obj);
}
org.polypheny.prism.Index other = (org.polypheny.prism.Index) obj;
if (!getNamespaceName()
.equals(other.getNamespaceName())) return false;
if (!getTableName()
.equals(other.getTableName())) return false;
if (getUnique()
!= other.getUnique()) return false;
if (!getIndexName()
.equals(other.getIndexName())) return false;
if (!getColumnsList()
.equals(other.getColumnsList())) return false;
if (getLocation()
!= other.getLocation()) return false;
if (getIndexType()
!= other.getIndexType()) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + NAMESPACE_NAME_FIELD_NUMBER;
hash = (53 * hash) + getNamespaceName().hashCode();
hash = (37 * hash) + TABLE_NAME_FIELD_NUMBER;
hash = (53 * hash) + getTableName().hashCode();
hash = (37 * hash) + UNIQUE_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getUnique());
hash = (37 * hash) + INDEX_NAME_FIELD_NUMBER;
hash = (53 * hash) + getIndexName().hashCode();
if (getColumnsCount() > 0) {
hash = (37 * hash) + COLUMNS_FIELD_NUMBER;
hash = (53 * hash) + getColumnsList().hashCode();
}
hash = (37 * hash) + LOCATION_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
getLocation());
hash = (37 * hash) + INDEX_TYPE_FIELD_NUMBER;
hash = (53 * hash) + getIndexType();
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static org.polypheny.prism.Index parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.polypheny.prism.Index parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.polypheny.prism.Index parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.polypheny.prism.Index parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.polypheny.prism.Index parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static org.polypheny.prism.Index parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static org.polypheny.prism.Index parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.polypheny.prism.Index parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static org.polypheny.prism.Index parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static org.polypheny.prism.Index parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static org.polypheny.prism.Index parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static org.polypheny.prism.Index parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(org.polypheny.prism.Index prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
*
*The Index message provides details about an index defined on a table. Indexes are crucial for improving the performance of data retrieval operations by effectively organizing the data stored in a database table. This message includes information about the index's database, namespace (or schema), table, uniqueness, name, columns involved, physical location, and type.
*
*
* Protobuf type {@code org.polypheny.prism.Index}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:org.polypheny.prism.Index)
org.polypheny.prism.IndexOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return org.polypheny.prism.NamespaceMetaResponses.internal_static_org_polypheny_prism_Index_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return org.polypheny.prism.NamespaceMetaResponses.internal_static_org_polypheny_prism_Index_fieldAccessorTable
.ensureFieldAccessorsInitialized(
org.polypheny.prism.Index.class, org.polypheny.prism.Index.Builder.class);
}
// Construct using org.polypheny.prism.Index.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
namespaceName_ = "";
tableName_ = "";
unique_ = false;
indexName_ = "";
if (columnsBuilder_ == null) {
columns_ = java.util.Collections.emptyList();
} else {
columns_ = null;
columnsBuilder_.clear();
}
bitField0_ = (bitField0_ & ~0x00000010);
location_ = 0L;
indexType_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return org.polypheny.prism.NamespaceMetaResponses.internal_static_org_polypheny_prism_Index_descriptor;
}
@java.lang.Override
public org.polypheny.prism.Index getDefaultInstanceForType() {
return org.polypheny.prism.Index.getDefaultInstance();
}
@java.lang.Override
public org.polypheny.prism.Index build() {
org.polypheny.prism.Index result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public org.polypheny.prism.Index buildPartial() {
org.polypheny.prism.Index result = new org.polypheny.prism.Index(this);
buildPartialRepeatedFields(result);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartialRepeatedFields(org.polypheny.prism.Index result) {
if (columnsBuilder_ == null) {
if (((bitField0_ & 0x00000010) != 0)) {
columns_ = java.util.Collections.unmodifiableList(columns_);
bitField0_ = (bitField0_ & ~0x00000010);
}
result.columns_ = columns_;
} else {
result.columns_ = columnsBuilder_.build();
}
}
private void buildPartial0(org.polypheny.prism.Index result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.namespaceName_ = namespaceName_;
}
if (((from_bitField0_ & 0x00000002) != 0)) {
result.tableName_ = tableName_;
}
if (((from_bitField0_ & 0x00000004) != 0)) {
result.unique_ = unique_;
}
if (((from_bitField0_ & 0x00000008) != 0)) {
result.indexName_ = indexName_;
}
if (((from_bitField0_ & 0x00000020) != 0)) {
result.location_ = location_;
}
if (((from_bitField0_ & 0x00000040) != 0)) {
result.indexType_ = indexType_;
}
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof org.polypheny.prism.Index) {
return mergeFrom((org.polypheny.prism.Index)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(org.polypheny.prism.Index other) {
if (other == org.polypheny.prism.Index.getDefaultInstance()) return this;
if (!other.getNamespaceName().isEmpty()) {
namespaceName_ = other.namespaceName_;
bitField0_ |= 0x00000001;
onChanged();
}
if (!other.getTableName().isEmpty()) {
tableName_ = other.tableName_;
bitField0_ |= 0x00000002;
onChanged();
}
if (other.getUnique() != false) {
setUnique(other.getUnique());
}
if (!other.getIndexName().isEmpty()) {
indexName_ = other.indexName_;
bitField0_ |= 0x00000008;
onChanged();
}
if (columnsBuilder_ == null) {
if (!other.columns_.isEmpty()) {
if (columns_.isEmpty()) {
columns_ = other.columns_;
bitField0_ = (bitField0_ & ~0x00000010);
} else {
ensureColumnsIsMutable();
columns_.addAll(other.columns_);
}
onChanged();
}
} else {
if (!other.columns_.isEmpty()) {
if (columnsBuilder_.isEmpty()) {
columnsBuilder_.dispose();
columnsBuilder_ = null;
columns_ = other.columns_;
bitField0_ = (bitField0_ & ~0x00000010);
columnsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getColumnsFieldBuilder() : null;
} else {
columnsBuilder_.addAllMessages(other.columns_);
}
}
}
if (other.getLocation() != 0L) {
setLocation(other.getLocation());
}
if (other.getIndexType() != 0) {
setIndexType(other.getIndexType());
}
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 18: {
namespaceName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000001;
break;
} // case 18
case 26: {
tableName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000002;
break;
} // case 26
case 32: {
unique_ = input.readBool();
bitField0_ |= 0x00000004;
break;
} // case 32
case 42: {
indexName_ = input.readStringRequireUtf8();
bitField0_ |= 0x00000008;
break;
} // case 42
case 50: {
org.polypheny.prism.Column m =
input.readMessage(
org.polypheny.prism.Column.parser(),
extensionRegistry);
if (columnsBuilder_ == null) {
ensureColumnsIsMutable();
columns_.add(m);
} else {
columnsBuilder_.addMessage(m);
}
break;
} // case 50
case 64: {
location_ = input.readInt64();
bitField0_ |= 0x00000020;
break;
} // case 64
case 72: {
indexType_ = input.readInt32();
bitField0_ |= 0x00000040;
break;
} // case 72
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private java.lang.Object namespaceName_ = "";
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @return The namespaceName.
*/
public java.lang.String getNamespaceName() {
java.lang.Object ref = namespaceName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
namespaceName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @return The bytes for namespaceName.
*/
public com.google.protobuf.ByteString
getNamespaceNameBytes() {
java.lang.Object ref = namespaceName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
namespaceName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @param value The namespaceName to set.
* @return This builder for chaining.
*/
public Builder setNamespaceName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
namespaceName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @return This builder for chaining.
*/
public Builder clearNamespaceName() {
namespaceName_ = getDefaultInstance().getNamespaceName();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
*
*
*The namespace or schema of the indexed table.
*This indicates the specific namespace or schema within the database where the indexed table resides.
*
*
* string namespace_name = 2;
* @param value The bytes for namespaceName to set.
* @return This builder for chaining.
*/
public Builder setNamespaceNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
namespaceName_ = value;
bitField0_ |= 0x00000001;
onChanged();
return this;
}
private java.lang.Object tableName_ = "";
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @return The tableName.
*/
public java.lang.String getTableName() {
java.lang.Object ref = tableName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
tableName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @return The bytes for tableName.
*/
public com.google.protobuf.ByteString
getTableNameBytes() {
java.lang.Object ref = tableName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
tableName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @param value The tableName to set.
* @return This builder for chaining.
*/
public Builder setTableName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
tableName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @return This builder for chaining.
*/
public Builder clearTableName() {
tableName_ = getDefaultInstance().getTableName();
bitField0_ = (bitField0_ & ~0x00000002);
onChanged();
return this;
}
/**
*
*
*The table on which the index is defined.
*This field identifies the specific table within the namespace that the index belongs to.
*
*
* string table_name = 3;
* @param value The bytes for tableName to set.
* @return This builder for chaining.
*/
public Builder setTableNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
tableName_ = value;
bitField0_ |= 0x00000002;
onChanged();
return this;
}
private boolean unique_ ;
/**
*
*
*Indicates if the index enforces unique values.
*A boolean value where true means the index ensures that all values in the index are unique.
*
*
* bool unique = 4;
* @return The unique.
*/
@java.lang.Override
public boolean getUnique() {
return unique_;
}
/**
*
*
*Indicates if the index enforces unique values.
*A boolean value where true means the index ensures that all values in the index are unique.
*
*
* bool unique = 4;
* @param value The unique to set.
* @return This builder for chaining.
*/
public Builder setUnique(boolean value) {
unique_ = value;
bitField0_ |= 0x00000004;
onChanged();
return this;
}
/**
*
*
*Indicates if the index enforces unique values.
*A boolean value where true means the index ensures that all values in the index are unique.
*
*
* bool unique = 4;
* @return This builder for chaining.
*/
public Builder clearUnique() {
bitField0_ = (bitField0_ & ~0x00000004);
unique_ = false;
onChanged();
return this;
}
private java.lang.Object indexName_ = "";
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @return The indexName.
*/
public java.lang.String getIndexName() {
java.lang.Object ref = indexName_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
indexName_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @return The bytes for indexName.
*/
public com.google.protobuf.ByteString
getIndexNameBytes() {
java.lang.Object ref = indexName_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
indexName_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @param value The indexName to set.
* @return This builder for chaining.
*/
public Builder setIndexName(
java.lang.String value) {
if (value == null) { throw new NullPointerException(); }
indexName_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @return This builder for chaining.
*/
public Builder clearIndexName() {
indexName_ = getDefaultInstance().getIndexName();
bitField0_ = (bitField0_ & ~0x00000008);
onChanged();
return this;
}
/**
*
*
*The name of the index.
*This allows for the naming of the index for easier reference and management within the database.
*
*
* string index_name = 5;
* @param value The bytes for indexName to set.
* @return This builder for chaining.
*/
public Builder setIndexNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) { throw new NullPointerException(); }
checkByteStringIsUtf8(value);
indexName_ = value;
bitField0_ |= 0x00000008;
onChanged();
return this;
}
private java.util.List columns_ =
java.util.Collections.emptyList();
private void ensureColumnsIsMutable() {
if (!((bitField0_ & 0x00000010) != 0)) {
columns_ = new java.util.ArrayList(columns_);
bitField0_ |= 0x00000010;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
org.polypheny.prism.Column, org.polypheny.prism.Column.Builder, org.polypheny.prism.ColumnOrBuilder> columnsBuilder_;
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public java.util.List getColumnsList() {
if (columnsBuilder_ == null) {
return java.util.Collections.unmodifiableList(columns_);
} else {
return columnsBuilder_.getMessageList();
}
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public int getColumnsCount() {
if (columnsBuilder_ == null) {
return columns_.size();
} else {
return columnsBuilder_.getCount();
}
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public org.polypheny.prism.Column getColumns(int index) {
if (columnsBuilder_ == null) {
return columns_.get(index);
} else {
return columnsBuilder_.getMessage(index);
}
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder setColumns(
int index, org.polypheny.prism.Column value) {
if (columnsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureColumnsIsMutable();
columns_.set(index, value);
onChanged();
} else {
columnsBuilder_.setMessage(index, value);
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder setColumns(
int index, org.polypheny.prism.Column.Builder builderForValue) {
if (columnsBuilder_ == null) {
ensureColumnsIsMutable();
columns_.set(index, builderForValue.build());
onChanged();
} else {
columnsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder addColumns(org.polypheny.prism.Column value) {
if (columnsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureColumnsIsMutable();
columns_.add(value);
onChanged();
} else {
columnsBuilder_.addMessage(value);
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder addColumns(
int index, org.polypheny.prism.Column value) {
if (columnsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureColumnsIsMutable();
columns_.add(index, value);
onChanged();
} else {
columnsBuilder_.addMessage(index, value);
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder addColumns(
org.polypheny.prism.Column.Builder builderForValue) {
if (columnsBuilder_ == null) {
ensureColumnsIsMutable();
columns_.add(builderForValue.build());
onChanged();
} else {
columnsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder addColumns(
int index, org.polypheny.prism.Column.Builder builderForValue) {
if (columnsBuilder_ == null) {
ensureColumnsIsMutable();
columns_.add(index, builderForValue.build());
onChanged();
} else {
columnsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder addAllColumns(
java.lang.Iterable extends org.polypheny.prism.Column> values) {
if (columnsBuilder_ == null) {
ensureColumnsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, columns_);
onChanged();
} else {
columnsBuilder_.addAllMessages(values);
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder clearColumns() {
if (columnsBuilder_ == null) {
columns_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000010);
onChanged();
} else {
columnsBuilder_.clear();
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public Builder removeColumns(int index) {
if (columnsBuilder_ == null) {
ensureColumnsIsMutable();
columns_.remove(index);
onChanged();
} else {
columnsBuilder_.remove(index);
}
return this;
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public org.polypheny.prism.Column.Builder getColumnsBuilder(
int index) {
return getColumnsFieldBuilder().getBuilder(index);
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public org.polypheny.prism.ColumnOrBuilder getColumnsOrBuilder(
int index) {
if (columnsBuilder_ == null) {
return columns_.get(index); } else {
return columnsBuilder_.getMessageOrBuilder(index);
}
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public java.util.List extends org.polypheny.prism.ColumnOrBuilder>
getColumnsOrBuilderList() {
if (columnsBuilder_ != null) {
return columnsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(columns_);
}
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public org.polypheny.prism.Column.Builder addColumnsBuilder() {
return getColumnsFieldBuilder().addBuilder(
org.polypheny.prism.Column.getDefaultInstance());
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public org.polypheny.prism.Column.Builder addColumnsBuilder(
int index) {
return getColumnsFieldBuilder().addBuilder(
index, org.polypheny.prism.Column.getDefaultInstance());
}
/**
*
*
*The columns that are part of the index.
*This repeated field lists all the columns included in the index, defining the order and structure of the index.
*
*
* repeated .org.polypheny.prism.Column columns = 6;
*/
public java.util.List
getColumnsBuilderList() {
return getColumnsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
org.polypheny.prism.Column, org.polypheny.prism.Column.Builder, org.polypheny.prism.ColumnOrBuilder>
getColumnsFieldBuilder() {
if (columnsBuilder_ == null) {
columnsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
org.polypheny.prism.Column, org.polypheny.prism.Column.Builder, org.polypheny.prism.ColumnOrBuilder>(
columns_,
((bitField0_ & 0x00000010) != 0),
getParentForChildren(),
isClean());
columns_ = null;
}
return columnsBuilder_;
}
private long location_ ;
/**
*
*
*A numeric identifier representing the location or storage of the index.
*This field is used to identify where the index is physically stored within the database system, if applicable.
*
*
* int64 location = 8;
* @return The location.
*/
@java.lang.Override
public long getLocation() {
return location_;
}
/**
*
*
*A numeric identifier representing the location or storage of the index.
*This field is used to identify where the index is physically stored within the database system, if applicable.
*
*
* int64 location = 8;
* @param value The location to set.
* @return This builder for chaining.
*/
public Builder setLocation(long value) {
location_ = value;
bitField0_ |= 0x00000020;
onChanged();
return this;
}
/**
*
*
*A numeric identifier representing the location or storage of the index.
*This field is used to identify where the index is physically stored within the database system, if applicable.
*
*
* int64 location = 8;
* @return This builder for chaining.
*/
public Builder clearLocation() {
bitField0_ = (bitField0_ & ~0x00000020);
location_ = 0L;
onChanged();
return this;
}
private int indexType_ ;
/**
*
*
*A numeric representation indicating the type or mechanism of the index.
*This could represent different types of indexing strategies used by the database system, such as B-tree, hash, etc.
*
*
* int32 index_type = 9;
* @return The indexType.
*/
@java.lang.Override
public int getIndexType() {
return indexType_;
}
/**
*
*
*A numeric representation indicating the type or mechanism of the index.
*This could represent different types of indexing strategies used by the database system, such as B-tree, hash, etc.
*
*
* int32 index_type = 9;
* @param value The indexType to set.
* @return This builder for chaining.
*/
public Builder setIndexType(int value) {
indexType_ = value;
bitField0_ |= 0x00000040;
onChanged();
return this;
}
/**
*
*
*A numeric representation indicating the type or mechanism of the index.
*This could represent different types of indexing strategies used by the database system, such as B-tree, hash, etc.
*
*
* int32 index_type = 9;
* @return This builder for chaining.
*/
public Builder clearIndexType() {
bitField0_ = (bitField0_ & ~0x00000040);
indexType_ = 0;
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:org.polypheny.prism.Index)
}
// @@protoc_insertion_point(class_scope:org.polypheny.prism.Index)
private static final org.polypheny.prism.Index DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new org.polypheny.prism.Index();
}
public static org.polypheny.prism.Index getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Index parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public org.polypheny.prism.Index getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}