Enum Class MatchingRule
- All Implemented Interfaces:
Serializable,Comparable<MatchingRule>,Constable
Pull/Push task matching rule.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDelete resource entity.Do not perform any action.Just link resource without performing any (de-)provisioning operation.Unlink resource and delete resource entity.Just unlink resource without performing any (de-)provisioning operation.Update matching entity. -
Method Summary
Modifier and TypeMethodDescriptionstatic StringtoOp(MatchingRule rule) static MatchingRuleReturns the enum constant of this class with the specified name.static MatchingRule[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IGNORE
Do not perform any action. -
UPDATE
Update matching entity. -
DEPROVISION
Delete resource entity. -
UNASSIGN
Unlink resource and delete resource entity. -
UNLINK
Just unlink resource without performing any (de-)provisioning operation. -
LINK
Just link resource without performing any (de-)provisioning operation.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
toOp
-