Interface DictEntries

    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      default java.lang.String getMorphologicalData​(int entryIndex)
      Same as get(entryIndex).getMorphologicalData()
      default java.util.List<java.lang.String> getMorphologicalValues​(int entryIndex, java.lang.String key)
      Same as get(entryIndex).getMorphologicalValues(key)
      int size()  
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
      • Methods inherited from interface java.util.List

        add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, sort, spliterator, subList, toArray, toArray
    • Method Detail

      • size

        int size()
        Specified by:
        size in interface java.util.Collection<DictEntry>
        Specified by:
        size in interface java.util.List<DictEntry>
        Returns:
        a positive number of dictionary entries with the same word. Most often it's 1 (unless there are homonyms). Entries are indexed from 0 to size() - 1 and these indices can be passed into other methods of this class.
      • getMorphologicalData

        default java.lang.String getMorphologicalData​(int entryIndex)
        Same as get(entryIndex).getMorphologicalData()
      • getMorphologicalValues

        default java.util.List<java.lang.String> getMorphologicalValues​(int entryIndex,
                                                                        java.lang.String key)
        Same as get(entryIndex).getMorphologicalValues(key)