public enum EnumerationMode extends java.lang.Enum<EnumerationMode>
Enum Constant and Description |
---|
NOT_RECURSIVE_ALL
Enumerate non recursively the documents and folders contained in a given
folder.
|
NOT_RECURSIVE_DOCUMENTS
Enumerate non recursively the documents contained in a given folder.
|
NOT_RECURSIVE_FOLDERS
Enumerate non recursively the folders contained in a given folder.
|
RECURSIVE_DOCUMENTS
Recursively enumerate all the documents contained in a given folder.
|
Modifier and Type | Method and Description |
---|---|
static EnumerationMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumerationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumerationMode NOT_RECURSIVE_FOLDERS
public static final EnumerationMode NOT_RECURSIVE_DOCUMENTS
public static final EnumerationMode NOT_RECURSIVE_ALL
public static final EnumerationMode RECURSIVE_DOCUMENTS
public static EnumerationMode[] values()
for (EnumerationMode c : EnumerationMode.values()) System.out.println(c);
public static EnumerationMode 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.