Package org.databene.mad4db.cmd

Examples of org.databene.mad4db.cmd.ConstraintDeletion


  }
 
  @SuppressWarnings({ "unchecked", "rawtypes" })
  public static <E extends DBObject> Deletion<E> deletion(E dbObject) {
    if (dbObject instanceof DBConstraint)
      return (Deletion<E>) new ConstraintDeletion((DBConstraint) dbObject);
    else if (dbObject instanceof DBIndex)
      return (Deletion<E>) new IndexDeletion((DBIndex) dbObject);
    else if (dbObject instanceof DBSequence)
      return (Deletion<E>) new SequenceDeletion((DBSequence) dbObject);
    else
View Full Code Here

TOP

Related Classes of org.databene.mad4db.cmd.ConstraintDeletion

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.