Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for normalizeToken (0.09 seconds)

  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");
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Oct 02 01:46:40 GMT 2025
    - 48K bytes
    - Click Count (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");
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Oct 02 01:46:40 GMT 2025
    - 48K bytes
    - Click Count (0)
Back to Top