Package org.apache.calcite.sql
Class SqlCharStringLiteral
java.lang.Object
org.apache.calcite.sql.SqlNode
org.apache.calcite.sql.SqlLiteral
org.apache.calcite.sql.SqlCharStringLiteral
- All Implemented Interfaces:
- Cloneable
A character string literal.
 
Its SqlLiteral.value field is an NlsString and
 typeName is SqlTypeName.CHAR.
- 
Nested Class SummaryNested classes/interfaces inherited from class org.apache.calcite.sql.SqlLiteralSqlLiteral.SqlSymbol
- 
Field SummaryFields inherited from class org.apache.calcite.sql.SqlLiteralvalueFields inherited from class org.apache.calcite.sql.SqlNodeEMPTY_ARRAY, pos
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionclone(SqlParserPos pos) Clones a SqlNode with a different position.protected org.apache.calcite.sql.SqlAbstractStringLiteralconcat1(List<SqlLiteral> literals) Helper routine forSqlUtil.concatenateLiterals(java.util.List<org.apache.calcite.sql.SqlLiteral>).@Nullable SqlCollationReturns the collation.Deprecated.voidWrites a SQL representation of this node to a writer.Methods inherited from class org.apache.calcite.sql.SqlLiteralaccept, bigDecimalValue, booleanValue, createApproxNumeric, createBinaryString, createBinaryString, createBoolean, createCharString, createCharString, createDate, createDate, createExactNumeric, createInterval, createNegative, createNull, createSample, createSqlType, createSymbol, createTime, createTime, createTime, createTimestamp, createTimestamp, createTimestamp, createTimestamp, createUnknown, createUnknown, createUuid, equals, equalsDeep, getKind, getMonotonicity, getStringValue, getTypeName, getValue, getValueAs, hashCode, intValue, longValue, sampleValue, signum, stringValue, symbolValue, symbolValue_, toValue, unchain, unescapeUnicode, validate, value, valueMatchesTypeMethods inherited from class org.apache.calcite.sql.SqlNodeclone, clone, cloneArray, equalDeep, equalDeep, equalsDeep, findValidOptions, getParserPosition, isA, toList, toList, toSqlString, toSqlString, toSqlString, toString, unparseWithParentheses, validateExpr
- 
Constructor Details- 
SqlCharStringLiteral
 
- 
- 
Method Details- 
getNlsStringDeprecated.Returns the underlying NlsString.
- 
getCollationReturns the collation.
- 
cloneDescription copied from class:SqlNodeClones a SqlNode with a different position.- Overrides:
- clonein class- SqlLiteral
 
- 
unparseDescription copied from class:SqlNodeWrites a SQL representation of this node to a writer.The leftPrecandrightPrecparameters give us enough context to decide whether we need to enclose the expression in parentheses. For example, we need parentheses around "2 + 3" if preceded by "5 *". This is because the precedence of the "*" operator is greater than the precedence of the "+" operator.The algorithm handles left- and right-associative operators by giving them slightly different left- and right-precedence. If SqlWriter.isAlwaysUseParentheses()is true, we use parentheses even when they are not required by the precedence rules.For the details of this algorithm, see SqlCall.unparse(org.apache.calcite.sql.SqlWriter, int, int).- Overrides:
- unparsein class- SqlLiteral
- Parameters:
- writer- Target writer
- leftPrec- The precedence of the- SqlNodeimmediately preceding this node in a depth-first scan of the parse tree
- rightPrec- The precedence of the- SqlNodeimmediately
 
- 
concat1Helper routine forSqlUtil.concatenateLiterals(java.util.List<org.apache.calcite.sql.SqlLiteral>).- Parameters:
- literals- homogeneous StringLiteral args
- Returns:
- StringLiteral with concatenated value. this == lits[0], used only for method dispatch.
 
 
- 
getValueAs(NlsString.class)