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

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

public enum ColumnPseudoType
extends Enum<ColumnPseudoType>

Provides RDBMS supported best row identifier pseudo types as enumeration set.

Author:
Sergiy Litsenko

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

UNKNOWN

public static final ColumnPseudoType UNKNOWN

NOT_PSEUDO

public static final ColumnPseudoType NOT_PSEUDO

PSEUDO

public static final ColumnPseudoType PSEUDO
Method Detail

values

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

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

valueOf

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

getType

public int getType()

getName

public String getName()


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