Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
*
* repeated .google.protobuf.Option options = 6;
*/
public io.prestosql.orc.protobuf.OptionOrBuilder getOptionsOrBuilder(
int index) {
return options_.get(index);
}
public static final int SYNTAX_FIELD_NUMBER = 7;
private int syntax_;
/**
*
* The source syntax of this method.
*
*
* .google.protobuf.Syntax syntax = 7;
*/
public int getSyntaxValue() {
return syntax_;
}
/**
*
* The source syntax of this method.
*
*
* .google.protobuf.Syntax syntax = 7;
*/
public io.prestosql.orc.protobuf.Syntax getSyntax() {
io.prestosql.orc.protobuf.Syntax result = io.prestosql.orc.protobuf.Syntax.valueOf(syntax_);
return result == null ? io.prestosql.orc.protobuf.Syntax.UNRECOGNIZED : result;
}
private byte memoizedIsInitialized = -1;
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
public void writeTo(io.prestosql.orc.protobuf.CodedOutputStream output)
throws java.io.IOException {
if (!getNameBytes().isEmpty()) {
io.prestosql.orc.protobuf.GeneratedMessageV3.writeString(output, 1, name_);
}
if (!getRequestTypeUrlBytes().isEmpty()) {
io.prestosql.orc.protobuf.GeneratedMessageV3.writeString(output, 2, requestTypeUrl_);
}
if (requestStreaming_ != false) {
output.writeBool(3, requestStreaming_);
}
if (!getResponseTypeUrlBytes().isEmpty()) {
io.prestosql.orc.protobuf.GeneratedMessageV3.writeString(output, 4, responseTypeUrl_);
}
if (responseStreaming_ != false) {
output.writeBool(5, responseStreaming_);
}
for (int i = 0; i < options_.size(); i++) {
output.writeMessage(6, options_.get(i));
}
if (syntax_ != io.prestosql.orc.protobuf.Syntax.SYNTAX_PROTO2.getNumber()) {
output.writeEnum(7, syntax_);
}
}
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!getNameBytes().isEmpty()) {
size += io.prestosql.orc.protobuf.GeneratedMessageV3.computeStringSize(1, name_);
}
if (!getRequestTypeUrlBytes().isEmpty()) {
size += io.prestosql.orc.protobuf.GeneratedMessageV3.computeStringSize(2, requestTypeUrl_);
}
if (requestStreaming_ != false) {
size += io.prestosql.orc.protobuf.CodedOutputStream
.computeBoolSize(3, requestStreaming_);
}
if (!getResponseTypeUrlBytes().isEmpty()) {
size += io.prestosql.orc.protobuf.GeneratedMessageV3.computeStringSize(4, responseTypeUrl_);
}
if (responseStreaming_ != false) {
size += io.prestosql.orc.protobuf.CodedOutputStream
.computeBoolSize(5, responseStreaming_);
}
for (int i = 0; i < options_.size(); i++) {
size += io.prestosql.orc.protobuf.CodedOutputStream
.computeMessageSize(6, options_.get(i));
}
if (syntax_ != io.prestosql.orc.protobuf.Syntax.SYNTAX_PROTO2.getNumber()) {
size += io.prestosql.orc.protobuf.CodedOutputStream
.computeEnumSize(7, syntax_);
}
memoizedSize = size;
return size;
}
private static final long serialVersionUID = 0L;
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof io.prestosql.orc.protobuf.Method)) {
return super.equals(obj);
}
io.prestosql.orc.protobuf.Method other = (io.prestosql.orc.protobuf.Method) obj;
boolean result = true;
result = result && getName()
.equals(other.getName());
result = result && getRequestTypeUrl()
.equals(other.getRequestTypeUrl());
result = result && (getRequestStreaming()
== other.getRequestStreaming());
result = result && getResponseTypeUrl()
.equals(other.getResponseTypeUrl());
result = result && (getResponseStreaming()
== other.getResponseStreaming());
result = result && getOptionsList()
.equals(other.getOptionsList());
result = result && syntax_ == other.syntax_;
return result;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + NAME_FIELD_NUMBER;
hash = (53 * hash) + getName().hashCode();
hash = (37 * hash) + REQUEST_TYPE_URL_FIELD_NUMBER;
hash = (53 * hash) + getRequestTypeUrl().hashCode();
hash = (37 * hash) + REQUEST_STREAMING_FIELD_NUMBER;
hash = (53 * hash) + io.prestosql.orc.protobuf.Internal.hashBoolean(
getRequestStreaming());
hash = (37 * hash) + RESPONSE_TYPE_URL_FIELD_NUMBER;
hash = (53 * hash) + getResponseTypeUrl().hashCode();
hash = (37 * hash) + RESPONSE_STREAMING_FIELD_NUMBER;
hash = (53 * hash) + io.prestosql.orc.protobuf.Internal.hashBoolean(
getResponseStreaming());
if (getOptionsCount() > 0) {
hash = (37 * hash) + OPTIONS_FIELD_NUMBER;
hash = (53 * hash) + getOptionsList().hashCode();
}
hash = (37 * hash) + SYNTAX_FIELD_NUMBER;
hash = (53 * hash) + syntax_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.prestosql.orc.protobuf.Method parseFrom(
io.prestosql.orc.protobuf.ByteString data)
throws io.prestosql.orc.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.prestosql.orc.protobuf.Method parseFrom(
io.prestosql.orc.protobuf.ByteString data,
io.prestosql.orc.protobuf.ExtensionRegistryLite extensionRegistry)
throws io.prestosql.orc.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.prestosql.orc.protobuf.Method parseFrom(byte[] data)
throws io.prestosql.orc.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.prestosql.orc.protobuf.Method parseFrom(
byte[] data,
io.prestosql.orc.protobuf.ExtensionRegistryLite extensionRegistry)
throws io.prestosql.orc.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.prestosql.orc.protobuf.Method parseFrom(java.io.InputStream input)
throws java.io.IOException {
return io.prestosql.orc.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.prestosql.orc.protobuf.Method parseFrom(
java.io.InputStream input,
io.prestosql.orc.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return io.prestosql.orc.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static io.prestosql.orc.protobuf.Method parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return io.prestosql.orc.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.prestosql.orc.protobuf.Method parseDelimitedFrom(
java.io.InputStream input,
io.prestosql.orc.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return io.prestosql.orc.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static io.prestosql.orc.protobuf.Method parseFrom(
io.prestosql.orc.protobuf.CodedInputStream input)
throws java.io.IOException {
return io.prestosql.orc.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.prestosql.orc.protobuf.Method parseFrom(
io.prestosql.orc.protobuf.CodedInputStream input,
io.prestosql.orc.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return io.prestosql.orc.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(io.prestosql.orc.protobuf.Method prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
io.prestosql.orc.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
*
* Method represents a method of an api.
*
*
* Protobuf type {@code google.protobuf.Method}
*/
public static final class Builder extends
io.prestosql.orc.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:google.protobuf.Method)
io.prestosql.orc.protobuf.MethodOrBuilder {
public static final io.prestosql.orc.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.prestosql.orc.protobuf.ApiProto.internal_static_google_protobuf_Method_descriptor;
}
protected io.prestosql.orc.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.prestosql.orc.protobuf.ApiProto.internal_static_google_protobuf_Method_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.prestosql.orc.protobuf.Method.class, io.prestosql.orc.protobuf.Method.Builder.class);
}
// Construct using io.prestosql.orc.protobuf.Method.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
io.prestosql.orc.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (io.prestosql.orc.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getOptionsFieldBuilder();
}
}
public Builder clear() {
super.clear();
name_ = "";
requestTypeUrl_ = "";
requestStreaming_ = false;
responseTypeUrl_ = "";
responseStreaming_ = false;
if (optionsBuilder_ == null) {
options_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000020);
} else {
optionsBuilder_.clear();
}
syntax_ = 0;
return this;
}
public io.prestosql.orc.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.prestosql.orc.protobuf.ApiProto.internal_static_google_protobuf_Method_descriptor;
}
public io.prestosql.orc.protobuf.Method getDefaultInstanceForType() {
return io.prestosql.orc.protobuf.Method.getDefaultInstance();
}
public io.prestosql.orc.protobuf.Method build() {
io.prestosql.orc.protobuf.Method result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
public io.prestosql.orc.protobuf.Method buildPartial() {
io.prestosql.orc.protobuf.Method result = new io.prestosql.orc.protobuf.Method(this);
int from_bitField0_ = bitField0_;
int to_bitField0_ = 0;
result.name_ = name_;
result.requestTypeUrl_ = requestTypeUrl_;
result.requestStreaming_ = requestStreaming_;
result.responseTypeUrl_ = responseTypeUrl_;
result.responseStreaming_ = responseStreaming_;
if (optionsBuilder_ == null) {
if (((bitField0_ & 0x00000020) == 0x00000020)) {
options_ = java.util.Collections.unmodifiableList(options_);
bitField0_ = (bitField0_ & ~0x00000020);
}
result.options_ = options_;
} else {
result.options_ = optionsBuilder_.build();
}
result.syntax_ = syntax_;
result.bitField0_ = to_bitField0_;
onBuilt();
return result;
}
public Builder clone() {
return (Builder) super.clone();
}
public Builder setField(
io.prestosql.orc.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.setField(field, value);
}
public Builder clearField(
io.prestosql.orc.protobuf.Descriptors.FieldDescriptor field) {
return (Builder) super.clearField(field);
}
public Builder clearOneof(
io.prestosql.orc.protobuf.Descriptors.OneofDescriptor oneof) {
return (Builder) super.clearOneof(oneof);
}
public Builder setRepeatedField(
io.prestosql.orc.protobuf.Descriptors.FieldDescriptor field,
int index, Object value) {
return (Builder) super.setRepeatedField(field, index, value);
}
public Builder addRepeatedField(
io.prestosql.orc.protobuf.Descriptors.FieldDescriptor field,
Object value) {
return (Builder) super.addRepeatedField(field, value);
}
public Builder mergeFrom(io.prestosql.orc.protobuf.Message other) {
if (other instanceof io.prestosql.orc.protobuf.Method) {
return mergeFrom((io.prestosql.orc.protobuf.Method)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.prestosql.orc.protobuf.Method other) {
if (other == io.prestosql.orc.protobuf.Method.getDefaultInstance()) return this;
if (!other.getName().isEmpty()) {
name_ = other.name_;
onChanged();
}
if (!other.getRequestTypeUrl().isEmpty()) {
requestTypeUrl_ = other.requestTypeUrl_;
onChanged();
}
if (other.getRequestStreaming() != false) {
setRequestStreaming(other.getRequestStreaming());
}
if (!other.getResponseTypeUrl().isEmpty()) {
responseTypeUrl_ = other.responseTypeUrl_;
onChanged();
}
if (other.getResponseStreaming() != false) {
setResponseStreaming(other.getResponseStreaming());
}
if (optionsBuilder_ == null) {
if (!other.options_.isEmpty()) {
if (options_.isEmpty()) {
options_ = other.options_;
bitField0_ = (bitField0_ & ~0x00000020);
} else {
ensureOptionsIsMutable();
options_.addAll(other.options_);
}
onChanged();
}
} else {
if (!other.options_.isEmpty()) {
if (optionsBuilder_.isEmpty()) {
optionsBuilder_.dispose();
optionsBuilder_ = null;
options_ = other.options_;
bitField0_ = (bitField0_ & ~0x00000020);
optionsBuilder_ =
io.prestosql.orc.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getOptionsFieldBuilder() : null;
} else {
optionsBuilder_.addAllMessages(other.options_);
}
}
}
if (other.syntax_ != 0) {
setSyntaxValue(other.getSyntaxValue());
}
onChanged();
return this;
}
public final boolean isInitialized() {
return true;
}
public Builder mergeFrom(
io.prestosql.orc.protobuf.CodedInputStream input,
io.prestosql.orc.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
io.prestosql.orc.protobuf.Method parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (io.prestosql.orc.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.prestosql.orc.protobuf.Method) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object name_ = "";
/**
*