Package com.technia.dsx.threedspace.doc
Enum Class UpdateAction
- All Implemented Interfaces:
com.technia.dsx.EnumType
,Serializable
,Comparable<UpdateAction>
,Constable
- 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 ConstantsEnum ConstantDescriptionConnect 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 TypeMethodDescriptionstatic UpdateAction
fromString
(String str) static UpdateAction
fromString
(String str, UpdateAction defaultValue) static UpdateAction
Returns the enum constant of this class with the specified name.static UpdateAction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface com.technia.dsx.EnumType
getConstantAliases
-
Enum Constant Details
-
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
Create the specified resource/object. -
MODIFY
Modify the specified resource/object. -
DELETE
Delete the specified resource/object. -
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
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
Revises the specified resource/object
-
-
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
-
fromString
-
fromString
-