org.jboss.dna.common.jdbc.model.api
Enum KeyModifyRuleType

java.lang.Object
  extended by java.lang.Enum<KeyModifyRuleType>
      extended by org.jboss.dna.common.jdbc.model.api.KeyModifyRuleType
All Implemented Interfaces:
Serializable, Comparable<KeyModifyRuleType>

public enum KeyModifyRuleType
extends Enum<KeyModifyRuleType>

Provides RDBMS supported keys update/delete rule types as enumeration set.

Author:
Sergiy Litsenko

Enum Constant Summary
CASCADE
           
NO_ACTION
           
RESTRICT
           
SET_DEFAULT
           
SET_NULL
           
 
Method Summary
 String getName()
           
 int getRule()
           
static KeyModifyRuleType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static KeyModifyRuleType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CASCADE

public static final KeyModifyRuleType CASCADE

RESTRICT

public static final KeyModifyRuleType RESTRICT

SET_NULL

public static final KeyModifyRuleType SET_NULL

NO_ACTION

public static final KeyModifyRuleType NO_ACTION

SET_DEFAULT

public static final KeyModifyRuleType SET_DEFAULT
Method Detail

values

public static final KeyModifyRuleType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(KeyModifyRuleType c : KeyModifyRuleType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static KeyModifyRuleType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name

getRule

public int getRule()

getName

public String getName()


Copyright © 2008-Present JBoss a division of Red Hat. All Rights Reserved.