Uses of Class
es.uvigo.esei.sing.textproc.entity.ProcessedDocument
Package | Description |
---|---|
es.uvigo.esei.sing.textproc.abstracttppstep | |
es.uvigo.esei.sing.textproc.entity | |
es.uvigo.esei.sing.textproc.step |
-
Uses of ProcessedDocument in es.uvigo.esei.sing.textproc.abstracttppstep
Constructor parameters in es.uvigo.esei.sing.textproc.abstracttppstep with type arguments of type ProcessedDocument Constructor Description AbstractTppProcessingStep(java.util.Map<java.lang.String,java.util.function.Predicate<java.lang.String>> validationPredicates, java.util.Set<java.lang.String> requiredParameters, @NonNull java.util.List<java.lang.Class<? extends ProcessedDocument>> processedDocumentTypes, @NonNull java.lang.String stepDescriptionFormatString, @NonNull JsonResponseAttributeType jsonResponseAttributeType, @NonNull AbstractProcessingStep.ProcessingConsumer<? super javax.json.stream.JsonGenerator> requestParametersAction, @NonNull ProcessingBiConsumer<? super java.util.Map.Entry<java.lang.String,javax.json.JsonObject>,? super java.util.Map<java.lang.String,java.lang.String>> storeProcessedAttributeAction)
Creates a new processing step that processes documents via calls to the Text Processing Python web service. -
Uses of ProcessedDocument in es.uvigo.esei.sing.textproc.entity
Subclasses of ProcessedDocument in es.uvigo.esei.sing.textproc.entity Modifier and Type Class Description class
ProcessedDocumentWithTitle
Represents a processed text document which has a title. -
Uses of ProcessedDocument in es.uvigo.esei.sing.textproc.step
Methods in es.uvigo.esei.sing.textproc.step with type parameters of type ProcessedDocument Modifier and Type Method Description protected <T extends ProcessedDocument>
voidAbstractProcessingStep. deleteAllProcessedDocumentsOfType(@NonNull java.lang.Class<T> documentType)
Deletes all the processed documents of a given type from the database.Methods in es.uvigo.esei.sing.textproc.step that return types with arguments of type ProcessedDocument Modifier and Type Method Description java.util.Set<java.lang.Class<? extends ProcessedDocument>>
ProcessingStepService. getProcessedDocumentTypes()
Returns a set with every additional processed document types that the processing step contained in this service creates in the database.Method parameters in es.uvigo.esei.sing.textproc.step with type arguments of type ProcessedDocument Modifier and Type Method Description protected void
AbstractProcessingStep. saveProcessedDocument(@NonNull java.lang.Class<? extends ProcessedDocument> documentType, int primaryKey, @NonNull java.util.Map<java.lang.String,java.lang.String> processedAttributes)
Stores a processed document in the database, from its processed attributes.