Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createVideoType (0.07 sec)

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

      }
    
      /**
       * Creates a media type with the "video" type and the given subtype.
       *
       * @throws IllegalArgumentException if subtype is invalid
       */
      static MediaType createVideoType(String subtype) {
        return create(VIDEO_TYPE, subtype);
      }
    
      private static String normalizeToken(String token) {
        checkArgument(TOKEN_MATCHER.matchesAllOf(token));
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 02 01:46:40 UTC 2025
    - 48K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/MediaType.java

      }
    
      /**
       * Creates a media type with the "video" type and the given subtype.
       *
       * @throws IllegalArgumentException if subtype is invalid
       */
      static MediaType createVideoType(String subtype) {
        return create(VIDEO_TYPE, subtype);
      }
    
      private static String normalizeToken(String token) {
        checkArgument(TOKEN_MATCHER.matchesAllOf(token));
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Oct 02 01:46:40 UTC 2025
    - 48K bytes
    - Viewed (0)
Back to top