All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.redlink.sdk.impl.analysis.model.EnhancementsParser Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/**
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.redlink.sdk.impl.analysis.model;

import java.util.Collection;

/**
 * Enhancement Structure (RedLink's analysis service response) Parser API. The Enhancement Structure (https://stanbol.apache.org/docs/trunk/components/enhancer/enhancementstructure)
 * can be serialized in different formats, being RDF the default one. Each implementation of the parser has the mission to read the structure in the incoming format and transform it
 * in a {@link Enhancements} object, allowing the user to use the results in an easier way.
 *
 * @author [email protected]
 */
public abstract class EnhancementsParser {

    /**
     * Returns an {@link Enhancements} object from a serialized Enhancement Structure
     *
     * @return
     * @throws EnhancementParserException
     */
    public final Enhancements createEnhancements() throws EnhancementParserException {
        Enhancements enhancements = new Enhancements();
        enhancements.setEnhancements(parseEnhancements());
        enhancements.setLanguages(parseLanguages());
        return enhancements;
    }

    /**
     * Returns a {@link Collection} of {@link Enhancement} from a serialized Enhancement Structure
     *
     * @return
     * @throws EnhancementParserException
     */
    abstract Collection parseEnhancements() throws EnhancementParserException;

    /**
     * Returns a {@link Collection} of languages from a serialized Enhancement Structure
     *
     * @return
     * @throws EnhancementParserException
     */
    public abstract Collection parseLanguages() throws EnhancementParserException;

    /**
     * Returns a {@link Collection} of {@link TextAnnotation}s from a serialized Enhancement Structure
     *
     * @return
     * @throws EnhancementParserException
     */
    public abstract Collection parseTextAnnotations() throws EnhancementParserException;


    /**
     * Returns a {@link Collection} of {@link EntityAnnotation}s from a serialized Enhancement Structure
     *
     * @return
     * @throws EnhancementParserException
     */
    public abstract Collection parseEntityAnnotations() throws EnhancementParserException;

    /**
     * Returns a {@link Collection} of {@link TopicAnnotation}s from a serialized Enhancement Structure
     *
     * @return
     * @throws EnhancementParserException
     */
    public abstract Collection parseTopicAnnotation() throws EnhancementParserException;

    /**
     * Returns a dereferenced {@link Entity} identified by its URI from a serialized Enhancement Structure
     *
     * @param entityUri
     * @return
     * @throws EnhancementParserException
     */
    public abstract Entity parseEntity(String entityUri, String dataset) throws EnhancementParserException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy