Enum EdgeTypeEnum
- java.lang.Object
-
- java.lang.Enum<EdgeTypeEnum>
-
- software.aws.awsprototypingsdk.cdkgraph.EdgeTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<EdgeTypeEnum>
@Generated(value="jsii-pacmak/1.82.0 (build 2d2ddd7)", date="2023-08-24T23:07:44.328Z") @Stability(Experimental) public enum EdgeTypeEnum extends Enum<EdgeTypeEnum>
(experimental) Edge types handles by the graph.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOM(experimental) Custom edge.DEPENDENCY(experimental) CloudFormation dependency edge.REFERENCE(experimental) Reference edge (Ref, Fn::GetAtt, Fn::ImportValue).
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EdgeTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static EdgeTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOM
@Stability(Experimental) public static final EdgeTypeEnum CUSTOM
(experimental) Custom edge.
-
REFERENCE
@Stability(Experimental) public static final EdgeTypeEnum REFERENCE
(experimental) Reference edge (Ref, Fn::GetAtt, Fn::ImportValue).
-
DEPENDENCY
@Stability(Experimental) public static final EdgeTypeEnum DEPENDENCY
(experimental) CloudFormation dependency edge.
-
-
Method Detail
-
values
public static EdgeTypeEnum[] 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 (EdgeTypeEnum c : EdgeTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EdgeTypeEnum 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
-
-