Interface CustomParameterOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CustomParameter,CustomParameter.Builder
public interface CustomParameterOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptiongetKey()The key matching the parameter tag name.com.google.protobuf.ByteStringThe key matching the parameter tag name.getValue()The value to be substituted.com.google.protobuf.ByteStringThe value to be substituted.booleanhasKey()The key matching the parameter tag name.booleanhasValue()The value to be substituted.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
hasKey
boolean hasKey()The key matching the parameter tag name.
optional string key = 3;- Returns:
- Whether the key field is set.
-
getKey
String getKey()The key matching the parameter tag name.
optional string key = 3;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()The key matching the parameter tag name.
optional string key = 3;- Returns:
- The bytes for key.
-
hasValue
boolean hasValue()The value to be substituted.
optional string value = 4;- Returns:
- Whether the value field is set.
-
getValue
String getValue()The value to be substituted.
optional string value = 4;- Returns:
- The value.
-
getValueBytes
com.google.protobuf.ByteString getValueBytes()The value to be substituted.
optional string value = 4;- Returns:
- The bytes for value.
-