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

com.jdroid.java.http.parser.Parser.kt Maven / Gradle / Ivy

The newest version!
package com.jdroid.java.http.parser

import java.io.InputStream

interface Parser {

    /**
     * Parse the inputStream
     *
     * @param inputStream The inputStream to parse
     * @return The parser response object
     */
    fun parse(inputStream: InputStream): Any?

    /**
     * Parse the String
     *
     * @param input The input to parse
     * @return The parser response object
     */
    fun parse(input: String): Any?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy