All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.polypheny.prism.StatementResponse Maven / Gradle / Ivy

The newest version!
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: org/polypheny/prism/statement_responses.proto

package org.polypheny.prism;

/**
 * 
 *
 *Represents the response after executing a statement.
 *This message contains the identifier of the executed statement and optionally, the result of the execution.
 *The result can vary based on the type of statement executed, ranging from scalar values to complex data frames.
 * 
* * Protobuf type {@code org.polypheny.prism.StatementResponse} */ public final class StatementResponse extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:org.polypheny.prism.StatementResponse) StatementResponseOrBuilder { private static final long serialVersionUID = 0L; // Use StatementResponse.newBuilder() to construct. private StatementResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private StatementResponse() { } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new StatementResponse(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.polypheny.prism.StatementResponses.internal_static_org_polypheny_prism_StatementResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.polypheny.prism.StatementResponses.internal_static_org_polypheny_prism_StatementResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( org.polypheny.prism.StatementResponse.class, org.polypheny.prism.StatementResponse.Builder.class); } private int bitField0_; public static final int STATEMENT_ID_FIELD_NUMBER = 1; private int statementId_ = 0; /** *
   * The unique identifier of the executed statement.
   * 
* * int32 statement_id = 1; * @return The statementId. */ @java.lang.Override public int getStatementId() { return statementId_; } public static final int RESULT_FIELD_NUMBER = 2; private org.polypheny.prism.StatementResult result_; /** *
   *
   *(Optional) The result of the executed statement.
   *This could be a scalar value or a data frame, depending on the type of statement executed.
   * 
* * optional .org.polypheny.prism.StatementResult result = 2; * @return Whether the result field is set. */ @java.lang.Override public boolean hasResult() { return ((bitField0_ & 0x00000001) != 0); } /** *
   *
   *(Optional) The result of the executed statement.
   *This could be a scalar value or a data frame, depending on the type of statement executed.
   * 
* * optional .org.polypheny.prism.StatementResult result = 2; * @return The result. */ @java.lang.Override public org.polypheny.prism.StatementResult getResult() { return result_ == null ? org.polypheny.prism.StatementResult.getDefaultInstance() : result_; } /** *
   *
   *(Optional) The result of the executed statement.
   *This could be a scalar value or a data frame, depending on the type of statement executed.
   * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ @java.lang.Override public org.polypheny.prism.StatementResultOrBuilder getResultOrBuilder() { return result_ == null ? org.polypheny.prism.StatementResult.getDefaultInstance() : result_; } 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 (statementId_ != 0) { output.writeInt32(1, statementId_); } if (((bitField0_ & 0x00000001) != 0)) { output.writeMessage(2, getResult()); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (statementId_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(1, statementId_); } if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(2, getResult()); } 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.StatementResponse)) { return super.equals(obj); } org.polypheny.prism.StatementResponse other = (org.polypheny.prism.StatementResponse) obj; if (getStatementId() != other.getStatementId()) return false; if (hasResult() != other.hasResult()) return false; if (hasResult()) { if (!getResult() .equals(other.getResult())) 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) + STATEMENT_ID_FIELD_NUMBER; hash = (53 * hash) + getStatementId(); if (hasResult()) { hash = (37 * hash) + RESULT_FIELD_NUMBER; hash = (53 * hash) + getResult().hashCode(); } hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static org.polypheny.prism.StatementResponse parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.polypheny.prism.StatementResponse 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.StatementResponse parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.polypheny.prism.StatementResponse 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.StatementResponse parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.polypheny.prism.StatementResponse parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.polypheny.prism.StatementResponse parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.polypheny.prism.StatementResponse 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.StatementResponse parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.polypheny.prism.StatementResponse 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.StatementResponse parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.polypheny.prism.StatementResponse 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.StatementResponse 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; } /** *
   *
   *Represents the response after executing a statement.
   *This message contains the identifier of the executed statement and optionally, the result of the execution.
   *The result can vary based on the type of statement executed, ranging from scalar values to complex data frames.
   * 
* * Protobuf type {@code org.polypheny.prism.StatementResponse} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:org.polypheny.prism.StatementResponse) org.polypheny.prism.StatementResponseOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.polypheny.prism.StatementResponses.internal_static_org_polypheny_prism_StatementResponse_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.polypheny.prism.StatementResponses.internal_static_org_polypheny_prism_StatementResponse_fieldAccessorTable .ensureFieldAccessorsInitialized( org.polypheny.prism.StatementResponse.class, org.polypheny.prism.StatementResponse.Builder.class); } // Construct using org.polypheny.prism.StatementResponse.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getResultFieldBuilder(); } } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; statementId_ = 0; result_ = null; if (resultBuilder_ != null) { resultBuilder_.dispose(); resultBuilder_ = null; } return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.polypheny.prism.StatementResponses.internal_static_org_polypheny_prism_StatementResponse_descriptor; } @java.lang.Override public org.polypheny.prism.StatementResponse getDefaultInstanceForType() { return org.polypheny.prism.StatementResponse.getDefaultInstance(); } @java.lang.Override public org.polypheny.prism.StatementResponse build() { org.polypheny.prism.StatementResponse result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public org.polypheny.prism.StatementResponse buildPartial() { org.polypheny.prism.StatementResponse result = new org.polypheny.prism.StatementResponse(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(org.polypheny.prism.StatementResponse result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.statementId_ = statementId_; } int to_bitField0_ = 0; if (((from_bitField0_ & 0x00000002) != 0)) { result.result_ = resultBuilder_ == null ? result_ : resultBuilder_.build(); to_bitField0_ |= 0x00000001; } result.bitField0_ |= to_bitField0_; } @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.StatementResponse) { return mergeFrom((org.polypheny.prism.StatementResponse)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.polypheny.prism.StatementResponse other) { if (other == org.polypheny.prism.StatementResponse.getDefaultInstance()) return this; if (other.getStatementId() != 0) { setStatementId(other.getStatementId()); } if (other.hasResult()) { mergeResult(other.getResult()); } 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 8: { statementId_ = input.readInt32(); bitField0_ |= 0x00000001; break; } // case 8 case 18: { input.readMessage( getResultFieldBuilder().getBuilder(), extensionRegistry); bitField0_ |= 0x00000002; break; } // case 18 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 int statementId_ ; /** *
     * The unique identifier of the executed statement.
     * 
* * int32 statement_id = 1; * @return The statementId. */ @java.lang.Override public int getStatementId() { return statementId_; } /** *
     * The unique identifier of the executed statement.
     * 
* * int32 statement_id = 1; * @param value The statementId to set. * @return This builder for chaining. */ public Builder setStatementId(int value) { statementId_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** *
     * The unique identifier of the executed statement.
     * 
* * int32 statement_id = 1; * @return This builder for chaining. */ public Builder clearStatementId() { bitField0_ = (bitField0_ & ~0x00000001); statementId_ = 0; onChanged(); return this; } private org.polypheny.prism.StatementResult result_; private com.google.protobuf.SingleFieldBuilderV3< org.polypheny.prism.StatementResult, org.polypheny.prism.StatementResult.Builder, org.polypheny.prism.StatementResultOrBuilder> resultBuilder_; /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; * @return Whether the result field is set. */ public boolean hasResult() { return ((bitField0_ & 0x00000002) != 0); } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; * @return The result. */ public org.polypheny.prism.StatementResult getResult() { if (resultBuilder_ == null) { return result_ == null ? org.polypheny.prism.StatementResult.getDefaultInstance() : result_; } else { return resultBuilder_.getMessage(); } } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ public Builder setResult(org.polypheny.prism.StatementResult value) { if (resultBuilder_ == null) { if (value == null) { throw new NullPointerException(); } result_ = value; } else { resultBuilder_.setMessage(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ public Builder setResult( org.polypheny.prism.StatementResult.Builder builderForValue) { if (resultBuilder_ == null) { result_ = builderForValue.build(); } else { resultBuilder_.setMessage(builderForValue.build()); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ public Builder mergeResult(org.polypheny.prism.StatementResult value) { if (resultBuilder_ == null) { if (((bitField0_ & 0x00000002) != 0) && result_ != null && result_ != org.polypheny.prism.StatementResult.getDefaultInstance()) { getResultBuilder().mergeFrom(value); } else { result_ = value; } } else { resultBuilder_.mergeFrom(value); } bitField0_ |= 0x00000002; onChanged(); return this; } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ public Builder clearResult() { bitField0_ = (bitField0_ & ~0x00000002); result_ = null; if (resultBuilder_ != null) { resultBuilder_.dispose(); resultBuilder_ = null; } onChanged(); return this; } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ public org.polypheny.prism.StatementResult.Builder getResultBuilder() { bitField0_ |= 0x00000002; onChanged(); return getResultFieldBuilder().getBuilder(); } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ public org.polypheny.prism.StatementResultOrBuilder getResultOrBuilder() { if (resultBuilder_ != null) { return resultBuilder_.getMessageOrBuilder(); } else { return result_ == null ? org.polypheny.prism.StatementResult.getDefaultInstance() : result_; } } /** *
     *
     *(Optional) The result of the executed statement.
     *This could be a scalar value or a data frame, depending on the type of statement executed.
     * 
* * optional .org.polypheny.prism.StatementResult result = 2; */ private com.google.protobuf.SingleFieldBuilderV3< org.polypheny.prism.StatementResult, org.polypheny.prism.StatementResult.Builder, org.polypheny.prism.StatementResultOrBuilder> getResultFieldBuilder() { if (resultBuilder_ == null) { resultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< org.polypheny.prism.StatementResult, org.polypheny.prism.StatementResult.Builder, org.polypheny.prism.StatementResultOrBuilder>( getResult(), getParentForChildren(), isClean()); result_ = null; } return resultBuilder_; } @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.StatementResponse) } // @@protoc_insertion_point(class_scope:org.polypheny.prism.StatementResponse) private static final org.polypheny.prism.StatementResponse DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.polypheny.prism.StatementResponse(); } public static org.polypheny.prism.StatementResponse getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public StatementResponse 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.StatementResponse getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy