Enum MatchingRule

    • Enum Constant Detail

      • IGNORE

        public static final MatchingRule IGNORE
        Do not perform any action.
      • UPDATE

        public static final MatchingRule UPDATE
        Update matching entity.
      • DEPROVISION

        public static final MatchingRule DEPROVISION
        Delete resource entity.
      • UNASSIGN

        public static final MatchingRule UNASSIGN
        Unlink resource and delete resource entity.
      • UNLINK

        public static final MatchingRule UNLINK
        Just unlink resource without performing any (de-)provisioning operation.
      • LINK

        public static final MatchingRule LINK
        Just link resource without performing any (de-)provisioning operation.
    • Method Detail

      • values

        public static MatchingRule[] 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 (MatchingRule c : MatchingRule.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MatchingRule 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 name
        NullPointerException - if the argument is null