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

com.github.paganini2008.devtools.http.NameValuePair Maven / Gradle / Ivy

There is a newer version: 2.0.5
Show newest version
package com.github.paganini2008.devtools.http;

import java.io.InputStream;

/**
 * NameValuePair
 * 
 * @author Fred Feng
 * @version 1.0
 */
public interface NameValuePair {

	NameValuePair name(String name);

	String name();

	NameValuePair value(String value);

	String value();

	NameValuePair inputStream(InputStream inputStream);

	InputStream inputStream();

	boolean hasInputStream();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy