Package net.fortuna.ical4j.connector.dav
Enum SupportedFeature
- java.lang.Object
-
- java.lang.Enum<SupportedFeature>
-
- net.fortuna.ical4j.connector.dav.SupportedFeature
-
- All Implemented Interfaces:
Serializable
,Comparable<SupportedFeature>
public enum SupportedFeature extends Enum<SupportedFeature>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
description()
static ArrayList<String>
descriptions()
static SupportedFeature
findByDescription(String value)
static SupportedFeature
valueOf(String name)
Returns the enum constant of this type with the specified name.static SupportedFeature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCESS_CONTROL
public static final SupportedFeature ACCESS_CONTROL
-
CALENDAR_ACCESS
public static final SupportedFeature CALENDAR_ACCESS
-
CALENDAR_SCHEDULE
public static final SupportedFeature CALENDAR_SCHEDULE
-
CALENDAR_AUTO_SCHEDULE
public static final SupportedFeature CALENDAR_AUTO_SCHEDULE
-
CALENDAR_AVAILABILITY
public static final SupportedFeature CALENDAR_AVAILABILITY
-
INBOX_AVAILABILITY
public static final SupportedFeature INBOX_AVAILABILITY
-
CALENDAR_PROXY
public static final SupportedFeature CALENDAR_PROXY
-
CALENDARSERVER_PRIVATE_EVENTS
public static final SupportedFeature CALENDARSERVER_PRIVATE_EVENTS
-
CALENDARSERVER_PRIVATE_COMMENTS
public static final SupportedFeature CALENDARSERVER_PRIVATE_COMMENTS
-
CALENDARSERVER_SHARING
public static final SupportedFeature CALENDARSERVER_SHARING
-
CALENDARSERVER_SHARING_NO_SCHEDULING
public static final SupportedFeature CALENDARSERVER_SHARING_NO_SCHEDULING
-
CALENDAR_QUERY_EXTENDED
public static final SupportedFeature CALENDAR_QUERY_EXTENDED
-
CALENDAR_DEFAULT_ALARMS
public static final SupportedFeature CALENDAR_DEFAULT_ALARMS
-
ADDRESSBOOK
public static final SupportedFeature ADDRESSBOOK
-
EXTENDED_MKCOL
public static final SupportedFeature EXTENDED_MKCOL
-
CALENDARSERVER_PRINCIPAL_PROPERTY_SEARCH
public static final SupportedFeature CALENDARSERVER_PRINCIPAL_PROPERTY_SEARCH
-
-
Method Detail
-
values
public static SupportedFeature[] 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 (SupportedFeature c : SupportedFeature.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupportedFeature 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 nameNullPointerException
- if the argument is null
-
description
public String description()
-
findByDescription
public static SupportedFeature findByDescription(String value)
-
-