Interface Rpc.KeyAttributeOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Rpc.KeyAttribute,Rpc.KeyAttribute.Builder
- Enclosing class:
- Rpc
public static interface Rpc.KeyAttributeOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAttribute()* The attribute.com.google.protobuf.ByteStringgetAttributeBytes()* The attribute.java.lang.StringgetEntity()* Name of entity.com.google.protobuf.ByteStringgetEntityBytes()* Name of entity.java.lang.StringgetKey()* Key of entity.com.google.protobuf.ByteStringgetKeyBytes()* Key of entity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEntity
java.lang.String getEntity()
* Name of entity.
string entity = 1;- Returns:
- The entity.
-
getEntityBytes
com.google.protobuf.ByteString getEntityBytes()
* Name of entity.
string entity = 1;- Returns:
- The bytes for entity.
-
getKey
java.lang.String getKey()
* Key of entity.
string key = 2;- Returns:
- The key.
-
getKeyBytes
com.google.protobuf.ByteString getKeyBytes()
* Key of entity.
string key = 2;- Returns:
- The bytes for key.
-
getAttribute
java.lang.String getAttribute()
* The attribute.
string attribute = 3;- Returns:
- The attribute.
-
getAttributeBytes
com.google.protobuf.ByteString getAttributeBytes()
* The attribute.
string attribute = 3;- Returns:
- The bytes for attribute.
-
-