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

pl.allegro.finance.tradukisto.internal.MultiFormNumber Maven / Gradle / Ivy

Go to download

Small java library created to convert numbers to their word representations

There is a newer version: 3.1.0
Show newest version
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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy