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

org.iartisan.runtime.utils.MessageUtil Maven / Gradle / Ivy

The newest version!
package org.iartisan.runtime.utils;

import java.text.MessageFormat;

/**
 * 

* message util * * @author King * @since 2018/5/23 */ public class MessageUtil { /** * format msg * * @param pattern * @param ags * @return */ public static String format(String pattern, Object... ags) { return MessageFormat.format(pattern, ags); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy