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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetKey()The key matching the parameter tag name.com.google.protobuf.ByteStringgetKeyBytes()The key matching the parameter tag name.java.lang.StringgetValue()The value to be substituted.com.google.protobuf.ByteStringgetValueBytes()The 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.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasKey
boolean hasKey()
The key matching the parameter tag name.
optional string key = 3;- Returns:
- Whether the key field is set.
-
getKey
java.lang.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
java.lang.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.
-
-