Package com.google.cloud.documentai.v1
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 String
getDescription()
Description of the schema.com.google.protobuf.ByteString
getDescriptionBytes()
Description of the schema.String
getDisplayName()
Display name to show to users.com.google.protobuf.ByteString
getDisplayNameBytes()
Display name to show to users.DocumentSchema.EntityType
getEntityTypes(int index)
Entity types of the schema.int
getEntityTypesCount()
Entity types of the schema.List<DocumentSchema.EntityType>
getEntityTypesList()
Entity types of the schema.DocumentSchema.EntityTypeOrBuilder
getEntityTypesOrBuilder(int index)
Entity types of the schema.List<? extends DocumentSchema.EntityTypeOrBuilder>
getEntityTypesOrBuilderList()
Entity types of the schema.DocumentSchema.Metadata
getMetadata()
Metadata of the schema.DocumentSchema.MetadataOrBuilder
getMetadataOrBuilder()
Metadata of the schema.boolean
hasMetadata()
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.v1.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypes
DocumentSchema.EntityType getEntityTypes(int index)
Entity types of the schema.
repeated .google.cloud.documentai.v1.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypesCount
int getEntityTypesCount()
Entity types of the schema.
repeated .google.cloud.documentai.v1.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypesOrBuilderList
List<? extends DocumentSchema.EntityTypeOrBuilder> getEntityTypesOrBuilderList()
Entity types of the schema.
repeated .google.cloud.documentai.v1.DocumentSchema.EntityType entity_types = 3;
-
getEntityTypesOrBuilder
DocumentSchema.EntityTypeOrBuilder getEntityTypesOrBuilder(int index)
Entity types of the schema.
repeated .google.cloud.documentai.v1.DocumentSchema.EntityType entity_types = 3;
-
hasMetadata
boolean hasMetadata()
Metadata of the schema.
.google.cloud.documentai.v1.DocumentSchema.Metadata metadata = 4;
- Returns:
- Whether the metadata field is set.
-
getMetadata
DocumentSchema.Metadata getMetadata()
Metadata of the schema.
.google.cloud.documentai.v1.DocumentSchema.Metadata metadata = 4;
- Returns:
- The metadata.
-
getMetadataOrBuilder
DocumentSchema.MetadataOrBuilder getMetadataOrBuilder()
Metadata of the schema.
.google.cloud.documentai.v1.DocumentSchema.Metadata metadata = 4;
-
-