Interface FilterConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FilterConfig,FilterConfig.Builder
public interface FilterConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.AnygetConfig()The filter config.com.google.protobuf.AnyOrBuildergetConfigOrBuilder()The filter config.booleangetIsOptional()If true, the filter is optional, meaning that if the client does not support the specified filter, it may ignore the map entry rather than rejecting the config.booleanhasConfig()The filter config.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasConfig
boolean hasConfig()
The filter config.
.google.protobuf.Any config = 1;- Returns:
- Whether the config field is set.
-
getConfig
com.google.protobuf.Any getConfig()
The filter config.
.google.protobuf.Any config = 1;- Returns:
- The config.
-
getConfigOrBuilder
com.google.protobuf.AnyOrBuilder getConfigOrBuilder()
The filter config.
.google.protobuf.Any config = 1;
-
getIsOptional
boolean getIsOptional()
If true, the filter is optional, meaning that if the client does not support the specified filter, it may ignore the map entry rather than rejecting the config.
bool is_optional = 2;- Returns:
- The isOptional.
-
-