Interface CelebrityOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Celebrity
,Celebrity.Builder
public interface CelebrityOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
The Celebrity's description.com.google.protobuf.ByteString
getDescriptionBytes()
The Celebrity's description.String
getDisplayName()
The Celebrity's display name.com.google.protobuf.ByteString
getDisplayNameBytes()
The Celebrity's display name.String
getName()
The resource name of the preloaded Celebrity.com.google.protobuf.ByteString
getNameBytes()
The resource name of the preloaded Celebrity.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The resource name of the preloaded Celebrity. Has the format `builtin/{mid}`.
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The resource name of the preloaded Celebrity. Has the format `builtin/{mid}`.
string name = 1;
- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
The Celebrity's display name.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
The Celebrity's display name.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
getDescription
String getDescription()
The Celebrity's description.
string description = 3;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
The Celebrity's description.
string description = 3;
- Returns:
- The bytes for description.
-
-