cz.proto.SortKeyDesc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: operator.proto
package cz.proto;
/**
* Protobuf type {@code cz.proto.SortKeyDesc}
*/
public final class SortKeyDesc extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cz.proto.SortKeyDesc)
SortKeyDescOrBuilder {
private static final long serialVersionUID = 0L;
// Use SortKeyDesc.newBuilder() to construct.
private SortKeyDesc(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SortKeyDesc() {
order_ = 0;
nullOrder_ = 0;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new SortKeyDesc();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SortKeyDesc(
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: {
id_ = input.readUInt32();
break;
}
case 16: {
int rawValue = input.readEnum();
order_ = rawValue;
break;
}
case 24: {
int rawValue = input.readEnum();
nullOrder_ = 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 cz.proto.OperatorProto.internal_static_cz_proto_SortKeyDesc_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.OperatorProto.internal_static_cz_proto_SortKeyDesc_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.SortKeyDesc.class, cz.proto.SortKeyDesc.Builder.class);
}
public static final int ID_FIELD_NUMBER = 1;
private int id_;
/**
* uint32 id = 1;
* @return The id.
*/
@java.lang.Override
public int getId() {
return id_;
}
public static final int ORDER_FIELD_NUMBER = 2;
private int order_;
/**
* .cz.proto.Order order = 2;
* @return The enum numeric value on the wire for order.
*/
@java.lang.Override public int getOrderValue() {
return order_;
}
/**
* .cz.proto.Order order = 2;
* @return The order.
*/
@java.lang.Override public cz.proto.Order getOrder() {
@SuppressWarnings("deprecation")
cz.proto.Order result = cz.proto.Order.valueOf(order_);
return result == null ? cz.proto.Order.UNRECOGNIZED : result;
}
public static final int NULL_ORDER_FIELD_NUMBER = 3;
private int nullOrder_;
/**
* .cz.proto.NullOrder null_order = 3;
* @return The enum numeric value on the wire for nullOrder.
*/
@java.lang.Override public int getNullOrderValue() {
return nullOrder_;
}
/**
* .cz.proto.NullOrder null_order = 3;
* @return The nullOrder.
*/
@java.lang.Override public cz.proto.NullOrder getNullOrder() {
@SuppressWarnings("deprecation")
cz.proto.NullOrder result = cz.proto.NullOrder.valueOf(nullOrder_);
return result == null ? cz.proto.NullOrder.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 (id_ != 0) {
output.writeUInt32(1, id_);
}
if (order_ != cz.proto.Order.ASC.getNumber()) {
output.writeEnum(2, order_);
}
if (nullOrder_ != cz.proto.NullOrder.LOW.getNumber()) {
output.writeEnum(3, nullOrder_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (id_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(1, id_);
}
if (order_ != cz.proto.Order.ASC.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(2, order_);
}
if (nullOrder_ != cz.proto.NullOrder.LOW.getNumber()) {
size += com.google.protobuf.CodedOutputStream
.computeEnumSize(3, nullOrder_);
}
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 cz.proto.SortKeyDesc)) {
return super.equals(obj);
}
cz.proto.SortKeyDesc other = (cz.proto.SortKeyDesc) obj;
if (getId()
!= other.getId()) return false;
if (order_ != other.order_) return false;
if (nullOrder_ != other.nullOrder_) 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) + ID_FIELD_NUMBER;
hash = (53 * hash) + getId();
hash = (37 * hash) + ORDER_FIELD_NUMBER;
hash = (53 * hash) + order_;
hash = (37 * hash) + NULL_ORDER_FIELD_NUMBER;
hash = (53 * hash) + nullOrder_;
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static cz.proto.SortKeyDesc parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.SortKeyDesc parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.SortKeyDesc parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.SortKeyDesc parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.SortKeyDesc parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.SortKeyDesc parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.SortKeyDesc parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.SortKeyDesc 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 cz.proto.SortKeyDesc parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static cz.proto.SortKeyDesc 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 cz.proto.SortKeyDesc parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.SortKeyDesc 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(cz.proto.SortKeyDesc 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 cz.proto.SortKeyDesc}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cz.proto.SortKeyDesc)
cz.proto.SortKeyDescOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return cz.proto.OperatorProto.internal_static_cz_proto_SortKeyDesc_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.OperatorProto.internal_static_cz_proto_SortKeyDesc_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.SortKeyDesc.class, cz.proto.SortKeyDesc.Builder.class);
}
// Construct using cz.proto.SortKeyDesc.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();
id_ = 0;
order_ = 0;
nullOrder_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return cz.proto.OperatorProto.internal_static_cz_proto_SortKeyDesc_descriptor;
}
@java.lang.Override
public cz.proto.SortKeyDesc getDefaultInstanceForType() {
return cz.proto.SortKeyDesc.getDefaultInstance();
}
@java.lang.Override
public cz.proto.SortKeyDesc build() {
cz.proto.SortKeyDesc result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public cz.proto.SortKeyDesc buildPartial() {
cz.proto.SortKeyDesc result = new cz.proto.SortKeyDesc(this);
result.id_ = id_;
result.order_ = order_;
result.nullOrder_ = nullOrder_;
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 cz.proto.SortKeyDesc) {
return mergeFrom((cz.proto.SortKeyDesc)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(cz.proto.SortKeyDesc other) {
if (other == cz.proto.SortKeyDesc.getDefaultInstance()) return this;
if (other.getId() != 0) {
setId(other.getId());
}
if (other.order_ != 0) {
setOrderValue(other.getOrderValue());
}
if (other.nullOrder_ != 0) {
setNullOrderValue(other.getNullOrderValue());
}
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 {
cz.proto.SortKeyDesc parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (cz.proto.SortKeyDesc) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int id_ ;
/**
* uint32 id = 1;
* @return The id.
*/
@java.lang.Override
public int getId() {
return id_;
}
/**
* uint32 id = 1;
* @param value The id to set.
* @return This builder for chaining.
*/
public Builder setId(int value) {
id_ = value;
onChanged();
return this;
}
/**
* uint32 id = 1;
* @return This builder for chaining.
*/
public Builder clearId() {
id_ = 0;
onChanged();
return this;
}
private int order_ = 0;
/**
* .cz.proto.Order order = 2;
* @return The enum numeric value on the wire for order.
*/
@java.lang.Override public int getOrderValue() {
return order_;
}
/**
* .cz.proto.Order order = 2;
* @param value The enum numeric value on the wire for order to set.
* @return This builder for chaining.
*/
public Builder setOrderValue(int value) {
order_ = value;
onChanged();
return this;
}
/**
* .cz.proto.Order order = 2;
* @return The order.
*/
@java.lang.Override
public cz.proto.Order getOrder() {
@SuppressWarnings("deprecation")
cz.proto.Order result = cz.proto.Order.valueOf(order_);
return result == null ? cz.proto.Order.UNRECOGNIZED : result;
}
/**
* .cz.proto.Order order = 2;
* @param value The order to set.
* @return This builder for chaining.
*/
public Builder setOrder(cz.proto.Order value) {
if (value == null) {
throw new NullPointerException();
}
order_ = value.getNumber();
onChanged();
return this;
}
/**
* .cz.proto.Order order = 2;
* @return This builder for chaining.
*/
public Builder clearOrder() {
order_ = 0;
onChanged();
return this;
}
private int nullOrder_ = 0;
/**
* .cz.proto.NullOrder null_order = 3;
* @return The enum numeric value on the wire for nullOrder.
*/
@java.lang.Override public int getNullOrderValue() {
return nullOrder_;
}
/**
* .cz.proto.NullOrder null_order = 3;
* @param value The enum numeric value on the wire for nullOrder to set.
* @return This builder for chaining.
*/
public Builder setNullOrderValue(int value) {
nullOrder_ = value;
onChanged();
return this;
}
/**
* .cz.proto.NullOrder null_order = 3;
* @return The nullOrder.
*/
@java.lang.Override
public cz.proto.NullOrder getNullOrder() {
@SuppressWarnings("deprecation")
cz.proto.NullOrder result = cz.proto.NullOrder.valueOf(nullOrder_);
return result == null ? cz.proto.NullOrder.UNRECOGNIZED : result;
}
/**
* .cz.proto.NullOrder null_order = 3;
* @param value The nullOrder to set.
* @return This builder for chaining.
*/
public Builder setNullOrder(cz.proto.NullOrder value) {
if (value == null) {
throw new NullPointerException();
}
nullOrder_ = value.getNumber();
onChanged();
return this;
}
/**
* .cz.proto.NullOrder null_order = 3;
* @return This builder for chaining.
*/
public Builder clearNullOrder() {
nullOrder_ = 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:cz.proto.SortKeyDesc)
}
// @@protoc_insertion_point(class_scope:cz.proto.SortKeyDesc)
private static final cz.proto.SortKeyDesc DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new cz.proto.SortKeyDesc();
}
public static cz.proto.SortKeyDesc getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SortKeyDesc parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SortKeyDesc(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 cz.proto.SortKeyDesc getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy