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

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

package com.iprogrammerr.bright.server.model;

import java.util.List;

public interface Primitives {

	Primitives put(String key, Object value);

	 boolean has(String key, Class clazz);

	boolean booleanValue(String key) throws Exception;

	Number numberValue(String key) throws Exception;

	String stringValue(String key) throws Exception;

	List keyValues();

	boolean isEmpty();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy