public enum TdbTripFeature extends java.lang.Enum<TdbTripFeature>
Enum Constant and Description |
---|
CommitAse
The assignment of names of ASE routines to call when updating or
inserting a record.
|
ConnectorDatabases
Support for the creation of databases for TRIPcof import connectors.
|
DatabaseInSearchHistory
Support for the information on the actual database or cluster
associated with each search history detail entry.
|
DidYouMean
Support for did-you-mean suggestions when using the FUZZ command in
CCL.
|
ExtractFromStored
Extract text from data already stored in a STRING field without supplying
a new (or the same) STRING field value to the TdbTextExtractionInfo instance.
|
FacetBaseline
Support for baseline values with facets.
|
FetchMergeParts
Support for TdbFieldFetchType.FocusMergeParts, TdbFieldFetchType.ExtractMergeParts, TdbFieldFetchType.FocusOrExtractMergeParts flags
|
FilenameForHtmlConversion
Provide name of field containing name of file to convert to HTML.
|
FormattedValueFields
Support for retrieval of output format reports as TdbTextField
instances.
|
FQNameTemplateRetrieval
Support for defining retrieval template using fully qualified names
|
GraphDatabases
Graph database functionality.
|
JsonStorage
Support for JSON storage in TRIPxml.
|
KernelFacetBaselines
Kernel support for facet baselines.
|
LoginTickets
Support for login tickets.
|
OnDemandTermLists
Support for on-demand and multiple, concurrent term lists.
|
SearchComforters
Search comforters make it possible to get regular notifications
from the server for lengthy queries, and also enables applications to
abort such queries.
|
ServerSideRecordCopying
Copy a record utilizing a server-side routine instead of routing all
data via the client.
|
StreamingDownload
Retrieve large binary values in smaller chunks instead of all in one
go.
|
StreamingUpload
Send large binary values to the server in smaller chunks instead of
all in one go.
|
Modifier and Type | Method and Description |
---|---|
static TdbTripFeature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbTripFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbTripFeature CommitAse
TdbRecord.insertAseList()
,
TdbRecord.updateAseList()
public static final TdbTripFeature DidYouMean
TdbRecordSet.getDidYouMean()
public static final TdbTripFeature FilenameForHtmlConversion
The constructors of the TdbRendition and TdbHighlightRendition can from version 2.1-2 or TRIPjxp take the name of a phrase field that holds the name of the file to convert to HTML.
This information is necessary for TRIPcof and TRIPview-C so that they will better be able to identify the type of the file. If the original file name is not known to the HTML converter, there is a risk that the conversion will fail.
public static final TdbTripFeature OnDemandTermLists
On-demand term lists are retrieved from the server in several smaller chunks, which reduces resource consumption and I/O wait time in siutations with very large term lists. This kind of term list can also be used concurrently so that the application can have more than one active term list at a time.
public static final TdbTripFeature SearchComforters
TdbSession.setNotificationSink(com.tietoenator.trip.jxp.session.TdbNotificationSink)
,
TdbSession.enableNotification(com.tietoenator.trip.jxp.session.TdbNotificationType, boolean)
,
TdbSession.enableNotification(com.tietoenator.trip.jxp.session.TdbNotificationType, int)
public static final TdbTripFeature StreamingDownload
This feature is used automatically if it is supported by the connected server. If the server does not support this feature, retrieveing large files may cause timeout or out of memory exceptions.
public static final TdbTripFeature StreamingUpload
This feature is used automatically by TRIPjxp if it detects that it is supported by the connected server. If the server does not support this feature, sending large files may cause timeout or out of memory exceptions.
public static final TdbTripFeature ExtractFromStored
This feature may be enabled in the TdbTextExtractionInfo class if the server supports this feature.
TdbTextExtractionInfo
public static final TdbTripFeature ServerSideRecordCopying
TdbRecord.copy(java.lang.String)
,
TdbRecord.copy(com.tietoenator.trip.jxp.database.TdbDatabaseDesign)
public static final TdbTripFeature GraphDatabases
The graph package depends on this functionality, as does graph-related functionality in the data and database packages.
public static final TdbTripFeature FQNameTemplateRetrieval
public static final TdbTripFeature FetchMergeParts
public static final TdbTripFeature FacetBaseline
public static final TdbTripFeature DatabaseInSearchHistory
public static final TdbTripFeature JsonStorage
public static final TdbTripFeature FormattedValueFields
public static final TdbTripFeature KernelFacetBaselines
public static final TdbTripFeature ConnectorDatabases
public static final TdbTripFeature LoginTickets
This feature is supported in TRIPsystem since version 8.0-0, but the recommended minimum version is 8.0-4. Also note that the login ticket subsystem must be enabled in TRIPsystem configuration before applications can make use of it.
public static TdbTripFeature[] values()
for (TdbTripFeature c : TdbTripFeature.values()) System.out.println(c);
public static TdbTripFeature 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