Package org.eclipse.jgit.lib
Class ConfigLine
java.lang.Object
org.eclipse.jgit.lib.ConfigLine
A line in a Git
Config
file.-
Field Summary
FieldsModifier and TypeFieldDescription(package private) String
The source from which this line was included from.(package private) String
The key name.(package private) String
The text content before entry.(package private) String
The section name for the entry.(package private) String
Subsection name.(package private) String
The text content after entry.(package private) String
The value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static boolean
eqIgnoreCase
(String a, String b) private static boolean
eqSameCase
(String a, String b) (package private) ConfigLine
(package private) boolean
(package private) boolean
toString()
-
Field Details
-
prefix
String prefixThe text content before entry. -
section
String sectionThe section name for the entry. -
subsection
String subsectionSubsection name. -
name
String nameThe key name. -
value
String valueThe value. -
suffix
String suffixThe text content after entry. -
includedFrom
String includedFromThe source from which this line was included from.
-
-
Constructor Details
-
ConfigLine
ConfigLine()
-
-
Method Details