/* Generated By:JJTree: Do not edit this line. ODropClusterStatement.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 ODropClusterStatement extends OStatement { protected OIdentifier name; protected OInteger id; public ODropClusterStatement(int id) { super(id); } public ODropClusterStatement(OrientSql p, int id) { super(p, id); } @Override public void toString(Map<Object, Object> params, StringBuilder builder) { builder.append("DROP CLUSTER "); if(name!=null){ name.toString(params, builder); }else{ id.toString(params, builder); } } } /* JavaCC - OriginalChecksum=239ffe92e79e1d5c82976ed9814583ec (do not edit this line) */