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

com.orangereading.stardict.domain.ImmutableDictionaryInfo Maven / Gradle / Ivy

Go to download

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();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy