|
|
@@ -22,7 +22,7 @@ public final class ResolveUtils {
|
|
|
return ResolveFormat.compile(pattern).format(context);
|
|
|
}
|
|
|
|
|
|
- public static String format(String pattern, Object... arguments) {
|
|
|
+ public static String vformat(String pattern, Object... arguments) {
|
|
|
return ResolveFormat.compile(pattern).format(arguments);
|
|
|
}
|
|
|
|
|
|
@@ -30,7 +30,7 @@ public final class ResolveUtils {
|
|
|
return ResolveFormat.compile(pattern).format(output, context);
|
|
|
}
|
|
|
|
|
|
- public static <T extends Appendable> T format(T output, String pattern, Object... arguments) throws IOException {
|
|
|
+ public static <T extends Appendable> T vformat(T output, String pattern, Object... arguments) throws IOException {
|
|
|
return ResolveFormat.compile(pattern).format(output, arguments);
|
|
|
}
|
|
|
|
|
|
@@ -38,7 +38,7 @@ public final class ResolveUtils {
|
|
|
ResolveFormat.compile(pattern).parse(input, context);
|
|
|
}
|
|
|
|
|
|
- public static void parse(String pattern, String input, Object... arguments) {
|
|
|
+ public static void vparse(String pattern, String input, Object... arguments) {
|
|
|
ResolveFormat.compile(pattern).parse(input, arguments);
|
|
|
}
|
|
|
|