is Ogg HTTP Content Type - Android Network

Android examples for Network:HTTP Content Type

Description

is Ogg HTTP Content Type

Demo Code


//package com.java2s;

public class Main {
    public static boolean isOggContentType(String contentType) {
        return contentType.equals("application/ogg")
                || contentType.equals("application/x+ogg");
    }//from   www .  ja  v  a2 s. c  o m
}

Related Tutorials