Class Name
java.lang.Object
org.apache.tools.ant.types.resources.selectors.Name
- All Implemented Interfaces:
- ResourceSelector
Name ResourceSelector.
- Since:
- Ant 1.7
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleanWhether the difference between / and \ (the two common directory characters) is ignored.getName()Get the pattern used by this Name ResourceSelector.getRegex()Get the regular expression used by this Name ResourceSelector.booleanLearn whether this Name ResourceSelector is case-sensitive.booleanReturn true if this Resource is selected.voidsetCaseSensitive(boolean b) Set whether the name comparisons are case-sensitive.voidsetHandleDirSep(boolean handleDirSep) Attribute specifying whether to ignore the difference between / and \ (the two common directory characters).voidSet the pattern to compare names against.voidvoidSet the regular expression to compare names against.
- 
Constructor Details- 
Namepublic Name()
 
- 
- 
Method Details- 
setProject
- 
setNameSet the pattern to compare names against.- Parameters:
- n- the pattern String to set.
 
- 
getNameGet the pattern used by this Name ResourceSelector.- Returns:
- the String selection pattern.
 
- 
setRegexSet the regular expression to compare names against.- Parameters:
- r- the regex to set.
- Since:
- Ant 1.8.0
 
- 
getRegexGet the regular expression used by this Name ResourceSelector.- Returns:
- the String selection pattern.
- Since:
- Ant 1.8.0
 
- 
setCaseSensitivepublic void setCaseSensitive(boolean b) Set whether the name comparisons are case-sensitive.- Parameters:
- b- boolean case-sensitivity flag.
 
- 
isCaseSensitivepublic boolean isCaseSensitive()Learn whether this Name ResourceSelector is case-sensitive.- Returns:
- boolean case-sensitivity flag.
 
- 
setHandleDirSeppublic void setHandleDirSep(boolean handleDirSep) Attribute specifying whether to ignore the difference between / and \ (the two common directory characters).- Parameters:
- handleDirSep- a boolean, default is false.
- Since:
- Ant 1.8.0
 
- 
doesHandledirSeppublic boolean doesHandledirSep()Whether the difference between / and \ (the two common directory characters) is ignored.- Returns:
- boolean
- Since:
- Ant 1.8.0
 
- 
isSelectedReturn true if this Resource is selected.- Specified by:
- isSelectedin interface- ResourceSelector
- Parameters:
- r- the Resource to check.
- Returns:
- whether the Resource was selected.
 
 
-