Enum ConnectorCapability
- java.lang.Object
-
- java.lang.Enum<ConnectorCapability>
-
- org.apache.syncope.common.lib.types.ConnectorCapability
-
- All Implemented Interfaces:
Serializable
,Comparable<ConnectorCapability>
public enum ConnectorCapability extends Enum<ConnectorCapability>
Enum of all possible capabilities that a connector instance can expose.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTICATE
CREATE
DELETE
SEARCH
SYNC
UPDATE
UPDATE_DELTA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConnectorCapability
valueOf(String name)
Returns the enum constant of this type with the specified name.static ConnectorCapability[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTHENTICATE
public static final ConnectorCapability AUTHENTICATE
-
CREATE
public static final ConnectorCapability CREATE
-
UPDATE
public static final ConnectorCapability UPDATE
-
UPDATE_DELTA
public static final ConnectorCapability UPDATE_DELTA
-
DELETE
public static final ConnectorCapability DELETE
-
SEARCH
public static final ConnectorCapability SEARCH
-
SYNC
public static final ConnectorCapability SYNC
-
-
Method Detail
-
values
public static ConnectorCapability[] 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 (ConnectorCapability c : ConnectorCapability.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConnectorCapability 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
-
-