public enum HierarchyOperationType extends Enum<HierarchyOperationType>
| Enum Constant and Description |
|---|
_UNKNOWN |
COMPLETE_HIERARCHY |
PATH_TO_ROOT |
SUBORDINATES |
| Modifier and Type | Method and Description |
|---|---|
static HierarchyOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HierarchyOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HierarchyOperationType COMPLETE_HIERARCHY
public static final HierarchyOperationType SUBORDINATES
public static final HierarchyOperationType PATH_TO_ROOT
public static final HierarchyOperationType _UNKNOWN
public static HierarchyOperationType[] values()
for (HierarchyOperationType c : HierarchyOperationType.values()) System.out.println(c);
public static HierarchyOperationType 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 © 2023 ChargeBee. All rights reserved.