Interface IntentOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Intent
,Intent.Builder
public interface IntentOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDisplayName()
The human-readable name of the intent.com.google.protobuf.ByteString
getDisplayNameBytes()
The human-readable name of the intent.String
getId()
The unique identifier of the intent.com.google.protobuf.ByteString
getIdBytes()
The unique identifier of the intent.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
String getId()
The unique identifier of the intent.
string id = 1;
- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
The unique identifier of the intent.
string id = 1;
- Returns:
- The bytes for id.
-
getDisplayName
String getDisplayName()
The human-readable name of the intent.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The human-readable name of the intent.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
-