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

org.unix4j.variable.VariableResolver Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.variable;

/**
 * A variable resolver returns a variable value given the name of the variable.
 */
public interface VariableResolver {
	/**
	 * Returns the value currently set for the variable given by its name, or 
	 * null if no such variable exists.
	 * 
	 * @param name
	 *            the variable name
	 * @return the value of the variable, or null if the variable does not exist
	 */
	Object getValue(String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy