public class WordInfo { String word; int count; int firstIndex; WordInfo(String word, int count, int firstIndex) { this.word = word; this.count = count; this.firstIndex = firstIndex; } }