
org.yatech.jedis.utils.lua.ast.LuaAstArg 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.ast;
/**
* Created by Yinon Avraham on 11/09/2015.
*/
public class LuaAstArg extends LuaAstExpression {
private final String name;
public LuaAstArg(String name) {
this.name = name;
}
public String getName() {
return name;
}
@Override
public void accept(LuaAstVisitor visitor) {
visitor.visit(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy