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

serp.bytecode.lowlevel.ConstantEntry Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package serp.bytecode.lowlevel;

/**
 * Interface implemented by entries representing constant values. Allows
 * generic access the constant value regardless of type.
 *
 * @author Abe White
 */
public interface ConstantEntry {
    /**
     * Return the value of the constant held by this entry.
     */
    public Object getConstant();

    /**
     * Set the value of the constant held by this entry.
     */
    public void setConstant(Object value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy