@Generated(value="jsii-pacmak/1.16.0 (build 99a3413)", date="2021-01-13T05:25:59.295Z") @Stability(value=Stable) public enum ConstructOrder extends 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(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.
|
@Stability(value=Stable) public static final ConstructOrder PREORDER
@Stability(value=Stable) public static final ConstructOrder POSTORDER
public static ConstructOrder[] values()
for (ConstructOrder c : ConstructOrder.values()) System.out.println(c);
public static ConstructOrder valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.