Add Javadoc since for PatternMatchUtils.simpleMatchIgnoreCase() methods
See gh-34802 Signed-off-by: Johnny Lim <izeye@naver.com>
This commit is contained in:
parent
6c4651925e
commit
6858c0e8ce
|
@ -42,6 +42,7 @@ public abstract class PatternMatchUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Variant of {@link #simpleMatch(String, String)} that ignores upper/lower case.
|
* Variant of {@link #simpleMatch(String, String)} that ignores upper/lower case.
|
||||||
|
* @since 6.1.20
|
||||||
*/
|
*/
|
||||||
public static boolean simpleMatchIgnoreCase(@Nullable String pattern, @Nullable String str) {
|
public static boolean simpleMatchIgnoreCase(@Nullable String pattern, @Nullable String str) {
|
||||||
return simpleMatch(pattern, str, true);
|
return simpleMatch(pattern, str, true);
|
||||||
|
@ -125,6 +126,7 @@ public abstract class PatternMatchUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
|
* Variant of {@link #simpleMatch(String[], String)} that ignores upper/lower case.
|
||||||
|
* @since 6.1.20
|
||||||
*/
|
*/
|
||||||
public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) {
|
public static boolean simpleMatchIgnoreCase(String @Nullable [] patterns, @Nullable String str) {
|
||||||
if (patterns != null) {
|
if (patterns != null) {
|
||||||
|
|
Loading…
Reference in New Issue