public interface WordList
A list of preferably unique words as Strings. You can get the size of it and the single entries by their indices.
A word list should never be empty!
abstract String
get(Integer index)
abstract Integer
getSize()
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
abstract String get(Integer index)
Get the element with the given index.
index
abstract Integer getSize()
The number of words in this list. Should never be <= 0!