Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for normalizeToken (0.05 sec)

  1. guava/src/com/google/common/net/MediaType.java

          String type, String subtype, Multimap<String, String> parameters) {
        checkNotNull(type);
        checkNotNull(subtype);
        checkNotNull(parameters);
        String normalizedType = normalizeToken(type);
        String normalizedSubtype = normalizeToken(subtype);
        checkArgument(
            !normalizedType.equals(WILDCARD) || normalizedSubtype.equals(WILDCARD),
            "A wildcard type cannot be used with a non-wildcard subtype");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/MediaType.java

          String type, String subtype, Multimap<String, String> parameters) {
        checkNotNull(type);
        checkNotNull(subtype);
        checkNotNull(parameters);
        String normalizedType = normalizeToken(type);
        String normalizedSubtype = normalizeToken(subtype);
        checkArgument(
            !normalizedType.equals(WILDCARD) || normalizedSubtype.equals(WILDCARD),
            "A wildcard type cannot be used with a non-wildcard subtype");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top