You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
629 B
629 B
Spring Parser
- 类全路径:
org.springframework.format.Parser
- 类作用: 字符串准换成 java 对象
@FunctionalInterface
public interface Parser<T> {
/**
* Parse a text String to produce a T.
* 将字符串转换成对象
* @param text the text string
* @param locale the current user locale
* @return an instance of T
* @throws ParseException when a parse exception occurs in a java.text parsing library
* @throws IllegalArgumentException when a parse exception occurs
*/
T parse(String text, Locale locale) throws ParseException;
}
- 类图