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

com.github.chen0040.data.text.Vocabulary Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.chen0040.data.text;

import java.util.List;


/**
 * Created by xschen on 14/8/15.
 */
public interface Vocabulary {
    String get(int index);
    int getLength();
    void add(String word);
    boolean contains(String word);
    void setWords(List words);

    int indexOf(String word);
    Vocabulary makeCopy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy