public enum SharingDataType extends java.lang.Enum<SharingDataType>
| Enum Constant and Description |
|---|
CALENDAR
Indicates that the shared folder contains calendar information.
|
CONTACTS
Indicates that the shared folder contains contact information.
|
NONE
None.
|
| Modifier and Type | Method and Description |
|---|---|
static SharingDataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SharingDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharingDataType CALENDAR
public static final SharingDataType CONTACTS
public static final SharingDataType NONE
public static SharingDataType[] values()
for (SharingDataType c : SharingDataType.values()) System.out.println(c);
public static SharingDataType 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