类 PathSelectors
java.lang.Object
springfox.documentation.builders.PathSelectors
-
方法概要
修饰符和类型方法说明static com.google.common.base.Predicate<String>Predicate that evaluates the supplied ant patternstatic com.google.common.base.Predicate<String>any()Any path satisfies this conditionstatic com.google.common.base.Predicate<String>none()No path satisfies this conditionstatic com.google.common.base.Predicate<String>Predicate that evaluates the supplied regular expression
-
方法详细资料
-
any
Any path satisfies this condition- 返回:
- predicate that is always true
-
none
No path satisfies this condition- 返回:
- predicate that is always false
-
regex
Predicate that evaluates the supplied regular expression- 参数:
pathRegex- - regex- 返回:
- predicate that matches a particular regex
-
ant
Predicate that evaluates the supplied ant pattern- 参数:
antPattern- - ant Pattern- 返回:
- predicate that matches a particular ant pattern
-