Specifies the type of group action to apply to a set of content terms in a Stored Search query.
Namespace:
FileNet.Api.ConstantsAssembly: FileNet.Api (in FileNet.Api.dll)
Syntax
Visual Basic (Declaration) |
---|
<SerializableAttribute> _ Public Enumeration GroupAction |
C# |
---|
[SerializableAttribute] public enum GroupAction |
Visual C++ |
---|
[SerializableAttribute] public enum class GroupAction |
JavaScript |
---|
FileNet.Api.Constants.GroupAction = function(); FileNet.Api.Constants.GroupAction.createEnum('FileNet.Api.Constants.GroupAction', false); |
Members
Type | Member name | Description |
---|---|---|
NONE |
Specifies no group action.
| |
ANY |
Specifies that the group action is an OR condition. If any of the grouped terms are found in the text the condition is satisfied.
| |
ALL |
Specifies that the group action is an AND condition. Only when all of the grouped terms are found in the text is the condition satisfied.
| |
IN |
Specifies a group action based on the in context.
| |
PARAGRAPH |
Specifies a group action based on the paragraph context.
| |
SENTENCE |
Specifies a group action based on the sentence context.
| |
NEAR |
Specifies that the group action is based on proximity, the NEAR condition.
| |
PHRASE |
Specifies a group action based on the phrase context.
| |
UNIT |
Specifies a group action based on the unit context.
| |
VQL |
Specifies the use of the native text query language.
|