Enum EFileQueryGenerator.EFileQueryKind
- java.lang.Object
-
- java.lang.Enum<EFileQueryGenerator.EFileQueryKind>
-
- com.saperion.ngc.resultset.generator.EFileQueryGenerator.EFileQueryKind
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<EFileQueryGenerator.EFileQueryKind>
- Enclosing class:
- EFileQueryGenerator
public static enum EFileQueryGenerator.EFileQueryKind extends java.lang.Enum<EFileQueryGenerator.EFileQueryKind>
Kinds of queries to generate for eFile handling.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOCUMENTS_IN_SUBFOLDERS_IN_STATEMENT
An in-statement with a subselect that selects all folder-IDs of the current folder's subfolders.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EFileQueryGenerator.EFileQueryKind
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static EFileQueryGenerator.EFileQueryKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOCUMENTS_IN_SUBFOLDERS_IN_STATEMENT
public static final EFileQueryGenerator.EFileQueryKind DOCUMENTS_IN_SUBFOLDERS_IN_STATEMENT
An in-statement with a subselect that selects all folder-IDs of the current folder's subfolders.
-
-
Method Detail
-
values
public static EFileQueryGenerator.EFileQueryKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EFileQueryGenerator.EFileQueryKind c : EFileQueryGenerator.EFileQueryKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EFileQueryGenerator.EFileQueryKind valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-