Example usage for edu.stanford.nlp.ling IndexedWord IndexedWord

List of usage examples for edu.stanford.nlp.ling IndexedWord IndexedWord

Introduction

In this page you can find the example usage for edu.stanford.nlp.ling IndexedWord IndexedWord.

Prototype

public IndexedWord() 

Source Link

Document

Default constructor; uses CoreLabel default constructor

Usage

From source file:edu.nyu.nyuvis.cfutils.nlp.utils.CoreNLP.java

public static IndexedWord convert(Word w) {
    IndexedWord iw = new IndexedWord();
    iw.setWord(w.word());
    return iw;
}