Enum PatchOp

  • All Implemented Interfaces:
    Serializable, Comparable<PatchOp>

    public enum PatchOp
    extends Enum<PatchOp>
    author Pascal Knueppel
    created at: 29.10.2019 - 08:37

    HTTP PATCH is an OPTIONAL server function that enables clients to update one or more attributes of a SCIM resource using a sequence of operations to "add", "remove", or "replace" values.Clients may discover service provider support for PATCH by querying the service provider configuration
    • Enum Constant Detail

      • ADD

        public static final PatchOp ADD
      • REPLACE

        public static final PatchOp REPLACE
      • REMOVE

        public static final PatchOp REMOVE
    • Method Detail

      • values

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

        public static PatchOp 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
      • getByValue

        public static PatchOp getByValue​(String value)