KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sleepycat > je > ForeignKeyDeleteAction


1 /*-
2  * See the file LICENSE for redistribution information.
3  *
4  * Copyright (c) 2002,2006 Oracle. All rights reserved.
5  *
6  * $Id: ForeignKeyDeleteAction.java,v 1.6 2006/10/30 21:14:12 bostic Exp $
7  */

8
9 package com.sleepycat.je;
10
11 /**
12  * Javadoc for this public class is generated via
13  * the doc templates in the doc_src directory.
14  */

15 public class ForeignKeyDeleteAction {
16
17     private String JavaDoc name;
18
19     private ForeignKeyDeleteAction(String JavaDoc name) {
20     this.name = name;
21     }
22
23     /**
24      * Javadoc for this public class is generated via
25      * the doc templates in the doc_src directory.
26      */

27     public final static ForeignKeyDeleteAction ABORT =
28                     new ForeignKeyDeleteAction("ABORT");
29
30     /**
31      * Javadoc for this public class is generated via
32      * the doc templates in the doc_src directory.
33      */

34     public final static ForeignKeyDeleteAction CASCADE =
35                     new ForeignKeyDeleteAction("CASCADE");
36
37     /**
38      * Javadoc for this public class is generated via
39      * the doc templates in the doc_src directory.
40      */

41     public final static ForeignKeyDeleteAction NULLIFY =
42                     new ForeignKeyDeleteAction("NULLIFY");
43
44     public String JavaDoc toString() {
45     return "ForeignKeyDeleteAction." + name;
46     }
47 }
48
Popular Tags