jet.cs.util
Enum APIEnums.ConnectionNamePattern

java.lang.Object
  extended by java.lang.Enum<APIEnums.ConnectionNamePattern>
      extended by jet.cs.util.APIEnums.ConnectionNamePattern
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<APIEnums.ConnectionNamePattern>
Enclosing class:
APIEnums

public static enum APIEnums.ConnectionNamePattern
extends java.lang.Enum<APIEnums.ConnectionNamePattern>

Report Engine jdbc connection Name pattern


Enum Constant Summary
QUALIFIED_2PART
           
QUALIFIED_3PART
           
UNQUALIFIED
           
 
Method Summary
static APIEnums.ConnectionNamePattern valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static APIEnums.ConnectionNamePattern[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

UNQUALIFIED

public static final APIEnums.ConnectionNamePattern UNQUALIFIED

QUALIFIED_2PART

public static final APIEnums.ConnectionNamePattern QUALIFIED_2PART

QUALIFIED_3PART

public static final APIEnums.ConnectionNamePattern QUALIFIED_3PART
Method Detail

values

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

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

valueOf

public static APIEnums.ConnectionNamePattern valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null