@Generated(value="jsii-pacmak/1.63.2 (build a8a8833)", date="2022-08-17T17:31:08.565Z") public enum ConstructOrder extends java.lang.Enum<ConstructOrder>
Enum Constant and Description |
---|
POSTORDER
Depth-first, post-order (leaf nodes first).
|
PREORDER
Depth-first, pre-order.
|
Modifier and Type | Method and Description |
---|---|
static ConstructOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConstructOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConstructOrder PREORDER
public static final ConstructOrder POSTORDER
public static ConstructOrder[] values()
for (ConstructOrder c : ConstructOrder.values()) System.out.println(c);
public static ConstructOrder valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null