java.lang.Object
java.lang.Enum<PatchOp>
de.captaingoldfish.scim.sdk.common.constants.enums.PatchOp
All Implemented Interfaces:
Serializable, Comparable<PatchOp>, java.lang.constant.Constable

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 Details

    • ADD

      public static final PatchOp ADD
    • REPLACE

      public static final PatchOp REPLACE
    • REMOVE

      public static final PatchOp REMOVE
  • Method Details

    • values

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

      public String getValue()