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

org.daisy.dotify.api.text.Integer2Text Maven / Gradle / Ivy

package org.daisy.dotify.api.text;


/**
 * Provides an integer2text.
 *
 * @author Joel Håkansson
 */
public interface Integer2Text {

    /**
     * Converts the integer to text.
     *
     * @param value the integer value
     * @return the integer as text
     * @throws IntegerOutOfRange If value is out of range of the implementations
     *                           capabilities.
     */
    public String intToText(int value) throws IntegerOutOfRange;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy