Enum NodeTypeEnum
- java.lang.Object
-
- java.lang.Enum<NodeTypeEnum>
-
- software.aws.awsprototypingsdk.cdkgraph.NodeTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<NodeTypeEnum>
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-08-24T23:07:44.472Z") @Stability(Experimental) public enum NodeTypeEnum extends Enum<NodeTypeEnum>
(experimental) Node types handled by the graph.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APP(experimental) Cdk App node.ASSET(experimental) Cdk asset node.CFN_RESOURCE(experimental) L1 cfn resource node.CUSTOM_RESOURCE(experimental) Cdk customer resource node.DEFAULT(experimental) Default node type - used for all nodes that don't have explicit type defined.NESTED_STACK(experimental) Cdk NestedStack node.OUTPUT(experimental) CfnOutput node.PARAMETER(experimental) CfnParameter node.RESOURCE(experimental) L2 cdk resource node.ROOT(experimental) Graph root node.STACK(experimental) Cdk Stack node.STAGE(experimental) Cdk Stage node.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NodeTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static NodeTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
@Stability(Experimental) public static final NodeTypeEnum DEFAULT
(experimental) Default node type - used for all nodes that don't have explicit type defined.
-
CFN_RESOURCE
@Stability(Experimental) public static final NodeTypeEnum CFN_RESOURCE
(experimental) L1 cfn resource node.
-
RESOURCE
@Stability(Experimental) public static final NodeTypeEnum RESOURCE
(experimental) L2 cdk resource node.
-
CUSTOM_RESOURCE
@Stability(Experimental) public static final NodeTypeEnum CUSTOM_RESOURCE
(experimental) Cdk customer resource node.
-
ROOT
@Stability(Experimental) public static final NodeTypeEnum ROOT
(experimental) Graph root node.
-
APP
@Stability(Experimental) public static final NodeTypeEnum APP
(experimental) Cdk App node.
-
STAGE
@Stability(Experimental) public static final NodeTypeEnum STAGE
(experimental) Cdk Stage node.
-
STACK
@Stability(Experimental) public static final NodeTypeEnum STACK
(experimental) Cdk Stack node.
-
NESTED_STACK
@Stability(Experimental) public static final NodeTypeEnum NESTED_STACK
(experimental) Cdk NestedStack node.
-
OUTPUT
@Stability(Experimental) public static final NodeTypeEnum OUTPUT
(experimental) CfnOutput node.
-
PARAMETER
@Stability(Experimental) public static final NodeTypeEnum PARAMETER
(experimental) CfnParameter node.
-
ASSET
@Stability(Experimental) public static final NodeTypeEnum ASSET
(experimental) Cdk asset node.
-
-
Method Detail
-
values
public static NodeTypeEnum[] 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 (NodeTypeEnum c : NodeTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NodeTypeEnum 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 nameNullPointerException- if the argument is null
-
-