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

com.iprogrammerr.bright.server.model.KeysValues Maven / Gradle / Ivy

package com.iprogrammerr.bright.server.model;

import java.util.List;

public interface KeysValues {

     boolean has(String key, Class clazz);

     T value(String key, Class clazz) throws Exception;

    KeysValues add(String key, Object value);

    List keysValues();

    boolean empty();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy