
org.yatech.jedis.utils.lua.LuaCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis-utils Show documentation
Show all versions of jedis-utils Show documentation
'Utilities for common tasks using Jedis (Java Redis client)'
The newest version!
package org.yatech.jedis.utils.lua;
import org.yatech.jedis.utils.lua.ast.LuaAstBooleanExpression;
/**
* Created by Yinon Avraham on 11/09/2015.
*/
public class LuaCondition implements LuaValue {
private final LuaAstBooleanExpression expression;
LuaCondition(LuaAstBooleanExpression expression) {
this.expression = expression;
}
LuaAstBooleanExpression getExpression() {
return expression;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy