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

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

public enum NullabilityType
extends Enum<NullabilityType>

Provides RDBMS supported nullability as enumeration set.

Author:
Sergiy Litsenko

Enum Constant Summary
NO_NULLS
           
NULLABLE
           
UNKNOWN
           
 
Method Summary
 String getName()
           
 int getNullability()
           
static NullabilityType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NullabilityType[] 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

NO_NULLS

public static final NullabilityType NO_NULLS

NULLABLE

public static final NullabilityType NULLABLE

UNKNOWN

public static final NullabilityType UNKNOWN
Method Detail

values

public static final NullabilityType[] 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(NullabilityType c : NullabilityType.values())
    System.out.println(c);

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

valueOf

public static NullabilityType 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

getNullability

public int getNullability()

getName

public String getName()


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