org.gradle.api.tasks.util
Class PatternSet

java.lang.Object
  extended by org.gradle.api.tasks.util.PatternSet
All Implemented Interfaces:
org.gradle.api.tasks.AntBuilderAware, PatternFilterable

public class PatternSet
extends Object
implements org.gradle.api.tasks.AntBuilderAware, PatternFilterable

Standalone implementation of PatternFilterable.


Constructor Summary
PatternSet()
           
 
Method Summary
 Object addToAntBuilder(Object node, String childNodeName)
           
 PatternSet copyFrom(PatternFilterable sourcePattern)
           
 boolean equals(Object o)
           
 PatternSet exclude(Closure closure)
          Adds an exclude spec.
 PatternSet exclude(Iterable excludes)
          Adds an ANT style exclude pattern.
 PatternSet exclude(Spec<FileTreeElement> spec)
          Adds an exclude spec.
 PatternSet exclude(String... excludes)
          Adds an ANT style exclude pattern.
 PatternSet excludeSpecs(Iterable<Spec<FileTreeElement>> excludes)
           
 Spec<FileTreeElement> getAsExcludeSpec()
           
 Spec<FileTreeElement> getAsIncludeSpec()
           
 Spec<FileTreeElement> getAsSpec()
           
 Set<String> getExcludes()
          Returns the set of exclude patterns.
 Set<Spec<FileTreeElement>> getExcludeSpecs()
           
 Set<String> getIncludes()
          Returns the set of include patterns.
 Set<Spec<FileTreeElement>> getIncludeSpecs()
           
 int hashCode()
           
 PatternSet include(Closure closure)
          Adds an include spec.
 PatternSet include(Iterable includes)
          Adds an ANT style include pattern.
 PatternSet include(Spec<FileTreeElement> spec)
          Adds an include spec.
 PatternSet include(String... includes)
          Adds an ANT style include pattern.
 PatternSet includeSpecs(Iterable<Spec<FileTreeElement>> includeSpecs)
           
 PatternSet intersect()
           
 boolean isCaseSensitive()
           
 void setCaseSensitive(boolean caseSensitive)
           
 PatternSet setExcludes(Iterable<String> excludes)
          Set the allowable exclude patterns.
 PatternSet setIncludes(Iterable<String> includes)
          Set the allowable include patterns.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

PatternSet

public PatternSet()
Method Detail

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

copyFrom

public PatternSet copyFrom(PatternFilterable sourcePattern)

intersect

public PatternSet intersect()

getAsSpec

public Spec<FileTreeElement> getAsSpec()

getAsIncludeSpec

public Spec<FileTreeElement> getAsIncludeSpec()

getAsExcludeSpec

public Spec<FileTreeElement> getAsExcludeSpec()

getIncludes

public Set<String> getIncludes()
Description copied from interface: PatternFilterable
Returns the set of include patterns.

Specified by:
getIncludes in interface PatternFilterable
Returns:
The include patterns. Returns an empty set when there are no include patterns.

getIncludeSpecs

public Set<Spec<FileTreeElement>> getIncludeSpecs()

setIncludes

public PatternSet setIncludes(Iterable<String> includes)
Description copied from interface: PatternFilterable
Set the allowable include patterns. Note that unlike PatternFilterable.include(Iterable) this replaces any previously defined includes.

Specified by:
setIncludes in interface PatternFilterable
Parameters:
includes - an Iterable providing new include patterns
Returns:
this
See Also:
Pattern Format

include

public PatternSet include(String... includes)
Description copied from interface: PatternFilterable
Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns to be processed.

Specified by:
include in interface PatternFilterable
Parameters:
includes - a vararg list of include patterns
Returns:
this
See Also:
Pattern Format

include

public PatternSet include(Iterable includes)
Description copied from interface: PatternFilterable
Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns to be processed.

Specified by:
include in interface PatternFilterable
Parameters:
includes - a Iterable providing more include patterns
Returns:
this
See Also:
Pattern Format

include

public PatternSet include(Spec<FileTreeElement> spec)
Description copied from interface: PatternFilterable
Adds an include spec. This method may be called multiple times to append new specs. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns or specs to be included.

Specified by:
include in interface PatternFilterable
Parameters:
spec - the spec to add
Returns:
this
See Also:
Pattern Format

getExcludes

public Set<String> getExcludes()
Description copied from interface: PatternFilterable
Returns the set of exclude patterns.

Specified by:
getExcludes in interface PatternFilterable
Returns:
The exclude patterns. Returns an empty set when there are no exclude patterns.

getExcludeSpecs

public Set<Spec<FileTreeElement>> getExcludeSpecs()

setExcludes

public PatternSet setExcludes(Iterable<String> excludes)
Description copied from interface: PatternFilterable
Set the allowable exclude patterns. Note that unlike PatternFilterable.exclude(Iterable) this replaces any previously defined excludes.

Specified by:
setExcludes in interface PatternFilterable
Parameters:
excludes - an Iterable providing new exclude patterns
Returns:
this
See Also:
Pattern Format

isCaseSensitive

public boolean isCaseSensitive()

setCaseSensitive

public void setCaseSensitive(boolean caseSensitive)

includeSpecs

public PatternSet includeSpecs(Iterable<Spec<FileTreeElement>> includeSpecs)

include

public PatternSet include(Closure closure)
Description copied from interface: PatternFilterable
Adds an include spec. This method may be called multiple times to append new specs. The given closure is passed a FileTreeElement as its parameter. If includes are not provided, then all files in this container will be included. If includes are provided, then a file must match at least one of the include patterns or specs to be included.

Specified by:
include in interface PatternFilterable
Parameters:
closure - the spec to add
Returns:
this
See Also:
Pattern Format

exclude

public PatternSet exclude(String... excludes)
Description copied from interface: PatternFilterable
Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed.

Specified by:
exclude in interface PatternFilterable
Parameters:
excludes - a vararg list of exclude patterns
Returns:
this
See Also:
Pattern Format

exclude

public PatternSet exclude(Iterable excludes)
Description copied from interface: PatternFilterable
Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiple patterns may be specified in a single call. If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed.

Specified by:
exclude in interface PatternFilterable
Parameters:
excludes - a Iterable providing new exclude patterns
Returns:
this
See Also:
Pattern Format

exclude

public PatternSet exclude(Spec<FileTreeElement> spec)
Description copied from interface: PatternFilterable
Adds an exclude spec. This method may be called multiple times to append new specs. If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed.

Specified by:
exclude in interface PatternFilterable
Parameters:
spec - the spec to add
Returns:
this
See Also:
Pattern Format

excludeSpecs

public PatternSet excludeSpecs(Iterable<Spec<FileTreeElement>> excludes)

exclude

public PatternSet exclude(Closure closure)
Description copied from interface: PatternFilterable
Adds an exclude spec. This method may be called multiple times to append new specs.The given closure is passed a FileTreeElement as its parameter. The closure should return true or false. Example:
 copySpec {
   from 'source'
   into 'destination'
   //an example of excluding files from certain configuration:
   exclude { it.file in configurations.someConf.files }
 }
 
If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not match any exclude pattern to be processed.

Specified by:
exclude in interface PatternFilterable
Parameters:
closure - the spec to add
Returns:
this
See Also:
FileTreeElement

addToAntBuilder

public Object addToAntBuilder(Object node,
                              String childNodeName)
Specified by:
addToAntBuilder in interface org.gradle.api.tasks.AntBuilderAware