/* Generated By:JJTree: Do not edit this line. OAlterSequenceStatement.java Version 4.3 */ /* JavaCCOptions:MULTI=true,NODE_USES_PARSER=false,VISITOR=true,TRACK_TOKENS=true,NODE_PREFIX=O,NODE_EXTENDS=,NODE_FACTORY=,SUPPORT_CLASS_VISIBILITY_PUBLIC=true */ package com.orientechnologies.orient.core.sql.parser; import java.util.Map; public class ODropSequenceStatement extends OStatement { OIdentifier name; public ODropSequenceStatement(int id) { super(id); } public ODropSequenceStatement(OrientSql p, int id) { super(p, id); } @Override public void toString(Map<Object, Object> params, StringBuilder builder) { builder.append("DROP SEQUENCE "); name.toString(params, builder); } } /* JavaCC - OriginalChecksum=def62b1d04db5223307fe51873a9edd0 (do not edit this line) */