com.orangereading.stardict.domain.ImmutableDictionaryInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stardict Show documentation
Show all versions of stardict Show documentation
Tools to work with stardict dictionary files. Command line validation and export tool.
The newest version!
package com.orangereading.stardict.domain;
import java.io.Serializable;
public interface ImmutableDictionaryInfo extends Serializable {
String getVersion();
String getBookname();
Integer getWordCount();
Integer getSynWordCount();
Long getIdxFileSize();
Integer getIdxOffsetBits();
String getAuthor();
String getEmail();
String getWebsite();
String getDescription();
String getDate();
TypeIdentifier[] getSameTypeSequence();
}