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

io.nextop.MessageAndroid Maven / Gradle / Ivy

package io.nextop;

import android.net.Uri;

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