Deprecated API
Contents
-
Deprecated ClassesClassDescriptionfor removal in jsoup 1.23.1. Replace usages with direct constructor references / lambdas.use
Element.selectNodes(String, Class)instead, with selector of::textnodeand classTextNode; will be removed in jsoup 1.24.1.This selector is deprecated and will be removed in jsoup 1.24.1. Migrate to::textnodeusing theElement#selectNodes()method instead.
-
Deprecated FieldsFieldDescriptionNot used anymore; configure parser depth via
Parser.setMaxDepth(int). Will be removed in jsoup 1.24.1.
-
Deprecated MethodsMethodDescriptionuse
Connection.Request.sslContext(SSLContext)instead; will be removed in jsoup 1.24.1.useConnection.Response.readFully()instead (for the checked exception). Will be removed in jsoup 1.24.1.useConnection.sslContext(SSLContext)instead; will be removed in jsoup 1.24.1.prefer to useValidate.expectNotNull(Object, String, Object...)instead; will be removed in jsoup 1.24.1prefer to useValidate.expectNotNull(Object, String, Object...)instead; will be removed in jsoup 1.24.1internal helper; replace withNormalizer.lowerCase(String)for no-trim, orNormalizer.normalize(String)for trim + lowercase. Will be removed in jsoup 1.24.1.internal method; useAttribute.html(String, String, QuietAppendable, Document.OutputSettings)withQuietAppendable.wrap(Appendable)instead. Will be removed in jsoup 1.24.1.internal method; useAttribute.html(String, String, QuietAppendable, Document.OutputSettings)withQuietAppendable.wrap(Appendable)instead. Will be removed in jsoup 1.24.1.internal method; useAttribute.shouldCollapseAttribute(String, String, Document.OutputSettings)instead. Will be removed in jsoup 1.24.1.internal method moved into Printer; will be removed in jsoup 1.24.1.internal pretty-printing flag; useTag.isInline()orTag.isBlock()to check layout intent. Will be removed in jsoup 1.24.1.
-
Deprecated ConstructorsConstructorDescriptionsince 1.22.1, use
AttributeKeyPair(String, String); the previous trimQuoted parameter is no longer used. This constructor will be removed in jsoup 1.24.1.