congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ToStringIterator
Code IndexAdd Tabnine to your IDE (free)

How to use
ToStringIterator
in
org.apache.stanbol.entityhub.servicesapi.util

Best Java code snippets using org.apache.stanbol.entityhub.servicesapi.util.ToStringIterator (Showing top 4 results out of 315)

origin: org.apache.stanbol/org.apache.stanbol.entityhub.core

/**
 * 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));
}
origin: org.apache.stanbol/org.apache.stanbol.entityhub.core

/**
 * 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));
}
origin: apache/stanbol

/**
 * 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));
}
origin: apache/stanbol

/**
 * 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));
}
org.apache.stanbol.entityhub.servicesapi.utilToStringIterator

Javadoc

Implementation of an Iterator over String values, that uses the Object#toString() on elements of the parent Iterator for the conversion.

This Implementation does not use AdaptingIterators implementation, because the Object#toString() method can be used to create a string representation for every object and therefore there is no need for the filtering functionality provided by the AdaptingIterator.

Most used methods

  • <init>
    Creates an string iterator over parsed parent

Popular in Java

  • Finding current android device location
  • requestLocationUpdates (LocationManager)
  • startActivity (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • BoxLayout (javax.swing)
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now