12 lines
230 B
Java
12 lines
230 B
Java
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;
|
|
}
|
|
}
|