Enum NodeTypeEnum

    • 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 name
        NullPointerException - if the argument is null