All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nextop.MessageAndroid Maven / Gradle / Ivy

The newest version!
package io.nextop;

import android.net.Uri;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.HttpResponse;

import javax.annotation.Nullable;
import java.net.URISyntaxException;

public class MessageAndroid {

    public static Message valueOf(Route.Method method, Uri uri) {
        try {
            return Message.valueOf(method, NextopAndroid.toURI(uri));
        } catch (URISyntaxException e) {
            throw new IllegalArgumentException(e);
        }
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy