com.qiniu.interfaces.KeyValuePair Maven / Gradle / Ivy
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();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy