Enum Class LifecycleOperationSection.LifecycleType
java.lang.Object
java.lang.Enum<LifecycleOperationSection.LifecycleType>
software.amazon.smithy.docgen.sections.LifecycleOperationSection.LifecycleType
- All Implemented Interfaces:
Serializable
,Comparable<LifecycleOperationSection.LifecycleType>
,Constable
- Enclosing class:
- LifecycleOperationSection
public static enum LifecycleOperationSection.LifecycleType
extends Enum<LifecycleOperationSection.LifecycleType>
The type of lifecycle binding an operation can use.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIndicates the operation is bound as the resource's create operation.Indicates the operation is bound as the resource's delete operation.Indicates the operation is bound as the resource's list operation.Indicates the operation is bound as the resource's put operation.Indicates the operation is bound as the resource's read operation.Indicates the operation is bound as the resource's update operation. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PUT
Indicates the operation is bound as the resource's put operation. -
CREATE
Indicates the operation is bound as the resource's create operation. -
READ
Indicates the operation is bound as the resource's read operation. -
UPDATE
Indicates the operation is bound as the resource's update operation. -
DELETE
Indicates the operation is bound as the resource's delete operation. -
LIST
Indicates the operation is bound as the resource's list operation.
-
-
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
-