Enum CapabilityResolutionReason
- Object
-
- Enum<CapabilityResolutionReason>
-
- CapabilityResolutionReason
-
- All Implemented Interfaces:
Serializable
,Comparable<CapabilityResolutionReason>
public enum CapabilityResolutionReason extends Enum<CapabilityResolutionReason>
Capability Resolution Reason
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CALL_TYPE_RESTRICTED
Call type restrictedCAPABLE
CapableFEATURE_NOT_SUPPORTED
Feature not supportedMEETING_RESTRICTED
Meeting restrictedNOT_CAPABLE
Not capableNOT_INITIALIZED
Not initializedROLE_RESTRICTED
Role restrictedUSER_POLICY_RESTRICTED
User policy restricted
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CapabilityResolutionReason
valueOf(String name)
Returns the enum constant of this type with the specified name.static CapabilityResolutionReason[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAPABLE
public static final CapabilityResolutionReason CAPABLE
Capable
-
CALL_TYPE_RESTRICTED
public static final CapabilityResolutionReason CALL_TYPE_RESTRICTED
Call type restricted
-
USER_POLICY_RESTRICTED
public static final CapabilityResolutionReason USER_POLICY_RESTRICTED
User policy restricted
-
ROLE_RESTRICTED
public static final CapabilityResolutionReason ROLE_RESTRICTED
Role restricted
-
MEETING_RESTRICTED
public static final CapabilityResolutionReason MEETING_RESTRICTED
Meeting restricted
-
FEATURE_NOT_SUPPORTED
public static final CapabilityResolutionReason FEATURE_NOT_SUPPORTED
Feature not supported
-
NOT_INITIALIZED
public static final CapabilityResolutionReason NOT_INITIALIZED
Not initialized
-
NOT_CAPABLE
public static final CapabilityResolutionReason NOT_CAPABLE
Not capable
-
-
Method Detail
-
values
public static CapabilityResolutionReason[] 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 (CapabilityResolutionReason c : CapabilityResolutionReason.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CapabilityResolutionReason 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
-
-