/** * Return node image converted to the normal Oracle form. * * <p>Normally this is uppercase, unless the names is quoted ("name"). */ public String getCanonicalImage() { return PLSQLParser.canonicalName(this.getImage()); }
/** * Convert arbitrary String to normal Oracle format, under assumption that the passed image is an * Oracle name. * * <p>This a helper method for PLSQL classes dependent on SimpleNode, that would otherwise have to * import PLSQParser. * * @param image * @return */ public static String getCanonicalImage(String image) { return PLSQLParser.canonicalName(image); }