com.atlassian.crowd.model.directory
Enum DirectoryType

java.lang.Object
  extended by java.lang.Enum<DirectoryType>
      extended by com.atlassian.crowd.model.directory.DirectoryType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DirectoryType>

public enum DirectoryType
extends java.lang.Enum<DirectoryType>

Tracks the various implementation types of a RemoteDirectory.


Enum Constant Summary
CONNECTOR
           
CUSTOM
           
DELEGATING
           
INTERNAL
           
UNKNOWN
           
 
Method Summary
static DirectoryType fromCode(long code)
           
 long getCode()
          Gets the current code for the directory type.
static java.util.List getDirectoryTypes()
           
static DirectoryType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DirectoryType[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWN

public static final DirectoryType UNKNOWN

INTERNAL

public static final DirectoryType INTERNAL

CONNECTOR

public static final DirectoryType CONNECTOR

CUSTOM

public static final DirectoryType CUSTOM

DELEGATING

public static final DirectoryType DELEGATING
Method Detail

values

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

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

valueOf

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

getCode

public long getCode()
Gets the current code for the directory type.

Returns:
The code.

getDirectoryTypes

public static java.util.List getDirectoryTypes()

fromCode

public static DirectoryType fromCode(long code)


Copyright © 2009 Atlassian Pty Ltd. All Rights Reserved.