Package org.apache.tomcat.jakartaee
Interface EESpecProfile
-
- All Known Implementing Classes:
EESpecProfiles
public interface EESpecProfile
Used to represent a specification profile.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.String
convert(java.lang.String name)
Convert the specified name to the target namespace.java.util.regex.Pattern
getPattern()
The pattern used for conversion.java.lang.String
getSource()
The source namespace.java.lang.String
getTarget()
The target namespace.
-
-
-
Method Detail
-
convert
default java.lang.String convert(java.lang.String name)
Convert the specified name to the target namespace.- Parameters:
name
- the name to convert- Returns:
- the converted name
-
getSource
java.lang.String getSource()
The source namespace.- Returns:
- the source namespace
-
getTarget
java.lang.String getTarget()
The target namespace.- Returns:
- the target namespace
-
getPattern
java.util.regex.Pattern getPattern()
The pattern used for conversion.- Returns:
- the pattern
-
-