Enum CapabilitiesChangedReason
- Object
-
- Enum<CapabilitiesChangedReason>
-
- CapabilitiesChangedReason
-
- All Implemented Interfaces:
Serializable
,Comparable<CapabilitiesChangedReason>
public enum CapabilitiesChangedReason extends Enum<CapabilitiesChangedReason>
Reason for capabilities changed
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MEETING_DETAILS_CHANGED
Meeting details changedROLE_CHANGED
Role changedUSER_POLICY_CHANGED
User policy changed
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CapabilitiesChangedReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static CapabilitiesChangedReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ROLE_CHANGED
public static final CapabilitiesChangedReason ROLE_CHANGED
Role changed
-
USER_POLICY_CHANGED
public static final CapabilitiesChangedReason USER_POLICY_CHANGED
User policy changed
-
MEETING_DETAILS_CHANGED
public static final CapabilitiesChangedReason MEETING_DETAILS_CHANGED
Meeting details changed
-
-
Method Detail
-
values
public static CapabilitiesChangedReason[] 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 (CapabilitiesChangedReason c : CapabilitiesChangedReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CapabilitiesChangedReason 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
-
-