Package org.jsoup.parser
Class ParseSettings
- java.lang.Object
-
- org.jsoup.parser.ParseSettings
-
public class ParseSettings extends java.lang.ObjectControls parser settings, to optionally preserve tag and/or attribute name case.
-
-
Field Summary
Fields Modifier and Type Field Description static ParseSettingshtmlDefaultHTML default settings: both tag and attribute names are lower-cased during parsing.static ParseSettingspreserveCasePreserve both tag and attribute case.
-
Constructor Summary
Constructors Constructor Description ParseSettings(boolean tag, boolean attribute)Define parse settings.
-
-
-
Field Detail
-
htmlDefault
public static final ParseSettings htmlDefault
HTML default settings: both tag and attribute names are lower-cased during parsing.
-
preserveCase
public static final ParseSettings preserveCase
Preserve both tag and attribute case.
-
-