![JAR search and dependency download from the Maven repository](/logo.png)
org.cthul.strings.format.FormatArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cthul-strings Show documentation
Show all versions of cthul-strings Show documentation
Functions for converting strings from and to various formats,
such as roman numbers, alpha indices, Java identifiers,
and format strings.
The newest version!
package org.cthul.strings.format;
/**
* Arguments for formatting, identified by index, character or key.
* @author Arian Treffer
*/
public interface FormatArgs {
/**
* @param i zero-based index
*/
Object get(int i);
Object get(char c);
Object get(String s);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy