public class IgnoreNode
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
IgnoreNode.MatchResult
Result from
isIgnored(String, boolean). |
| Constructor and Description |
|---|
IgnoreNode()
Create an empty ignore node with no rules.
|
IgnoreNode(java.util.List<IgnoreRule> rules)
Create an ignore node with given rules.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<IgnoreRule> |
getRules() |
IgnoreNode.MatchResult |
isIgnored(java.lang.String entryPath,
boolean isDirectory)
Determine if an entry path matches an ignore rule.
|
void |
parse(java.io.InputStream in)
Parse files according to gitignore standards.
|
public IgnoreNode()
public IgnoreNode(java.util.List<IgnoreRule> rules)
rules - list of rules.public void parse(java.io.InputStream in)
throws java.io.IOException
in - input stream holding the standard ignore format. The caller is
responsible for closing the stream.java.io.IOException - Error thrown when reading an ignore file.public java.util.List<IgnoreRule> getRules()
public IgnoreNode.MatchResult isIgnored(java.lang.String entryPath, boolean isDirectory)
entryPath - the path to test. The path must be relative to this ignore
node's own repository path, and in repository path format
(uses '/' and not '\').isDirectory - true if the target item is a directory.Copyright © 2012. All Rights Reserved.