Package org.apache.stanbol.entityhub.servicesapi.util

Examples of org.apache.stanbol.entityhub.servicesapi.util.ToStringIterator


     * Getter for the ID's of the symbols defined as predecessors of this one.
     * @return The id's of the symbols defined as predecessors of this one or an
     * empty list if there are no predecessors are defined.
     */
    public final Iterator<String> getPredecessors() {
        return new ToStringIterator(metadata.get(PREDECESSOR));
    }
View Full Code Here


     * Getter for the ID's of the symbols defined as successors of this one.
     * @return The id's of the symbols defined as successors of this one or an
     * empty list if there are no successors are defined.
     */
    public final Iterator<String> getSuccessors() {
        return new ToStringIterator(metadata.get(SUCCESSOR));
    }
View Full Code Here

TOP

Related Classes of org.apache.stanbol.entityhub.servicesapi.util.ToStringIterator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.