Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for urlEscaper (0.05 sec)

  1. android/guava/src/com/google/common/net/UrlEscapers.java

     * com.google.common.xml.XmlEscapers}.
     *
     * @author David Beaumont
     * @author Chris Povirk
     * @since 15.0
     */
    @GwtCompatible
    public final class UrlEscapers {
      private UrlEscapers() {}
    
      // For each xxxEscaper() method, please add links to external reference pages
      // that are considered authoritative for the behavior of that escaper.
    
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-21 03:10
    - 7.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/UrlEscapersTest.java

    import static com.google.common.net.UrlEscaperTesting.assertPathEscaper;
    import static com.google.common.net.UrlEscapers.urlFormParameterEscaper;
    import static com.google.common.net.UrlEscapers.urlFragmentEscaper;
    import static com.google.common.net.UrlEscapers.urlPathSegmentEscaper;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.UnicodeEscaper;
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 2.7K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/net/UrlEscapersTest.java

    import static com.google.common.net.UrlEscaperTesting.assertPathEscaper;
    import static com.google.common.net.UrlEscapers.urlFormParameterEscaper;
    import static com.google.common.net.UrlEscapers.urlFragmentEscaper;
    import static com.google.common.net.UrlEscapers.urlPathSegmentEscaper;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.UnicodeEscaper;
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 2.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/net/UrlEscaperTesting.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.UnicodeEscaper;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Testing utilities for {@link UrlEscapers} and {@link LegacyUrlEscapersTest}.
     *
     * @author David Beaumont
     */
    @GwtCompatible
    @NullUnmarked
    final class UrlEscaperTesting {
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 3.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/net/UrlEscaperTesting.java

    import com.google.common.annotations.GwtCompatible;
    import com.google.common.escape.UnicodeEscaper;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Testing utilities for {@link UrlEscapers} and {@link LegacyUrlEscapersTest}.
     *
     * @author David Beaumont
     */
    @GwtCompatible
    @NullUnmarked
    final class UrlEscaperTesting {
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-19 18:03
    - 3.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/PercentEscaper.java

     * encoding scheme. The set of safe characters (those which remain unescaped) can be specified on
     * construction.
     *
     * <p>This class is primarily used for creating URI escapers in {@link UrlEscapers} but can be used
     * directly if required. While URI escapers impose specific semantics on which characters are
     * considered 'safe', this class has a minimal set of restrictions.
     *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-28 01:26
    - 8.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/net/PercentEscaper.java

     * encoding scheme. The set of safe characters (those which remain unescaped) can be specified on
     * construction.
     *
     * <p>This class is primarily used for creating URI escapers in {@link UrlEscapers} but can be used
     * directly if required. While URI escapers impose specific semantics on which characters are
     * considered 'safe', this class has a minimal set of restrictions.
     *
    Registered: 2025-05-30 12:43
    - Last Modified: 2024-12-28 01:26
    - 8.6K bytes
    - Viewed (0)
Back to top