com.ca.jcs
Enum ObjectClassMapping.SpecialRole
java.lang.Object
java.lang.Enum<ObjectClassMapping.SpecialRole>
com.ca.jcs.ObjectClassMapping.SpecialRole
- All Implemented Interfaces:
- Serializable, Comparable<ObjectClassMapping.SpecialRole>
- Enclosing class:
- ObjectClassMapping
public static enum ObjectClassMapping.SpecialRole
- extends Enum<ObjectClassMapping.SpecialRole>
|
Enum Constant Summary |
Account
Is mapping for account class. |
Connector
Is mapping for top-level connector itself, aka endpoint or directory. |
Account
public static final ObjectClassMapping.SpecialRole Account
- Is mapping for account class.
Connector
public static final ObjectClassMapping.SpecialRole Connector
- Is mapping for top-level connector itself, aka endpoint or directory.
values
public static ObjectClassMapping.SpecialRole[] 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 (ObjectClassMapping.SpecialRole c : ObjectClassMapping.SpecialRole.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ObjectClassMapping.SpecialRole 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