public static enum FilePanel.FileListViewMode extends Enum<FilePanel.FileListViewMode>
Enum Constant and Description |
---|
FLAT
The flat view is the 'historical' one.
|
INDEPENDENT_TREE_VIEW
In independent tree view mode, each added file/folder is added to the root.
|
TREE_VIEW
The map to File System mode, is when the hierarchy is a part of the local file system.
|
Modifier and Type | Method and Description |
---|---|
static FilePanel.FileListViewMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilePanel.FileListViewMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilePanel.FileListViewMode FLAT
public static final FilePanel.FileListViewMode TREE_VIEW
DefaultFileData.getRoot(java.util.List)
public static final FilePanel.FileListViewMode INDEPENDENT_TREE_VIEW
public static FilePanel.FileListViewMode[] values()
for (FilePanel.FileListViewMode c : FilePanel.FileListViewMode.values()) System.out.println(c);
public static FilePanel.FileListViewMode 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 © 2015. All rights reserved.