public enum ContactSource extends java.lang.Enum<ContactSource>
| Enum Constant and Description |
|---|
ACTIVE_DIRECTORY
Active directory.
|
NONE
None.
|
STORE
Store.
|
| Modifier and Type | Method and Description |
|---|---|
static ContactSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContactSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactSource ACTIVE_DIRECTORY
public static final ContactSource STORE
public static final ContactSource NONE
public static ContactSource[] values()
for (ContactSource c : ContactSource.values()) System.out.println(c);
public static ContactSource 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