Class DiffOptions
- java.lang.Object
-
- org.apache.subversion.javahl.types.DiffOptions
-
public class DiffOptions extends java.lang.ObjectOptions that control the output ofISVNClient#diff.- Since:
- 1.8
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDiffOptions.Flag
-
Field Summary
Fields Modifier and Type Field Description private intflags
-
Constructor Summary
Constructors Constructor Description DiffOptions(DiffOptions.Flag... flagset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetGitFormat()booleangetIgnoreEOLStyle()booleangetIgnoreSpaceChange()booleangetIgnoreWhitespace()booleangetShowFunction()
-
-
-
Constructor Detail
-
DiffOptions
public DiffOptions(DiffOptions.Flag... flagset)
- Parameters:
flagset- any combination of the Flag enumeration values.
-
-
Method Detail
-
getIgnoreWhitespace
public boolean getIgnoreWhitespace()
- Returns:
- whether IgnoreWhitespace is enabled
-
getIgnoreSpaceChange
public boolean getIgnoreSpaceChange()
- Returns:
- whether IgnoreSpaceChange is enabled
-
getIgnoreEOLStyle
public boolean getIgnoreEOLStyle()
- Returns:
- whether IgnoreEOLStyle is enabled
-
getShowFunction
public boolean getShowFunction()
- Returns:
- whether ShowFunction is enabled
-
getGitFormat
public boolean getGitFormat()
- Returns:
- whether GitFormat is enabled
-
-