org.sql.generation.api.grammar.manipulation
Class DropBehaviour

java.lang.Object
  extended by org.sql.generation.api.grammar.manipulation.DropBehaviour

public final class DropBehaviour
extends java.lang.Object

The drop behaviour for generalized DROP statement. Typically one of CASCADE or RESTRICT.

Author:
Stanislav Muhametsin
See Also:
DropStatement

Field Summary
static DropBehaviour CASCADE
          The drop behaviour which means to CASCADE the DROP through all depending elements.
static DropBehaviour RESTRICT
          The drop behaviour which means to RESTRICT the DROP if any elements depend on the object to be dropped.
 
Constructor Summary
DropBehaviour()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CASCADE

public static final DropBehaviour CASCADE
The drop behaviour which means to CASCADE the DROP through all depending elements.


RESTRICT

public static final DropBehaviour RESTRICT
The drop behaviour which means to RESTRICT the DROP if any elements depend on the object to be dropped.

Constructor Detail

DropBehaviour

public DropBehaviour()


Copyright © 2010. All Rights Reserved.