Package org.firebrandocm.dao.cql.clauses

Examples of org.firebrandocm.dao.cql.clauses.DropClause


// --------------------- Interface MutationOrSelectionStatement ---------------------


  public String build() {
    DropClause clause = clauses.get(0);
    String type = TYPES.get(clause.getClass());
    if (type == null) {
      throw new IllegalArgumentException(String.format("%s not on accepted types list", clause.getClass()));
    }
    return String.format("DROP %s %s;", type, StringUtils.join(clauses, ' '));
  }
View Full Code Here

TOP

Related Classes of org.firebrandocm.dao.cql.clauses.DropClause

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.