com.ca.jcs.jndi
Enum JNDIMetaConnector.Vendor

java.lang.Object
  extended by java.lang.Enum<JNDIMetaConnector.Vendor>
      extended by com.ca.jcs.jndi.JNDIMetaConnector.Vendor
All Implemented Interfaces:
Serializable, Comparable<JNDIMetaConnector.Vendor>
Enclosing class:
JNDIMetaConnector

public static enum JNDIMetaConnector.Vendor
extends Enum<JNDIMetaConnector.Vendor>

Vendor's know apriori - there is no reason this list has to be complete but some vendors have been found to be problematic in which case identifying them becomes important so that work-arounds can be put into effect.


Enum Constant Summary
CA
           
IBM
           
MicroSoft
           
Novell
           
Oracle
           
Sun
           
Unknown
           
 
Method Summary
static JNDIMetaConnector.Vendor valueOf(String name)
          Returns the enum constant of this type with the specified name.
static JNDIMetaConnector.Vendor[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, 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 JNDIMetaConnector.Vendor Unknown

CA

public static final JNDIMetaConnector.Vendor CA

IBM

public static final JNDIMetaConnector.Vendor IBM

MicroSoft

public static final JNDIMetaConnector.Vendor MicroSoft

Novell

public static final JNDIMetaConnector.Vendor Novell

Oracle

public static final JNDIMetaConnector.Vendor Oracle

Sun

public static final JNDIMetaConnector.Vendor Sun
Method Detail

values

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

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

valueOf

public static JNDIMetaConnector.Vendor 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
NullPointerException - if the argument is null


Created 2011-07-14 13:27 EST