Package org.apache.xbean.finder
Class UriSet
- java.lang.Object
-
- org.apache.xbean.finder.UriSet
-
- All Implemented Interfaces:
java.lang.Iterable<java.net.URI>
public class UriSet extends java.lang.Object implements java.lang.Iterable<java.net.URI>
- Version:
- $Rev$ $Date$
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,java.net.URI>
URIs
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UriSet
exclude(java.io.File file)
UriSet
exclude(java.lang.String pattern)
UriSet
exclude(java.net.URI URI)
UriSet
exclude(UriSet URISet)
UriSet
excludePaths(java.lang.String pathString)
UriSet
filter(Filter filter)
java.util.List<java.net.URI>
getURIs()
UriSet
include(java.lang.String pattern)
UriSet
include(java.net.URI URI)
UriSet
include(UriSet URISet)
java.util.Iterator<java.net.URI>
iterator()
UriSet
matching(java.lang.String pattern)
UriSet
relative(java.io.File file)
int
size()
java.lang.String
toString()
-
-
-
Method Detail
-
include
public UriSet include(java.lang.String pattern)
-
include
public UriSet include(java.net.URI URI)
-
exclude
public UriSet exclude(java.net.URI URI)
-
exclude
public UriSet exclude(java.io.File file)
-
exclude
public UriSet exclude(java.lang.String pattern)
-
excludePaths
public UriSet excludePaths(java.lang.String pathString)
-
matching
public UriSet matching(java.lang.String pattern)
-
relative
public UriSet relative(java.io.File file)
-
getURIs
public java.util.List<java.net.URI> getURIs()
-
size
public int size()
-
iterator
public java.util.Iterator<java.net.URI> iterator()
- Specified by:
iterator
in interfacejava.lang.Iterable<java.net.URI>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-