net.sourceforge.pmd.lang.plsql.ast.ASTStringLiteral Maven / Gradle / Ivy
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.plsql.ast;
public final class ASTStringLiteral extends AbstractPLSQLNode {
ASTStringLiteral(int id) {
super(id);
}
@Override
protected R acceptPlsqlVisitor(PlsqlVisitor super P, ? extends R> visitor, P data) {
return visitor.visit(this, data);
}
/**
* Gets the plain string from the string literal.
* @return the plain string value from the string literal.
*/
public String getString() {
String image = getImage();
if (image.charAt(0) == 'N' || image.charAt(0) == 'n') {
image = image.substring(1);
}
if (image.charAt(0) == '\'') {
image = image.substring(1, image.length() - 1);
} else if (image.charAt(0) == 'Q' || image.charAt(0) == 'q') {
image = image.substring("q'x".length(), image.length() - 2);
}
return image;
}
}