Polishing
This commit is contained in:
parent
320f5836b4
commit
5d297c6387
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2012 the original author or authors.
|
||||
* Copyright 2002-2021 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -23,9 +23,9 @@ import org.springframework.util.StringUtils;
|
|||
/**
|
||||
* Editor for {@code java.util.Locale}, to directly populate a Locale property.
|
||||
*
|
||||
* <p>Expects the same syntax as Locale's {@code toString}, i.e. language +
|
||||
* <p>Expects the same syntax as Locale's {@code toString()}, i.e. language +
|
||||
* optionally country + optionally variant, separated by "_" (e.g. "en", "en_US").
|
||||
* Also accepts spaces as separators, as alternative to underscores.
|
||||
* Also accepts spaces as separators, as an alternative to underscores.
|
||||
*
|
||||
* @author Juergen Hoeller
|
||||
* @since 26.05.2003
|
||||
|
|
|
|||
|
|
@ -501,7 +501,7 @@ the various `PropertyEditor` implementations that Spring provides:
|
|||
| `LocaleEditor`
|
||||
| Can resolve strings to `Locale` objects and vice-versa (the string format is
|
||||
`[language]\_[country]_[variant]`, same as the `toString()` method of
|
||||
`Locale`). Also accepts spaces as separators, as alternative to underscores.
|
||||
`Locale`). Also accepts spaces as separators, as an alternative to underscores.
|
||||
By default, registered by `BeanWrapperImpl`.
|
||||
|
||||
| `PatternEditor`
|
||||
|
|
|
|||
Loading…
Reference in New Issue