Package org.alfresco.service.namespace
Interface QNamePattern
-
- All Known Implementing Classes:
QName
,RegexQNamePattern
@AlfrescoPublicApi public interface QNamePattern
Provides pattern matching againstqnames
.Implementations will use different mechanisms to match against the
namespace
and {@link org.alfresco.service.namespace.QName#getLocalName()() localname}.- Author:
- Derek Hulley
- See Also:
QName
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isMatch(QName qname)
Checks if the given qualified name matches the pattern represented by this instance
-
-
-
Method Detail
-
isMatch
boolean isMatch(QName qname)
Checks if the given qualified name matches the pattern represented by this instance- Parameters:
qname
- the instance to check- Returns:
- Returns true if the qname matches this pattern
-
-