Package org.eclipse.jgit.attributes
Class AttributesRule
- java.lang.Object
-
- org.eclipse.jgit.attributes.AttributesRule
-
public class AttributesRule extends Object
A single attributes rule corresponding to one line in a .gitattributes file. Inspiration from:FastIgnoreRule- Since:
- 3.7
-
-
Constructor Summary
Constructors Constructor Description AttributesRule(String pattern, String attributes)Create a new attribute rule with the given pattern.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleandirOnly()List<Attribute>getAttributes()Returns the attributes.StringgetPattern()booleanisMatch(String relativeTarget, boolean isDirectory)Returnstrueif a match was made.booleanisNameOnly()
-
-
-
Constructor Detail
-
AttributesRule
public AttributesRule(String pattern, String attributes)
Create a new attribute rule with the given pattern. Assumes that the pattern is already trimmed.- Parameters:
pattern- Base pattern for the attributes rule. This pattern will be parsed to generate rule parameters. It can not benull.attributes- the rule attributes. This string will be parsed to read the attributes.
-
-
Method Detail
-
dirOnly
public boolean dirOnly()
- Returns:
- True if the pattern should match directories only
-
getAttributes
public List<Attribute> getAttributes()
Returns the attributes.- Returns:
- an unmodifiable list of attributes (never returns
null)
-
isNameOnly
public boolean isNameOnly()
- Returns:
trueif the pattern is just a file name and not a path
-
getPattern
public String getPattern()
- Returns:
- The blob pattern to be used as a matcher (never returns
null)
-
isMatch
public boolean isMatch(String relativeTarget, boolean isDirectory)
Returnstrueif a match was made.- Parameters:
relativeTarget- Name pattern of the file, relative to the base directory of this ruleisDirectory- Whether the target file is a directory or not- Returns:
- True if a match was made.
-
-