Package org.thymeleaf.util
Class PatternSpec
- Object
-
- org.thymeleaf.util.PatternSpec
-
public final class PatternSpec extends Object
Utility class of internal use for holding the patterns that certain artifacts (usually template names) must match for obtaining some consideration. For example, it is used at many
ITemplateResolver
implementations for holding the patterns that match a template to a specific template mode.Note a class with this name existed since 1.0, but it was completely reimplemented in Thymeleaf 3.0
- Since:
- 3.0.0
- Author:
- Daniel Fernández
-
-
Constructor Summary
Constructors Constructor Description PatternSpec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPattern(String pattern)
void
clearPatterns()
Set<String>
getPatterns()
boolean
isEmpty()
boolean
matches(String templateName)
void
setPatterns(Set<String> newPatterns)
-