Overview

Contains all of the information required to create ExpertiseSearchClauses from raw search text. Terms are first extracted from the text; clauses are then created based on these terms.

Refer to expertiseSearchClause for more on how clauses are generated. Note that positional information indicating what part of the text each clause was generated from can be returned.

Members

Name Type Required Description

clauseSpec

expertiseClauseGenerationSpec

Optionally specify parameters to control the algorithm by which SearchClauses are generated from one or more Terms.

getPositionalInfo

boolean

If true, positional information indicating where in the text each clause was generated from is returned.

matchLanguage

int

The language(s) bit-mask to limit the search to. Only terms in the specified languages will be considered. Valid values are:
  • ENGLISH (1)
  • FRENCH (2)
  • GERMAN (4)
  • ALL (32767): All languages enabled for the site.

searchText

string

The search text string to generate clauses from.

textLanguage

int

The language(s) bit-mask to apply to the search text. Valid values are:
  • ENGLISH (1)
  • FRENCH (2)
  • GERMAN (4)
  • ALL (32767): All languages enabled for the site.

textSpec

expertiseTextProcessingSpec

Optionally specify parameters to control the algorithm by which Terms are extracted from the text supplied.

Hierarchy

Examples

Below are examples in XML formats. All examples are shown with all inherited members. Quoting when required is part of the examples, but you must obviously populate with your own data.

XML Example

(show inherited members)

<obh:expertiseTextClauseGenParam xsi:type="obh:expertiseTextClauseGenParam" xmlns:obh="http://www.oracle.com/beehive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
        <clauseSpec>your_expertiseClauseGenerationSpec_0</clauseSpec>
        <getPositionalInfo>your_boolean_0</getPositionalInfo>
        <matchLanguage>your_int_0</matchLanguage>
        <searchText>your_string_0</searchText>
        <textLanguage>your_int_0</textLanguage>
        <textSpec>your_expertiseTextProcessingSpec_0</textSpec>
</obh:expertiseTextClauseGenParam>

Referenced By Representaions