Interface SQLLiteral
-
- All Known Implementing Classes:
ArrayLiteral,BooleanLiteral,ByteLiteral,CharacterLiteral,CollectionLiteral,EnumLiteral,FloatingPointLiteral,IntegerLiteral,MapLiteral,MapLiteral.MapKeyLiteral,MapLiteral.MapValueLiteral,NullLiteral,ObjectLiteral,ParameterLiteral,SingleCollectionLiteral,StringLiteral,TemporalLiteral,TypeConverterLiteral,TypeConverterMultiLiteral
public interface SQLLiteralRepresentation of an SQL Literal in a query.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetValue()Accessor to the literal valuevoidsetNotParameter()Method to set this literal as not being a parameter.
-
-
-
Method Detail
-
getValue
Object getValue()
Accessor to the literal value- Returns:
- the value of the literal
-
setNotParameter
void setNotParameter()
Method to set this literal as not being a parameter. If the literal if not currently a parameter then does nothing. Updates any underlying SQL to have the value.
-
-