Package com.google.cloud.datacatalog.v1
Interface Contacts.PersonOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Contacts.Person
,Contacts.Person.Builder
- Enclosing class:
- Contacts
public static interface Contacts.PersonOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDesignation()
Designation of the person, for example, Data Steward.com.google.protobuf.ByteString
getDesignationBytes()
Designation of the person, for example, Data Steward.String
getEmail()
Email of the person in the format of `john.doe@xyz`, `<john.doe@xyz>`, or `John Doe<john.doe@xyz>`.com.google.protobuf.ByteString
getEmailBytes()
Email of the person in the format of `john.doe@xyz`, `<john.doe@xyz>`, or `John Doe<john.doe@xyz>`.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDesignation
String getDesignation()
Designation of the person, for example, Data Steward.
string designation = 1;
- Returns:
- The designation.
-
getDesignationBytes
com.google.protobuf.ByteString getDesignationBytes()
Designation of the person, for example, Data Steward.
string designation = 1;
- Returns:
- The bytes for designation.
-
getEmail
String getEmail()
Email of the person in the format of `john.doe@xyz`, `<john.doe@xyz>`, or `John Doe<john.doe@xyz>`.
string email = 2;
- Returns:
- The email.
-
getEmailBytes
com.google.protobuf.ByteString getEmailBytes()
Email of the person in the format of `john.doe@xyz`, `<john.doe@xyz>`, or `John Doe<john.doe@xyz>`.
string email = 2;
- Returns:
- The bytes for email.
-
-