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.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/metrics/v2/stats.proto
package io.envoyproxy.envoy.config.metrics.v2;
/**
*
* Configuration for disabling stat instantiation.
*
*
* Protobuf type {@code envoy.config.metrics.v2.StatsMatcher}
*/
public final class StatsMatcher extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:envoy.config.metrics.v2.StatsMatcher)
StatsMatcherOrBuilder {
private static final long serialVersionUID = 0L;
// Use StatsMatcher.newBuilder() to construct.
private StatsMatcher(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private StatsMatcher() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new StatsMatcher();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private StatsMatcher(
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: {
statsMatcher_ = input.readBool();
statsMatcherCase_ = 1;
break;
}
case 18: {
io.envoyproxy.envoy.type.matcher.ListStringMatcher.Builder subBuilder = null;
if (statsMatcherCase_ == 2) {
subBuilder = ((io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_).toBuilder();
}
statsMatcher_ =
input.readMessage(io.envoyproxy.envoy.type.matcher.ListStringMatcher.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom((io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_);
statsMatcher_ = subBuilder.buildPartial();
}
statsMatcherCase_ = 2;
break;
}
case 26: {
io.envoyproxy.envoy.type.matcher.ListStringMatcher.Builder subBuilder = null;
if (statsMatcherCase_ == 3) {
subBuilder = ((io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_).toBuilder();
}
statsMatcher_ =
input.readMessage(io.envoyproxy.envoy.type.matcher.ListStringMatcher.parser(), extensionRegistry);
if (subBuilder != null) {
subBuilder.mergeFrom((io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_);
statsMatcher_ = subBuilder.buildPartial();
}
statsMatcherCase_ = 3;
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().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 io.envoyproxy.envoy.config.metrics.v2.StatsProto.internal_static_envoy_config_metrics_v2_StatsMatcher_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.metrics.v2.StatsProto.internal_static_envoy_config_metrics_v2_StatsMatcher_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.class, io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.Builder.class);
}
private int statsMatcherCase_ = 0;
private java.lang.Object statsMatcher_;
public enum StatsMatcherCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
REJECT_ALL(1),
EXCLUSION_LIST(2),
INCLUSION_LIST(3),
STATSMATCHER_NOT_SET(0);
private final int value;
private StatsMatcherCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static StatsMatcherCase valueOf(int value) {
return forNumber(value);
}
public static StatsMatcherCase forNumber(int value) {
switch (value) {
case 1: return REJECT_ALL;
case 2: return EXCLUSION_LIST;
case 3: return INCLUSION_LIST;
case 0: return STATSMATCHER_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public StatsMatcherCase
getStatsMatcherCase() {
return StatsMatcherCase.forNumber(
statsMatcherCase_);
}
public static final int REJECT_ALL_FIELD_NUMBER = 1;
/**
*
* If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @return Whether the rejectAll field is set.
*/
@java.lang.Override
public boolean hasRejectAll() {
return statsMatcherCase_ == 1;
}
/**
*
* If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @return The rejectAll.
*/
@java.lang.Override
public boolean getRejectAll() {
if (statsMatcherCase_ == 1) {
return (java.lang.Boolean) statsMatcher_;
}
return false;
}
public static final int EXCLUSION_LIST_FIELD_NUMBER = 2;
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher exclusion_list = 2;
* @return Whether the exclusionList field is set.
*/
@java.lang.Override
public boolean hasExclusionList() {
return statsMatcherCase_ == 2;
}
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher exclusion_list = 2;
* @return The exclusionList.
*/
@java.lang.Override
public io.envoyproxy.envoy.type.matcher.ListStringMatcher getExclusionList() {
if (statsMatcherCase_ == 2) {
return (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_;
}
return io.envoyproxy.envoy.type.matcher.ListStringMatcher.getDefaultInstance();
}
/**
*
* Exclusive match. All stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher exclusion_list = 2;
*/
@java.lang.Override
public io.envoyproxy.envoy.type.matcher.ListStringMatcherOrBuilder getExclusionListOrBuilder() {
if (statsMatcherCase_ == 2) {
return (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_;
}
return io.envoyproxy.envoy.type.matcher.ListStringMatcher.getDefaultInstance();
}
public static final int INCLUSION_LIST_FIELD_NUMBER = 3;
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher inclusion_list = 3;
* @return Whether the inclusionList field is set.
*/
@java.lang.Override
public boolean hasInclusionList() {
return statsMatcherCase_ == 3;
}
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher inclusion_list = 3;
* @return The inclusionList.
*/
@java.lang.Override
public io.envoyproxy.envoy.type.matcher.ListStringMatcher getInclusionList() {
if (statsMatcherCase_ == 3) {
return (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_;
}
return io.envoyproxy.envoy.type.matcher.ListStringMatcher.getDefaultInstance();
}
/**
*
* Inclusive match. No stats are enabled except for those matching one of the supplied
* StringMatcher protos.
*
*
* .envoy.type.matcher.ListStringMatcher inclusion_list = 3;
*/
@java.lang.Override
public io.envoyproxy.envoy.type.matcher.ListStringMatcherOrBuilder getInclusionListOrBuilder() {
if (statsMatcherCase_ == 3) {
return (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_;
}
return io.envoyproxy.envoy.type.matcher.ListStringMatcher.getDefaultInstance();
}
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 (statsMatcherCase_ == 1) {
output.writeBool(
1, (boolean)((java.lang.Boolean) statsMatcher_));
}
if (statsMatcherCase_ == 2) {
output.writeMessage(2, (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_);
}
if (statsMatcherCase_ == 3) {
output.writeMessage(3, (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (statsMatcherCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(
1, (boolean)((java.lang.Boolean) statsMatcher_));
}
if (statsMatcherCase_ == 2) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_);
}
if (statsMatcherCase_ == 3) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(3, (io.envoyproxy.envoy.type.matcher.ListStringMatcher) statsMatcher_);
}
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 io.envoyproxy.envoy.config.metrics.v2.StatsMatcher)) {
return super.equals(obj);
}
io.envoyproxy.envoy.config.metrics.v2.StatsMatcher other = (io.envoyproxy.envoy.config.metrics.v2.StatsMatcher) obj;
if (!getStatsMatcherCase().equals(other.getStatsMatcherCase())) return false;
switch (statsMatcherCase_) {
case 1:
if (getRejectAll()
!= other.getRejectAll()) return false;
break;
case 2:
if (!getExclusionList()
.equals(other.getExclusionList())) return false;
break;
case 3:
if (!getInclusionList()
.equals(other.getInclusionList())) return false;
break;
case 0:
default:
}
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();
switch (statsMatcherCase_) {
case 1:
hash = (37 * hash) + REJECT_ALL_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getRejectAll());
break;
case 2:
hash = (37 * hash) + EXCLUSION_LIST_FIELD_NUMBER;
hash = (53 * hash) + getExclusionList().hashCode();
break;
case 3:
hash = (37 * hash) + INCLUSION_LIST_FIELD_NUMBER;
hash = (53 * hash) + getInclusionList().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher 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 io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher 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 io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static io.envoyproxy.envoy.config.metrics.v2.StatsMatcher 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(io.envoyproxy.envoy.config.metrics.v2.StatsMatcher 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;
}
/**
*
* Configuration for disabling stat instantiation.
*
*
* Protobuf type {@code envoy.config.metrics.v2.StatsMatcher}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:envoy.config.metrics.v2.StatsMatcher)
io.envoyproxy.envoy.config.metrics.v2.StatsMatcherOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.envoyproxy.envoy.config.metrics.v2.StatsProto.internal_static_envoy_config_metrics_v2_StatsMatcher_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.envoyproxy.envoy.config.metrics.v2.StatsProto.internal_static_envoy_config_metrics_v2_StatsMatcher_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.class, io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.Builder.class);
}
// Construct using io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.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();
statsMatcherCase_ = 0;
statsMatcher_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return io.envoyproxy.envoy.config.metrics.v2.StatsProto.internal_static_envoy_config_metrics_v2_StatsMatcher_descriptor;
}
@java.lang.Override
public io.envoyproxy.envoy.config.metrics.v2.StatsMatcher getDefaultInstanceForType() {
return io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.getDefaultInstance();
}
@java.lang.Override
public io.envoyproxy.envoy.config.metrics.v2.StatsMatcher build() {
io.envoyproxy.envoy.config.metrics.v2.StatsMatcher result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public io.envoyproxy.envoy.config.metrics.v2.StatsMatcher buildPartial() {
io.envoyproxy.envoy.config.metrics.v2.StatsMatcher result = new io.envoyproxy.envoy.config.metrics.v2.StatsMatcher(this);
if (statsMatcherCase_ == 1) {
result.statsMatcher_ = statsMatcher_;
}
if (statsMatcherCase_ == 2) {
if (exclusionListBuilder_ == null) {
result.statsMatcher_ = statsMatcher_;
} else {
result.statsMatcher_ = exclusionListBuilder_.build();
}
}
if (statsMatcherCase_ == 3) {
if (inclusionListBuilder_ == null) {
result.statsMatcher_ = statsMatcher_;
} else {
result.statsMatcher_ = inclusionListBuilder_.build();
}
}
result.statsMatcherCase_ = statsMatcherCase_;
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 io.envoyproxy.envoy.config.metrics.v2.StatsMatcher) {
return mergeFrom((io.envoyproxy.envoy.config.metrics.v2.StatsMatcher)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(io.envoyproxy.envoy.config.metrics.v2.StatsMatcher other) {
if (other == io.envoyproxy.envoy.config.metrics.v2.StatsMatcher.getDefaultInstance()) return this;
switch (other.getStatsMatcherCase()) {
case REJECT_ALL: {
setRejectAll(other.getRejectAll());
break;
}
case EXCLUSION_LIST: {
mergeExclusionList(other.getExclusionList());
break;
}
case INCLUSION_LIST: {
mergeInclusionList(other.getInclusionList());
break;
}
case STATSMATCHER_NOT_SET: {
break;
}
}
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 {
io.envoyproxy.envoy.config.metrics.v2.StatsMatcher parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (io.envoyproxy.envoy.config.metrics.v2.StatsMatcher) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int statsMatcherCase_ = 0;
private java.lang.Object statsMatcher_;
public StatsMatcherCase
getStatsMatcherCase() {
return StatsMatcherCase.forNumber(
statsMatcherCase_);
}
public Builder clearStatsMatcher() {
statsMatcherCase_ = 0;
statsMatcher_ = null;
onChanged();
return this;
}
/**
*
* If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @return Whether the rejectAll field is set.
*/
public boolean hasRejectAll() {
return statsMatcherCase_ == 1;
}
/**
*
* If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @return The rejectAll.
*/
public boolean getRejectAll() {
if (statsMatcherCase_ == 1) {
return (java.lang.Boolean) statsMatcher_;
}
return false;
}
/**
*
* If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all
* stats are enabled.
*
*
* bool reject_all = 1;
* @param value The rejectAll to set.
* @return This builder for chaining.
*/
public Builder setRejectAll(boolean value) {
statsMatcherCase_ = 1;
statsMatcher_ = value;
onChanged();
return this;
}
/**
*
* If `reject_all` is true, then all stats are disabled. If `reject_all` is false, then all
* stats are enabled.
*