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

com.qiniu.interfaces.KeyValuePair Maven / Gradle / Ivy

There is a newer version: 8.4.8
Show newest version
package com.qiniu.interfaces;

public interface KeyValuePair {

    void put(K key, String value);

    void put(K key, Integer value);

    void put(K key, Long value);

    Proto getProtoEntity();

    int size();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy