Enum Class UpdateAction

java.lang.Object
java.lang.Enum<UpdateAction>
com.technia.dsx.threedspace.doc.UpdateAction
All Implemented Interfaces:
com.technia.dsx.EnumType, Serializable, Comparable<UpdateAction>, Constable

public enum UpdateAction extends Enum<UpdateAction> implements com.technia.dsx.EnumType
Since:
2022-06-10
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Connect a sub resource to the parent resource; can also be specified using CREATE to create the link/connection between the resource and sub resource.
    Create the specified resource/object.
    Delete the specified resource/object.
    Disconnect a sub resource from the parent resource; can also be specified using DELETE to delete the link/connection between the resource and sub resource.
    Modify the specified resource/object.
    No update is performed on the resource object in terms of its data elements; related and children data objects will still be updated based on their update actions.
    Revises the specified resource/object
  • Method Summary

    Modifier and Type
    Method
    Description
     
    fromString(String str, UpdateAction defaultValue)
     
    Returns the enum constant of this class with the specified name.
    static UpdateAction[]
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface com.technia.dsx.EnumType

    getConstantAliases
  • Enum Constant Details

    • NONE

      public static final UpdateAction NONE
      No update is performed on the resource object in terms of its data elements; related and children data objects will still be updated based on their update actions.
    • CREATE

      public static final UpdateAction CREATE
      Create the specified resource/object.
    • MODIFY

      public static final UpdateAction MODIFY
      Modify the specified resource/object.
    • DELETE

      public static final UpdateAction DELETE
      Delete the specified resource/object.
    • CONNECT

      public static final UpdateAction CONNECT
      Connect a sub resource to the parent resource; can also be specified using CREATE to create the link/connection between the resource and sub resource.
    • DISCONNECT

      public static final UpdateAction DISCONNECT
      Disconnect a sub resource from the parent resource; can also be specified using DELETE to delete the link/connection between the resource and sub resource.
    • REVISE

      public static final UpdateAction REVISE
      Revises the specified resource/object
  • Method Details

    • values

      public static UpdateAction[] 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

      public static UpdateAction valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • fromString

      public static UpdateAction fromString(String str)
    • fromString

      public static UpdateAction fromString(String str, UpdateAction defaultValue)