pl.allegro.finance.tradukisto.internal.languages.english.EnglishPluralForms 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.languages.english;
import pl.allegro.finance.tradukisto.internal.languages.GenderType;
import pl.allegro.finance.tradukisto.internal.languages.PluralForms;
public class EnglishPluralForms implements PluralForms {
private final String form;
public EnglishPluralForms(String form) {
this.form = form;
}
@Override
public String formFor(Integer value) {
return form;
}
@Override
public GenderType genderType() {
return GenderType.NON_APPLICABLE;
}
}