Package com.google.cloud.datacatalog.v1
Interface BusinessContextOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BusinessContext
,BusinessContext.Builder
public interface BusinessContextOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Contacts
getContacts()
Contact people for the entry.ContactsOrBuilder
getContactsOrBuilder()
Contact people for the entry.EntryOverview
getEntryOverview()
Entry overview fields for rich text descriptions of entries.EntryOverviewOrBuilder
getEntryOverviewOrBuilder()
Entry overview fields for rich text descriptions of entries.boolean
hasContacts()
Contact people for the entry.boolean
hasEntryOverview()
Entry overview fields for rich text descriptions of entries.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEntryOverview
boolean hasEntryOverview()
Entry overview fields for rich text descriptions of entries.
.google.cloud.datacatalog.v1.EntryOverview entry_overview = 1;
- Returns:
- Whether the entryOverview field is set.
-
getEntryOverview
EntryOverview getEntryOverview()
Entry overview fields for rich text descriptions of entries.
.google.cloud.datacatalog.v1.EntryOverview entry_overview = 1;
- Returns:
- The entryOverview.
-
getEntryOverviewOrBuilder
EntryOverviewOrBuilder getEntryOverviewOrBuilder()
Entry overview fields for rich text descriptions of entries.
.google.cloud.datacatalog.v1.EntryOverview entry_overview = 1;
-
hasContacts
boolean hasContacts()
Contact people for the entry.
.google.cloud.datacatalog.v1.Contacts contacts = 2;
- Returns:
- Whether the contacts field is set.
-
getContacts
Contacts getContacts()
Contact people for the entry.
.google.cloud.datacatalog.v1.Contacts contacts = 2;
- Returns:
- The contacts.
-
getContactsOrBuilder
ContactsOrBuilder getContactsOrBuilder()
Contact people for the entry.
.google.cloud.datacatalog.v1.Contacts contacts = 2;
-
-