com.qiniu.interfaces.KeyValuePair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.interfaces;
public interface KeyValuePair {
String EMPTY = null;
void putKey(K key, String value);
void put(K key, String value);
void put(K key, Boolean value);
void put(K key, Integer value);
void put(K key, Long value);
Proto getProtoEntity();
int size();
}