cz.proto.WindowCall 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.WindowCall}
*/
public final class WindowCall extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cz.proto.WindowCall)
WindowCallOrBuilder {
private static final long serialVersionUID = 0L;
// Use WindowCall.newBuilder() to construct.
private WindowCall(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private WindowCall() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new WindowCall();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private WindowCall(
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 10: {
cz.proto.Expression.ScalarExpression.Builder subBuilder = null;
if (function_ != null) {
subBuilder = function_.toBuilder();
}
function_ = input.readMessage(cz.proto.Expression.ScalarExpression.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(function_);
function_ = subBuilder.buildPartial();
}
break;
}
case 16: {
distinct_ = input.readBool();
break;
}
case 26: {
cz.proto.DataType.Builder subBuilder = null;
if (partialType_ != null) {
subBuilder = partialType_.toBuilder();
}
partialType_ = input.readMessage(cz.proto.DataType.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom(partialType_);
partialType_ = subBuilder.buildPartial();
}
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_WindowCall_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.OperatorProto.internal_static_cz_proto_WindowCall_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.WindowCall.class, cz.proto.WindowCall.Builder.class);
}
public static final int FUNCTION_FIELD_NUMBER = 1;
private cz.proto.Expression.ScalarExpression function_;
/**
* .cz.proto.ScalarExpression function = 1;
* @return Whether the function field is set.
*/
@java.lang.Override
public boolean hasFunction() {
return function_ != null;
}
/**
* .cz.proto.ScalarExpression function = 1;
* @return The function.
*/
@java.lang.Override
public cz.proto.Expression.ScalarExpression getFunction() {
return function_ == null ? cz.proto.Expression.ScalarExpression.getDefaultInstance() : function_;
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
@java.lang.Override
public cz.proto.Expression.ScalarExpressionOrBuilder getFunctionOrBuilder() {
return getFunction();
}
public static final int DISTINCT_FIELD_NUMBER = 2;
private boolean distinct_;
/**
* bool distinct = 2;
* @return The distinct.
*/
@java.lang.Override
public boolean getDistinct() {
return distinct_;
}
public static final int PARTIAL_TYPE_FIELD_NUMBER = 3;
private cz.proto.DataType partialType_;
/**
* .cz.proto.DataType partial_type = 3;
* @return Whether the partialType field is set.
*/
@java.lang.Override
public boolean hasPartialType() {
return partialType_ != null;
}
/**
* .cz.proto.DataType partial_type = 3;
* @return The partialType.
*/
@java.lang.Override
public cz.proto.DataType getPartialType() {
return partialType_ == null ? cz.proto.DataType.getDefaultInstance() : partialType_;
}
/**
* .cz.proto.DataType partial_type = 3;
*/
@java.lang.Override
public cz.proto.DataTypeOrBuilder getPartialTypeOrBuilder() {
return getPartialType();
}
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 (function_ != null) {
output.writeMessage(1, getFunction());
}
if (distinct_ != false) {
output.writeBool(2, distinct_);
}
if (partialType_ != null) {
output.writeMessage(3, getPartialType());
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (function_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getFunction());
}
if (distinct_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, distinct_);
}
if (partialType_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, getPartialType());
}
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.WindowCall)) {
return super.equals(obj);
}
cz.proto.WindowCall other = (cz.proto.WindowCall) obj;
if (hasFunction() != other.hasFunction()) return false;
if (hasFunction()) {
if (!getFunction()
.equals(other.getFunction())) return false;
}
if (getDistinct()
!= other.getDistinct()) return false;
if (hasPartialType() != other.hasPartialType()) return false;
if (hasPartialType()) {
if (!getPartialType()
.equals(other.getPartialType())) 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();
if (hasFunction()) {
hash = (37 * hash) + FUNCTION_FIELD_NUMBER;
hash = (53 * hash) + getFunction().hashCode();
}
hash = (37 * hash) + DISTINCT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getDistinct());
if (hasPartialType()) {
hash = (37 * hash) + PARTIAL_TYPE_FIELD_NUMBER;
hash = (53 * hash) + getPartialType().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static cz.proto.WindowCall parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.WindowCall parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.WindowCall parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.WindowCall 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.WindowCall parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.WindowCall parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.WindowCall parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.WindowCall 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.WindowCall parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static cz.proto.WindowCall 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.WindowCall parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.WindowCall 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.WindowCall 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.WindowCall}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cz.proto.WindowCall)
cz.proto.WindowCallOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return cz.proto.OperatorProto.internal_static_cz_proto_WindowCall_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.OperatorProto.internal_static_cz_proto_WindowCall_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.WindowCall.class, cz.proto.WindowCall.Builder.class);
}
// Construct using cz.proto.WindowCall.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();
if (functionBuilder_ == null) {
function_ = null;
} else {
function_ = null;
functionBuilder_ = null;
}
distinct_ = false;
if (partialTypeBuilder_ == null) {
partialType_ = null;
} else {
partialType_ = null;
partialTypeBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return cz.proto.OperatorProto.internal_static_cz_proto_WindowCall_descriptor;
}
@java.lang.Override
public cz.proto.WindowCall getDefaultInstanceForType() {
return cz.proto.WindowCall.getDefaultInstance();
}
@java.lang.Override
public cz.proto.WindowCall build() {
cz.proto.WindowCall result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public cz.proto.WindowCall buildPartial() {
cz.proto.WindowCall result = new cz.proto.WindowCall(this);
if (functionBuilder_ == null) {
result.function_ = function_;
} else {
result.function_ = functionBuilder_.build();
}
result.distinct_ = distinct_;
if (partialTypeBuilder_ == null) {
result.partialType_ = partialType_;
} else {
result.partialType_ = partialTypeBuilder_.build();
}
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.WindowCall) {
return mergeFrom((cz.proto.WindowCall)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(cz.proto.WindowCall other) {
if (other == cz.proto.WindowCall.getDefaultInstance()) return this;
if (other.hasFunction()) {
mergeFunction(other.getFunction());
}
if (other.getDistinct() != false) {
setDistinct(other.getDistinct());
}
if (other.hasPartialType()) {
mergePartialType(other.getPartialType());
}
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.WindowCall parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (cz.proto.WindowCall) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private cz.proto.Expression.ScalarExpression function_;
private com.google.protobuf.SingleFieldBuilderV3<
cz.proto.Expression.ScalarExpression, cz.proto.Expression.ScalarExpression.Builder, cz.proto.Expression.ScalarExpressionOrBuilder> functionBuilder_;
/**
* .cz.proto.ScalarExpression function = 1;
* @return Whether the function field is set.
*/
public boolean hasFunction() {
return functionBuilder_ != null || function_ != null;
}
/**
* .cz.proto.ScalarExpression function = 1;
* @return The function.
*/
public cz.proto.Expression.ScalarExpression getFunction() {
if (functionBuilder_ == null) {
return function_ == null ? cz.proto.Expression.ScalarExpression.getDefaultInstance() : function_;
} else {
return functionBuilder_.getMessage();
}
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
public Builder setFunction(cz.proto.Expression.ScalarExpression value) {
if (functionBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
function_ = value;
onChanged();
} else {
functionBuilder_.setMessage(value);
}
return this;
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
public Builder setFunction(
cz.proto.Expression.ScalarExpression.Builder builderForValue) {
if (functionBuilder_ == null) {
function_ = builderForValue.build();
onChanged();
} else {
functionBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
public Builder mergeFunction(cz.proto.Expression.ScalarExpression value) {
if (functionBuilder_ == null) {
if (function_ != null) {
function_ =
cz.proto.Expression.ScalarExpression.newBuilder(function_).mergeFrom(value).buildPartial();
} else {
function_ = value;
}
onChanged();
} else {
functionBuilder_.mergeFrom(value);
}
return this;
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
public Builder clearFunction() {
if (functionBuilder_ == null) {
function_ = null;
onChanged();
} else {
function_ = null;
functionBuilder_ = null;
}
return this;
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
public cz.proto.Expression.ScalarExpression.Builder getFunctionBuilder() {
onChanged();
return getFunctionFieldBuilder().getBuilder();
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
public cz.proto.Expression.ScalarExpressionOrBuilder getFunctionOrBuilder() {
if (functionBuilder_ != null) {
return functionBuilder_.getMessageOrBuilder();
} else {
return function_ == null ?
cz.proto.Expression.ScalarExpression.getDefaultInstance() : function_;
}
}
/**
* .cz.proto.ScalarExpression function = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
cz.proto.Expression.ScalarExpression, cz.proto.Expression.ScalarExpression.Builder, cz.proto.Expression.ScalarExpressionOrBuilder>
getFunctionFieldBuilder() {
if (functionBuilder_ == null) {
functionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
cz.proto.Expression.ScalarExpression, cz.proto.Expression.ScalarExpression.Builder, cz.proto.Expression.ScalarExpressionOrBuilder>(
getFunction(),
getParentForChildren(),
isClean());
function_ = null;
}
return functionBuilder_;
}
private boolean distinct_ ;
/**
* bool distinct = 2;
* @return The distinct.
*/
@java.lang.Override
public boolean getDistinct() {
return distinct_;
}
/**
* bool distinct = 2;
* @param value The distinct to set.
* @return This builder for chaining.
*/
public Builder setDistinct(boolean value) {
distinct_ = value;
onChanged();
return this;
}
/**
* bool distinct = 2;
* @return This builder for chaining.
*/
public Builder clearDistinct() {
distinct_ = false;
onChanged();
return this;
}
private cz.proto.DataType partialType_;
private com.google.protobuf.SingleFieldBuilderV3<
cz.proto.DataType, cz.proto.DataType.Builder, cz.proto.DataTypeOrBuilder> partialTypeBuilder_;
/**
* .cz.proto.DataType partial_type = 3;
* @return Whether the partialType field is set.
*/
public boolean hasPartialType() {
return partialTypeBuilder_ != null || partialType_ != null;
}
/**
* .cz.proto.DataType partial_type = 3;
* @return The partialType.
*/
public cz.proto.DataType getPartialType() {
if (partialTypeBuilder_ == null) {
return partialType_ == null ? cz.proto.DataType.getDefaultInstance() : partialType_;
} else {
return partialTypeBuilder_.getMessage();
}
}
/**
* .cz.proto.DataType partial_type = 3;
*/
public Builder setPartialType(cz.proto.DataType value) {
if (partialTypeBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
partialType_ = value;
onChanged();
} else {
partialTypeBuilder_.setMessage(value);
}
return this;
}
/**
* .cz.proto.DataType partial_type = 3;
*/
public Builder setPartialType(
cz.proto.DataType.Builder builderForValue) {
if (partialTypeBuilder_ == null) {
partialType_ = builderForValue.build();
onChanged();
} else {
partialTypeBuilder_.setMessage(builderForValue.build());
}
return this;
}
/**
* .cz.proto.DataType partial_type = 3;
*/
public Builder mergePartialType(cz.proto.DataType value) {
if (partialTypeBuilder_ == null) {
if (partialType_ != null) {
partialType_ =
cz.proto.DataType.newBuilder(partialType_).mergeFrom(value).buildPartial();
} else {
partialType_ = value;
}
onChanged();
} else {
partialTypeBuilder_.mergeFrom(value);
}
return this;
}
/**
* .cz.proto.DataType partial_type = 3;
*/
public Builder clearPartialType() {
if (partialTypeBuilder_ == null) {
partialType_ = null;
onChanged();
} else {
partialType_ = null;
partialTypeBuilder_ = null;
}
return this;
}
/**
* .cz.proto.DataType partial_type = 3;
*/
public cz.proto.DataType.Builder getPartialTypeBuilder() {
onChanged();
return getPartialTypeFieldBuilder().getBuilder();
}
/**
* .cz.proto.DataType partial_type = 3;
*/
public cz.proto.DataTypeOrBuilder getPartialTypeOrBuilder() {
if (partialTypeBuilder_ != null) {
return partialTypeBuilder_.getMessageOrBuilder();
} else {
return partialType_ == null ?
cz.proto.DataType.getDefaultInstance() : partialType_;
}
}
/**
* .cz.proto.DataType partial_type = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
cz.proto.DataType, cz.proto.DataType.Builder, cz.proto.DataTypeOrBuilder>
getPartialTypeFieldBuilder() {
if (partialTypeBuilder_ == null) {
partialTypeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
cz.proto.DataType, cz.proto.DataType.Builder, cz.proto.DataTypeOrBuilder>(
getPartialType(),
getParentForChildren(),
isClean());
partialType_ = null;
}
return partialTypeBuilder_;
}
@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.WindowCall)
}
// @@protoc_insertion_point(class_scope:cz.proto.WindowCall)
private static final cz.proto.WindowCall DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new cz.proto.WindowCall();
}
public static cz.proto.WindowCall getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public WindowCall parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new WindowCall(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.WindowCall getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy