cz.proto.MultipleFileOutputStats 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.MultipleFileOutputStats}
*/
public final class MultipleFileOutputStats extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:cz.proto.MultipleFileOutputStats)
MultipleFileOutputStatsOrBuilder {
private static final long serialVersionUID = 0L;
// Use MultipleFileOutputStats.newBuilder() to construct.
private MultipleFileOutputStats(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MultipleFileOutputStats() {
fileOutputStats_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new MultipleFileOutputStats();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private MultipleFileOutputStats(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
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: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
fileOutputStats_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
fileOutputStats_.add(
input.readMessage(cz.proto.DataOutputStats.parser(), extensionRegistry));
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 {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
fileOutputStats_ = java.util.Collections.unmodifiableList(fileOutputStats_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return cz.proto.OperatorProto.internal_static_cz_proto_MultipleFileOutputStats_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.OperatorProto.internal_static_cz_proto_MultipleFileOutputStats_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.MultipleFileOutputStats.class, cz.proto.MultipleFileOutputStats.Builder.class);
}
public static final int FILE_OUTPUT_STATS_FIELD_NUMBER = 1;
private java.util.List fileOutputStats_;
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
@java.lang.Override
public java.util.List getFileOutputStatsList() {
return fileOutputStats_;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
@java.lang.Override
public java.util.List extends cz.proto.DataOutputStatsOrBuilder>
getFileOutputStatsOrBuilderList() {
return fileOutputStats_;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
@java.lang.Override
public int getFileOutputStatsCount() {
return fileOutputStats_.size();
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
@java.lang.Override
public cz.proto.DataOutputStats getFileOutputStats(int index) {
return fileOutputStats_.get(index);
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
@java.lang.Override
public cz.proto.DataOutputStatsOrBuilder getFileOutputStatsOrBuilder(
int index) {
return fileOutputStats_.get(index);
}
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 {
for (int i = 0; i < fileOutputStats_.size(); i++) {
output.writeMessage(1, fileOutputStats_.get(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
for (int i = 0; i < fileOutputStats_.size(); i++) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, fileOutputStats_.get(i));
}
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.MultipleFileOutputStats)) {
return super.equals(obj);
}
cz.proto.MultipleFileOutputStats other = (cz.proto.MultipleFileOutputStats) obj;
if (!getFileOutputStatsList()
.equals(other.getFileOutputStatsList())) 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 (getFileOutputStatsCount() > 0) {
hash = (37 * hash) + FILE_OUTPUT_STATS_FIELD_NUMBER;
hash = (53 * hash) + getFileOutputStatsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static cz.proto.MultipleFileOutputStats parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.MultipleFileOutputStats parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.MultipleFileOutputStats parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.MultipleFileOutputStats 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.MultipleFileOutputStats parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static cz.proto.MultipleFileOutputStats parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static cz.proto.MultipleFileOutputStats parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.MultipleFileOutputStats 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.MultipleFileOutputStats parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static cz.proto.MultipleFileOutputStats 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.MultipleFileOutputStats parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static cz.proto.MultipleFileOutputStats 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.MultipleFileOutputStats 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.MultipleFileOutputStats}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:cz.proto.MultipleFileOutputStats)
cz.proto.MultipleFileOutputStatsOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return cz.proto.OperatorProto.internal_static_cz_proto_MultipleFileOutputStats_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return cz.proto.OperatorProto.internal_static_cz_proto_MultipleFileOutputStats_fieldAccessorTable
.ensureFieldAccessorsInitialized(
cz.proto.MultipleFileOutputStats.class, cz.proto.MultipleFileOutputStats.Builder.class);
}
// Construct using cz.proto.MultipleFileOutputStats.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
getFileOutputStatsFieldBuilder();
}
}
@java.lang.Override
public Builder clear() {
super.clear();
if (fileOutputStatsBuilder_ == null) {
fileOutputStats_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
} else {
fileOutputStatsBuilder_.clear();
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return cz.proto.OperatorProto.internal_static_cz_proto_MultipleFileOutputStats_descriptor;
}
@java.lang.Override
public cz.proto.MultipleFileOutputStats getDefaultInstanceForType() {
return cz.proto.MultipleFileOutputStats.getDefaultInstance();
}
@java.lang.Override
public cz.proto.MultipleFileOutputStats build() {
cz.proto.MultipleFileOutputStats result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public cz.proto.MultipleFileOutputStats buildPartial() {
cz.proto.MultipleFileOutputStats result = new cz.proto.MultipleFileOutputStats(this);
int from_bitField0_ = bitField0_;
if (fileOutputStatsBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0)) {
fileOutputStats_ = java.util.Collections.unmodifiableList(fileOutputStats_);
bitField0_ = (bitField0_ & ~0x00000001);
}
result.fileOutputStats_ = fileOutputStats_;
} else {
result.fileOutputStats_ = fileOutputStatsBuilder_.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.MultipleFileOutputStats) {
return mergeFrom((cz.proto.MultipleFileOutputStats)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(cz.proto.MultipleFileOutputStats other) {
if (other == cz.proto.MultipleFileOutputStats.getDefaultInstance()) return this;
if (fileOutputStatsBuilder_ == null) {
if (!other.fileOutputStats_.isEmpty()) {
if (fileOutputStats_.isEmpty()) {
fileOutputStats_ = other.fileOutputStats_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureFileOutputStatsIsMutable();
fileOutputStats_.addAll(other.fileOutputStats_);
}
onChanged();
}
} else {
if (!other.fileOutputStats_.isEmpty()) {
if (fileOutputStatsBuilder_.isEmpty()) {
fileOutputStatsBuilder_.dispose();
fileOutputStatsBuilder_ = null;
fileOutputStats_ = other.fileOutputStats_;
bitField0_ = (bitField0_ & ~0x00000001);
fileOutputStatsBuilder_ =
com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ?
getFileOutputStatsFieldBuilder() : null;
} else {
fileOutputStatsBuilder_.addAllMessages(other.fileOutputStats_);
}
}
}
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.MultipleFileOutputStats parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (cz.proto.MultipleFileOutputStats) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.util.List fileOutputStats_ =
java.util.Collections.emptyList();
private void ensureFileOutputStatsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
fileOutputStats_ = new java.util.ArrayList(fileOutputStats_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
cz.proto.DataOutputStats, cz.proto.DataOutputStats.Builder, cz.proto.DataOutputStatsOrBuilder> fileOutputStatsBuilder_;
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public java.util.List getFileOutputStatsList() {
if (fileOutputStatsBuilder_ == null) {
return java.util.Collections.unmodifiableList(fileOutputStats_);
} else {
return fileOutputStatsBuilder_.getMessageList();
}
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public int getFileOutputStatsCount() {
if (fileOutputStatsBuilder_ == null) {
return fileOutputStats_.size();
} else {
return fileOutputStatsBuilder_.getCount();
}
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public cz.proto.DataOutputStats getFileOutputStats(int index) {
if (fileOutputStatsBuilder_ == null) {
return fileOutputStats_.get(index);
} else {
return fileOutputStatsBuilder_.getMessage(index);
}
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder setFileOutputStats(
int index, cz.proto.DataOutputStats value) {
if (fileOutputStatsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFileOutputStatsIsMutable();
fileOutputStats_.set(index, value);
onChanged();
} else {
fileOutputStatsBuilder_.setMessage(index, value);
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder setFileOutputStats(
int index, cz.proto.DataOutputStats.Builder builderForValue) {
if (fileOutputStatsBuilder_ == null) {
ensureFileOutputStatsIsMutable();
fileOutputStats_.set(index, builderForValue.build());
onChanged();
} else {
fileOutputStatsBuilder_.setMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder addFileOutputStats(cz.proto.DataOutputStats value) {
if (fileOutputStatsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFileOutputStatsIsMutable();
fileOutputStats_.add(value);
onChanged();
} else {
fileOutputStatsBuilder_.addMessage(value);
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder addFileOutputStats(
int index, cz.proto.DataOutputStats value) {
if (fileOutputStatsBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
ensureFileOutputStatsIsMutable();
fileOutputStats_.add(index, value);
onChanged();
} else {
fileOutputStatsBuilder_.addMessage(index, value);
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder addFileOutputStats(
cz.proto.DataOutputStats.Builder builderForValue) {
if (fileOutputStatsBuilder_ == null) {
ensureFileOutputStatsIsMutable();
fileOutputStats_.add(builderForValue.build());
onChanged();
} else {
fileOutputStatsBuilder_.addMessage(builderForValue.build());
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder addFileOutputStats(
int index, cz.proto.DataOutputStats.Builder builderForValue) {
if (fileOutputStatsBuilder_ == null) {
ensureFileOutputStatsIsMutable();
fileOutputStats_.add(index, builderForValue.build());
onChanged();
} else {
fileOutputStatsBuilder_.addMessage(index, builderForValue.build());
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder addAllFileOutputStats(
java.lang.Iterable extends cz.proto.DataOutputStats> values) {
if (fileOutputStatsBuilder_ == null) {
ensureFileOutputStatsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, fileOutputStats_);
onChanged();
} else {
fileOutputStatsBuilder_.addAllMessages(values);
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder clearFileOutputStats() {
if (fileOutputStatsBuilder_ == null) {
fileOutputStats_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
} else {
fileOutputStatsBuilder_.clear();
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public Builder removeFileOutputStats(int index) {
if (fileOutputStatsBuilder_ == null) {
ensureFileOutputStatsIsMutable();
fileOutputStats_.remove(index);
onChanged();
} else {
fileOutputStatsBuilder_.remove(index);
}
return this;
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public cz.proto.DataOutputStats.Builder getFileOutputStatsBuilder(
int index) {
return getFileOutputStatsFieldBuilder().getBuilder(index);
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public cz.proto.DataOutputStatsOrBuilder getFileOutputStatsOrBuilder(
int index) {
if (fileOutputStatsBuilder_ == null) {
return fileOutputStats_.get(index); } else {
return fileOutputStatsBuilder_.getMessageOrBuilder(index);
}
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public java.util.List extends cz.proto.DataOutputStatsOrBuilder>
getFileOutputStatsOrBuilderList() {
if (fileOutputStatsBuilder_ != null) {
return fileOutputStatsBuilder_.getMessageOrBuilderList();
} else {
return java.util.Collections.unmodifiableList(fileOutputStats_);
}
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public cz.proto.DataOutputStats.Builder addFileOutputStatsBuilder() {
return getFileOutputStatsFieldBuilder().addBuilder(
cz.proto.DataOutputStats.getDefaultInstance());
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public cz.proto.DataOutputStats.Builder addFileOutputStatsBuilder(
int index) {
return getFileOutputStatsFieldBuilder().addBuilder(
index, cz.proto.DataOutputStats.getDefaultInstance());
}
/**
* repeated .cz.proto.DataOutputStats file_output_stats = 1;
*/
public java.util.List
getFileOutputStatsBuilderList() {
return getFileOutputStatsFieldBuilder().getBuilderList();
}
private com.google.protobuf.RepeatedFieldBuilderV3<
cz.proto.DataOutputStats, cz.proto.DataOutputStats.Builder, cz.proto.DataOutputStatsOrBuilder>
getFileOutputStatsFieldBuilder() {
if (fileOutputStatsBuilder_ == null) {
fileOutputStatsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3<
cz.proto.DataOutputStats, cz.proto.DataOutputStats.Builder, cz.proto.DataOutputStatsOrBuilder>(
fileOutputStats_,
((bitField0_ & 0x00000001) != 0),
getParentForChildren(),
isClean());
fileOutputStats_ = null;
}
return fileOutputStatsBuilder_;
}
@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.MultipleFileOutputStats)
}
// @@protoc_insertion_point(class_scope:cz.proto.MultipleFileOutputStats)
private static final cz.proto.MultipleFileOutputStats DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new cz.proto.MultipleFileOutputStats();
}
public static cz.proto.MultipleFileOutputStats getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public MultipleFileOutputStats parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new MultipleFileOutputStats(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.MultipleFileOutputStats getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy