public enum ContainerFilter extends java.lang.Enum<ContainerFilter>
ExecuteSqlCommand
and the SelectRowsCommand
.Enum Constant and Description |
---|
AllFolders
All folders to which the user has permission
|
Current
The current container
|
CurrentAndParents
The current container and all of its parent containers
|
CurrentAndSubfolders
The current container and any folders it contains
|
CurrentPlusProject
The current container and the project folder containing it
|
CurrentPlusProjectAndShared
The current container, its project folder and all shared folders
|
Modifier and Type | Method and Description |
---|---|
static ContainerFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContainerFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerFilter Current
public static final ContainerFilter CurrentAndSubfolders
public static final ContainerFilter CurrentPlusProject
public static final ContainerFilter CurrentAndParents
public static final ContainerFilter CurrentPlusProjectAndShared
public static final ContainerFilter AllFolders
public static ContainerFilter[] values()
for (ContainerFilter c : ContainerFilter.values()) System.out.println(c);
public static ContainerFilter 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 null