All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsoup.internal.SharedConstants Maven / Gradle / Ivy

Go to download

SDK for dev_appserver (local development) with some of the dependencies shaded (repackaged)

There is a newer version: 2.0.31
Show newest version
package org.jsoup.internal;

/**
 jsoup constants used between packages. Do not use as they may change without warning. Users will not be able to see
 this package when modules are enabled.
 */
public final class SharedConstants {
    public static final String UserDataKey = "/jsoup.userdata";
    public final static String AttrRangeKey = "jsoup.attrs";
    public static final String RangeKey = "jsoup.start";
    public static final String EndRangeKey = "jsoup.end";

    public static final int DefaultBufferSize = 1024 * 32;

    private SharedConstants() {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy