Interface EnvironOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Environ,Environ.Builder
public interface EnvironOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetKey()required bytes key = 1;com.google.protobuf.ByteStringgetValue()required bytes value = 2;booleanhasKey()required bytes key = 1;booleanhasValue()required bytes value = 2;-
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()
required bytes key = 1;- Returns:
- Whether the key field is set.
-
getKey
com.google.protobuf.ByteString getKey()
required bytes key = 1;- Returns:
- The key.
-
hasValue
boolean hasValue()
required bytes value = 2;- Returns:
- Whether the value field is set.
-
getValue
com.google.protobuf.ByteString getValue()
required bytes value = 2;- Returns:
- The value.
-
-