Interface StatsMatcherOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StatsMatcher
,StatsMatcher.Builder
public interface StatsMatcherOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStringMatcher
getExclusionList()
Exclusive match.ListStringMatcherOrBuilder
getExclusionListOrBuilder()
Exclusive match.ListStringMatcher
getInclusionList()
Inclusive match.ListStringMatcherOrBuilder
getInclusionListOrBuilder()
Inclusive match.boolean
getRejectAll()
If ``reject_all`` is true, then all stats are disabled.StatsMatcher.StatsMatcherCase
getStatsMatcherCase()
boolean
hasExclusionList()
Exclusive match.boolean
hasInclusionList()
Inclusive match.boolean
hasRejectAll()
If ``reject_all`` is true, then all stats are disabled.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRejectAll
boolean hasRejectAll()
If ``reject_all`` is true, then all stats are disabled. If ``reject_all`` is false, then all stats are enabled.
bool reject_all = 1;
- Returns:
- Whether the rejectAll field is set.
-
getRejectAll
boolean getRejectAll()
If ``reject_all`` is true, then all stats are disabled. If ``reject_all`` is false, then all stats are enabled.
bool reject_all = 1;
- Returns:
- The rejectAll.
-
hasExclusionList
boolean hasExclusionList()
Exclusive match. All stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
- Returns:
- Whether the exclusionList field is set.
-
getExclusionList
ListStringMatcher getExclusionList()
Exclusive match. All stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
- Returns:
- The exclusionList.
-
getExclusionListOrBuilder
ListStringMatcherOrBuilder getExclusionListOrBuilder()
Exclusive match. All stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher exclusion_list = 2;
-
hasInclusionList
boolean hasInclusionList()
Inclusive match. No stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
- Returns:
- Whether the inclusionList field is set.
-
getInclusionList
ListStringMatcher getInclusionList()
Inclusive match. No stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
- Returns:
- The inclusionList.
-
getInclusionListOrBuilder
ListStringMatcherOrBuilder getInclusionListOrBuilder()
Inclusive match. No stats are enabled except for those matching one of the supplied StringMatcher protos.
.envoy.type.matcher.v3.ListStringMatcher inclusion_list = 3;
-
getStatsMatcherCase
StatsMatcher.StatsMatcherCase getStatsMatcherCase()
-
-