org.unlaxer.tinyexpression.evaluator.javacode.ClassNameAndByteCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinyExpression Show documentation
Show all versions of tinyExpression Show documentation
TinyExpression implemented with Unlaxer
package org.unlaxer.tinyexpression.evaluator.javacode;
public interface ClassNameAndByteCode{
public String className();
public byte[] byteCode();
public static ClassNameAndByteCode of(String className , byte[] byteCode) {
return new ClassNameAndByteCode() {
public String className() {return className;}
public byte[] byteCode() {return byteCode;}
};
}
}