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

com.davidthomasbernal.stardict.dictionary.IndexEntry Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package com.davidthomasbernal.stardict.dictionary;

import java.util.LinkedHashSet;
import java.util.Set;

/**
* Created by david on 2/8/15.
*/
public class IndexEntry {
    public IndexEntry(String word, long dataOffset, long dataSize) {
        this.words =  new LinkedHashSet();
        this.words.add(word);
        this.dataOffset = dataOffset;
        this.dataSize = dataSize;
    }

    public final Set words;
    public final long dataOffset;
    public final long dataSize;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy