Interface ContactOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Contact
,Contact.Builder
public interface ContactOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEmail()
An email address.com.google.protobuf.ByteString
getEmailBytes()
An email address.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEmail
String getEmail()
An email address. For example, "`person123@company.com`".
string email = 1;
- Returns:
- The email.
-
getEmailBytes
com.google.protobuf.ByteString getEmailBytes()
An email address. For example, "`person123@company.com`".
string email = 1;
- Returns:
- The bytes for email.
-
-