Java org.springframework.util PatternMatchUtils fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.util PatternMatchUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.util PatternMatchUtils.

The text is from its open source code.

Method

booleansimpleMatch(@Nullable String pattern, @Nullable String str)
Match a String against the given pattern, supporting the following simple pattern styles: "xxx*", "*xxx", "*xxx*" and "xxx*yyy" matches (with an arbitrary number of pattern parts), as well as direct equality.
booleansimpleMatch(@Nullable String[] patterns, String str)
Match a String against the given patterns, supporting the following simple pattern styles: "xxx*", "*xxx", "*xxx*" and "xxx*yyy" matches (with an arbitrary number of pattern parts), as well as direct equality.