- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.HexValue
-
- All Implemented Interfaces:
Serializable
,Expression
,Model
,net.sf.jsqlparser.parser.ASTNodeAccess
public class HexValue extends net.sf.jsqlparser.parser.ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(ExpressionVisitor<T> expressionVisitor, S context)
StringValue
getBlob()
String
getDigits()
Long
getLong()
LongValue
getLongValue()
StringValue
getStringValue()
String
getValue()
static byte[]
hexStringToByteArray(String s)
void
setValue(String value)
String
toString()
HexValue
withValue(String value)
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
appendTo, getASTNode, getParent, getParent, setASTNode
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.expression.Expression
accept
-
-
-
-
Constructor Detail
-
HexValue
public HexValue()
-
HexValue
public HexValue(String value)
-
-
Method Detail
-
hexStringToByteArray
public static byte[] hexStringToByteArray(String s)
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
-
getValue
public String getValue()
-
setValue
public void setValue(String value)
-
getDigits
public String getDigits()
-
getLong
public Long getLong()
-
getLongValue
public LongValue getLongValue()
-
getStringValue
public StringValue getStringValue()
-
getBlob
public StringValue getBlob()
-
-