pl.allegro.finance.tradukisto.internal.MultiFormNumber 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;
public class MultiFormNumber {
private final String aloneForm;
private final String regularForm;
public MultiFormNumber(String aloneForm, String regularForm) {
this.aloneForm = aloneForm;
this.regularForm = regularForm;
}
public String getAloneForm() {
return aloneForm;
}
public String getRegularForm() {
return regularForm;
}
}