Class IdentifierValue
- java.lang.Object
-
- org.apache.shardingsphere.sql.parser.sql.common.value.identifier.IdentifierValue
-
- All Implemented Interfaces:
ASTNode,ValueASTNode<String>
public final class IdentifierValue extends Object implements ValueASTNode<String>
Identifier value.
-
-
Constructor Summary
Constructors Constructor Description IdentifierValue(String text)IdentifierValue(String text, String reservedCharacters)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StringgetQuotedContent(String text)Get quoted content.StringgetValueWithQuoteCharacters()Get value with quote characters, i.e.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.shardingsphere.sql.parser.sql.common.value.ValueASTNode
getValue
-
-
-
-
Method Detail
-
getValueWithQuoteCharacters
public String getValueWithQuoteCharacters()
Get value with quote characters, i.e. `table1` or `field1`- Returns:
- value with quote characters
-
-