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

com.king.platform.net.http.Headers Maven / Gradle / Ivy

There is a newer version: 3.0.26
Show newest version
package com.king.platform.net.http;


import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;

public interface Headers {
	String get(CharSequence name);

	List getAll(CharSequence name);

	List> entries();

	boolean contains(CharSequence name);

	int size();

	Set names();

	Iterator> iterator();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy