All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
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.
com.clickhouse.client.grpc.impl.Compression Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: clickhouse_grpc.proto
package com.clickhouse.client.grpc.impl;
/**
* Protobuf type {@code clickhouse.grpc.Compression}
*/
public final class Compression extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:clickhouse.grpc.Compression)
CompressionOrBuilder {
private static final long serialVersionUID = 0L;
// Use Compression.newBuilder() to construct.
private Compression(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private Compression() {
algorithm_ = 0;
level_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new Compression();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private Compression(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 8: {
int rawValue = input.readEnum();
algorithm_ = rawValue;
break;
}
case 16: {
int rawValue = input.readEnum();
level_ = rawValue;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clickhouse.client.grpc.impl.ClickHouseGrpcImpl.internal_static_clickhouse_grpc_Compression_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clickhouse.client.grpc.impl.ClickHouseGrpcImpl.internal_static_clickhouse_grpc_Compression_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clickhouse.client.grpc.impl.Compression.class, com.clickhouse.client.grpc.impl.Compression.Builder.class);
}
public static final int ALGORITHM_FIELD_NUMBER = 1;
private int algorithm_;
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @return The enum numeric value on the wire for algorithm.
*/
@java.lang.Override public int getAlgorithmValue() {
return algorithm_;
}
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @return The algorithm.
*/
@java.lang.Override public com.clickhouse.client.grpc.impl.CompressionAlgorithm getAlgorithm() {
@SuppressWarnings("deprecation")
com.clickhouse.client.grpc.impl.CompressionAlgorithm result = com.clickhouse.client.grpc.impl.CompressionAlgorithm.valueOf(algorithm_);
return result == null ? com.clickhouse.client.grpc.impl.CompressionAlgorithm.UNRECOGNIZED : result;
}
public static final int LEVEL_FIELD_NUMBER = 2;
private int level_;
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @return The enum numeric value on the wire for level.
*/
@java.lang.Override public int getLevelValue() {
return level_;
}
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @return The level.
*/
@java.lang.Override public com.clickhouse.client.grpc.impl.CompressionLevel getLevel() {
@SuppressWarnings("deprecation")
com.clickhouse.client.grpc.impl.CompressionLevel result = com.clickhouse.client.grpc.impl.CompressionLevel.valueOf(level_);
return result == null ? com.clickhouse.client.grpc.impl.CompressionLevel.UNRECOGNIZED : 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 (algorithm_ != com.clickhouse.client.grpc.impl.CompressionAlgorithm.NO_COMPRESSION.getNumber()) {
output.writeEnum(1, algorithm_);
}
if (level_ != com.clickhouse.client.grpc.impl.CompressionLevel.COMPRESSION_NONE.getNumber()) {
output.writeEnum(2, level_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (algorithm_ != com.clickhouse.client.grpc.impl.CompressionAlgorithm.NO_COMPRESSION.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(1, algorithm_);
}
if (level_ != com.clickhouse.client.grpc.impl.CompressionLevel.COMPRESSION_NONE.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, level_);
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.clickhouse.client.grpc.impl.Compression)) {
return super.equals(obj);
}
com.clickhouse.client.grpc.impl.Compression other = (com.clickhouse.client.grpc.impl.Compression) obj;
if (algorithm_ != other.algorithm_) return false;
if (level_ != other.level_) return false;
if (!unknownFields.equals(other.unknownFields)) 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) + ALGORITHM_FIELD_NUMBER;
hash = (53 * hash) + algorithm_;
hash = (37 * hash) + LEVEL_FIELD_NUMBER;
hash = (53 * hash) + level_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.clickhouse.client.grpc.impl.Compression parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clickhouse.client.grpc.impl.Compression 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 com.clickhouse.client.grpc.impl.Compression parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.clickhouse.client.grpc.impl.Compression 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 com.clickhouse.client.grpc.impl.Compression parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.clickhouse.client.grpc.impl.Compression 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(com.clickhouse.client.grpc.impl.Compression 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;
}
/**
* Protobuf type {@code clickhouse.grpc.Compression}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:clickhouse.grpc.Compression)
com.clickhouse.client.grpc.impl.CompressionOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.clickhouse.client.grpc.impl.ClickHouseGrpcImpl.internal_static_clickhouse_grpc_Compression_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.clickhouse.client.grpc.impl.ClickHouseGrpcImpl.internal_static_clickhouse_grpc_Compression_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.clickhouse.client.grpc.impl.Compression.class, com.clickhouse.client.grpc.impl.Compression.Builder.class);
}
// Construct using com.clickhouse.client.grpc.impl.Compression.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
algorithm_ = 0;
level_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.clickhouse.client.grpc.impl.ClickHouseGrpcImpl.internal_static_clickhouse_grpc_Compression_descriptor;
}
@java.lang.Override
public com.clickhouse.client.grpc.impl.Compression getDefaultInstanceForType() {
return com.clickhouse.client.grpc.impl.Compression.getDefaultInstance();
}
@java.lang.Override
public com.clickhouse.client.grpc.impl.Compression build() {
com.clickhouse.client.grpc.impl.Compression result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.clickhouse.client.grpc.impl.Compression buildPartial() {
com.clickhouse.client.grpc.impl.Compression result = new com.clickhouse.client.grpc.impl.Compression(this);
result.algorithm_ = algorithm_;
result.level_ = level_;
onBuilt();
return result;
}
@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 com.clickhouse.client.grpc.impl.Compression) {
return mergeFrom((com.clickhouse.client.grpc.impl.Compression)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.clickhouse.client.grpc.impl.Compression other) {
if (other == com.clickhouse.client.grpc.impl.Compression.getDefaultInstance()) return this;
if (other.algorithm_ != 0) {
setAlgorithmValue(other.getAlgorithmValue());
}
if (other.level_ != 0) {
setLevelValue(other.getLevelValue());
}
this.mergeUnknownFields(other.unknownFields);
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 {
com.clickhouse.client.grpc.impl.Compression parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.clickhouse.client.grpc.impl.Compression) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int algorithm_ = 0;
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @return The enum numeric value on the wire for algorithm.
*/
@java.lang.Override public int getAlgorithmValue() {
return algorithm_;
}
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @param value The enum numeric value on the wire for algorithm to set.
* @return This builder for chaining.
*/
public Builder setAlgorithmValue(int value) {
algorithm_ = value;
onChanged();
return this;
}
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @return The algorithm.
*/
@java.lang.Override
public com.clickhouse.client.grpc.impl.CompressionAlgorithm getAlgorithm() {
@SuppressWarnings("deprecation")
com.clickhouse.client.grpc.impl.CompressionAlgorithm result = com.clickhouse.client.grpc.impl.CompressionAlgorithm.valueOf(algorithm_);
return result == null ? com.clickhouse.client.grpc.impl.CompressionAlgorithm.UNRECOGNIZED : result;
}
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @param value The algorithm to set.
* @return This builder for chaining.
*/
public Builder setAlgorithm(com.clickhouse.client.grpc.impl.CompressionAlgorithm value) {
if (value == null) {
throw new NullPointerException();
}
algorithm_ = value.getNumber();
onChanged();
return this;
}
/**
* .clickhouse.grpc.CompressionAlgorithm algorithm = 1;
* @return This builder for chaining.
*/
public Builder clearAlgorithm() {
algorithm_ = 0;
onChanged();
return this;
}
private int level_ = 0;
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @return The enum numeric value on the wire for level.
*/
@java.lang.Override public int getLevelValue() {
return level_;
}
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @param value The enum numeric value on the wire for level to set.
* @return This builder for chaining.
*/
public Builder setLevelValue(int value) {
level_ = value;
onChanged();
return this;
}
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @return The level.
*/
@java.lang.Override
public com.clickhouse.client.grpc.impl.CompressionLevel getLevel() {
@SuppressWarnings("deprecation")
com.clickhouse.client.grpc.impl.CompressionLevel result = com.clickhouse.client.grpc.impl.CompressionLevel.valueOf(level_);
return result == null ? com.clickhouse.client.grpc.impl.CompressionLevel.UNRECOGNIZED : result;
}
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @param value The level to set.
* @return This builder for chaining.
*/
public Builder setLevel(com.clickhouse.client.grpc.impl.CompressionLevel value) {
if (value == null) {
throw new NullPointerException();
}
level_ = value.getNumber();
onChanged();
return this;
}
/**
* .clickhouse.grpc.CompressionLevel level = 2;
* @return This builder for chaining.
*/
public Builder clearLevel() {
level_ = 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:clickhouse.grpc.Compression)
}
// @@protoc_insertion_point(class_scope:clickhouse.grpc.Compression)
private static final com.clickhouse.client.grpc.impl.Compression DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.clickhouse.client.grpc.impl.Compression();
}
public static com.clickhouse.client.grpc.impl.Compression getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public Compression parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new Compression(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.clickhouse.client.grpc.impl.Compression getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}