public enum ResolveNamesSearchScope extends java.lang.Enum<ResolveNamesSearchScope>
| Enum Constant and Description |
|---|
ACTIVE_DIRECTORY
Only the Active Directory directory service is searched.
|
ACTIVE_DIRECTORY_CONTACTS
Active Directory is searched first, and then the contact folders that are specified in the ParentFolderIds property are searched.
|
CONTACTS
Only the contact folders that are identified by the ParentFolderIds are searched.
|
CONTACTS_ACTIVE_DIRECTORY
Contact folders that are identified by the ParentFolderIds property are searched first and then Active Directory is searched.
|
NONE
None.
|
| Modifier and Type | Method and Description |
|---|---|
static ResolveNamesSearchScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResolveNamesSearchScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolveNamesSearchScope ACTIVE_DIRECTORY
public static final ResolveNamesSearchScope ACTIVE_DIRECTORY_CONTACTS
public static final ResolveNamesSearchScope CONTACTS
public static final ResolveNamesSearchScope CONTACTS_ACTIVE_DIRECTORY
public static final ResolveNamesSearchScope NONE
public static ResolveNamesSearchScope[] values()
for (ResolveNamesSearchScope c : ResolveNamesSearchScope.values()) System.out.println(c);
public static ResolveNamesSearchScope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null