pl.allegro.finance.tradukisto.internal.BaseValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tradukisto Show documentation
Show all versions of tradukisto Show documentation
Small java library created to convert numbers to their word representations
package pl.allegro.finance.tradukisto.internal;
import pl.allegro.finance.tradukisto.internal.languages.GenderForms;
import pl.allegro.finance.tradukisto.internal.languages.PluralForms;
import java.util.List;
import java.util.Map;
public interface BaseValues {
Map baseNumbers();
List pluralForms();
String currency();
char twoDigitsNumberSeparator();
}