Interface DocumentSchemaOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DocumentSchema,DocumentSchema.Builder
public interface DocumentSchemaOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()Description of the schema.com.google.protobuf.ByteStringgetDescriptionBytes()Description of the schema.StringgetDisplayName()Display name to show to users.com.google.protobuf.ByteStringgetDisplayNameBytes()Display name to show to users.DocumentSchema.EntityTypegetEntityTypes(int index)Entity types of the schema.intgetEntityTypesCount()Entity types of the schema.List<DocumentSchema.EntityType>getEntityTypesList()Entity types of the schema.DocumentSchema.EntityTypeOrBuildergetEntityTypesOrBuilder(int index)Entity types of the schema.List<? extends DocumentSchema.EntityTypeOrBuilder>getEntityTypesOrBuilderList()Entity types of the schema.DocumentSchema.MetadatagetMetadata()Metadata of the schema.DocumentSchema.MetadataOrBuildergetMetadataOrBuilder()Metadata of the schema.booleanhasMetadata()Metadata of the schema.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDisplayName
String getDisplayName()
Display name to show to users.
string display_name = 1;- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Display name to show to users.
string display_name = 1;- Returns:
- The bytes for displayName.
-
getDescription
String getDescription()
Description of the schema.
string description = 2;- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Description of the schema.
string description = 2;- Returns:
- The bytes for description.
-
getEntityTypesList
List<DocumentSchema.EntityType> getEntityTypesList()
Entity types of the schema.
repeated .google.cloud.documentai.v1beta3.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypes
DocumentSchema.EntityType getEntityTypes(int index)
Entity types of the schema.
repeated .google.cloud.documentai.v1beta3.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypesCount
int getEntityTypesCount()
Entity types of the schema.
repeated .google.cloud.documentai.v1beta3.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypesOrBuilderList
List<? extends DocumentSchema.EntityTypeOrBuilder> getEntityTypesOrBuilderList()
Entity types of the schema.
repeated .google.cloud.documentai.v1beta3.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypesOrBuilder
DocumentSchema.EntityTypeOrBuilder getEntityTypesOrBuilder(int index)
Entity types of the schema.
repeated .google.cloud.documentai.v1beta3.DocumentSchema.EntityType entity_types = 3;
-
hasMetadata
boolean hasMetadata()
Metadata of the schema.
.google.cloud.documentai.v1beta3.DocumentSchema.Metadata metadata = 4;- Returns:
- Whether the metadata field is set.
-
getMetadata
DocumentSchema.Metadata getMetadata()
Metadata of the schema.
.google.cloud.documentai.v1beta3.DocumentSchema.Metadata metadata = 4;- Returns:
- The metadata.
-
getMetadataOrBuilder
DocumentSchema.MetadataOrBuilder getMetadataOrBuilder()
Metadata of the schema.
.google.cloud.documentai.v1beta3.DocumentSchema.Metadata metadata = 4;
-
-