public static enum CategoryTreeContainer.IterationMode extends java.lang.Enum<CategoryTreeContainer.IterationMode>
Enum Constant and Description |
---|
ALL
Does a 'depth-first', recursive iteration returning all category nodes as they are encountered.
|
DRILLDOWN
Flat which drilldown to direct leaves of refined categories
|
FLAT
Flat, non-recursive, vanilla iterator.
|
LEAVES
Like ALL, but only returns the leaves
|
Modifier and Type | Method and Description |
---|---|
static CategoryTreeContainer.IterationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CategoryTreeContainer.IterationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoryTreeContainer.IterationMode FLAT
public static final CategoryTreeContainer.IterationMode DRILLDOWN
public static final CategoryTreeContainer.IterationMode LEAVES
public static final CategoryTreeContainer.IterationMode ALL
public static CategoryTreeContainer.IterationMode[] values()
for (CategoryTreeContainer.IterationMode c : CategoryTreeContainer.IterationMode.values()) System.out.println(c);
public static CategoryTreeContainer.IterationMode 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 nullCopyright © 2021 Dassault Systèmes, All Rights Reserved.