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) StringThe source from which this line was included from.(package private) StringThe key name.(package private) StringThe text content before entry.(package private) StringThe section name for the entry.(package private) StringSubsection name.(package private) StringThe text content after entry.(package private) StringThe value. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate static booleaneqIgnoreCase(String a, String b) private static booleaneqSameCase(String a, String b) (package private) ConfigLine(package private) boolean(package private) booleantoString()
-
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