def.sprintf.Globals Maven / Gradle / Ivy
package def.sprintf;
public class Globals {
/**
* Example: sprintf(
* "The first 4 letters of the English alphabet are: %s, %s, %s and %s",
* "a", "b", "c", "d")
*/
public static native String sprintf(String format, Object... args);
/**
* Example: vprintf(
* "The first 4 letters of the English alphabet are: %s, %s, %s and %s", new
* String[] {"a", "b", "c", "d"})
*/
public static native String vprintf(String format, Object[] args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy