Enum Class TdbTripFeature
- All Implemented Interfaces:
Serializable
,Comparable<TdbTripFeature>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSupport for retrieving all the design for all accessible databases in one single request rather than over one request per design.The assignment of names of ASE routines to call when updating or inserting a record.Support for the creation of databases for TRIPcof import connectors.Support for the information on the actual database or cluster associated with each search history detail entry.Support for did-you-mean suggestions when using the FUZZ command in CCL.Extract text from data already stored in a STRING field without supplying a new (or the same) STRING field value to the TdbTextExtractionInfo instance.Support for baseline values with facets.Support for TdbFieldFetchType.FocusMergeParts, TdbFieldFetchType.ExtractMergeParts, TdbFieldFetchType.FocusOrExtractMergeParts flagsProvide name of field containing name of file to convert to HTML.Support for retrieval of output format reports as TdbTextField instances.Support for defining retrieval template using fully qualified namesGraph database functionality.Support for JSON storage in TRIPxml.Kernel support for facet baselines.Support for login tickets.Support for on-demand and multiple, concurrent term lists.Search comforters make it possible to get regular notifications from the server for lengthy queries, and also enables applications to abort such queries.Support for session-specific server-side API and XPI logging.Copy a record utilizing a server-side routine instead of routing all data via the client.Retrieve large binary values in smaller chunks instead of all in one go.Send large binary values to the server in smaller chunks instead of all in one go. -
Method Summary
Modifier and TypeMethodDescriptionstatic TdbTripFeature
Returns the enum constant of this class with the specified name.static TdbTripFeature[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
CommitAse
The assignment of names of ASE routines to call when updating or inserting a record.- Since:
- TRIPsystem 6.2-4
- See Also:
-
DidYouMean
Support for did-you-mean suggestions when using the FUZZ command in CCL.- Since:
- TRIPsystem 6.2-0
- See Also:
-
FilenameForHtmlConversion
Provide name of field containing name of file to convert to HTML.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.
-
OnDemandTermLists
Support for on-demand and multiple, concurrent term lists.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.
- Since:
- TRIPsystem 7.0-0
-
SearchComforters
Search comforters make it possible to get regular notifications from the server for lengthy queries, and also enables applications to abort such queries.- Since:
- TRIPsystem 6.2-8
- See Also:
-
StreamingDownload
Retrieve large binary values in smaller chunks instead of all in one go.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.
- Since:
- TRIPsystem 6.2-9:7
-
StreamingUpload
Send large binary values to the server in smaller chunks instead of all in one go.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.
- Since:
- TRIPsystem 6.2-9:20 and 7.0-0:4
-
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.This feature may be enabled in the TdbTextExtractionInfo class if the server supports this feature.
- Since:
- TRIPsystem 6.2-9:20 and 7.0.0-4
- See Also:
-
ServerSideRecordCopying
Copy a record utilizing a server-side routine instead of routing all data via the client.- Since:
- TRIPsystem 7.0-4
- See Also:
-
GraphDatabases
Graph database functionality.The graph package depends on this functionality, as does graph-related functionality in the data and database packages.
- Since:
- TRIPsystem 7.1-0
-
FQNameTemplateRetrieval
Support for defining retrieval template using fully qualified names- Since:
- TRIPsystem 7.2-0
-
FetchMergeParts
Support for TdbFieldFetchType.FocusMergeParts, TdbFieldFetchType.ExtractMergeParts, TdbFieldFetchType.FocusOrExtractMergeParts flags- Since:
- TRIPsystem 7.2-0
-
FacetBaseline
Support for baseline values with facets.- Since:
- TRIPsystem 7.2-1
-
DatabaseInSearchHistory
Support for the information on the actual database or cluster associated with each search history detail entry.- Since:
- TRIPsystem 7.2-1
-
JsonStorage
Support for JSON storage in TRIPxml.- Since:
- TRIPsystem 8.0
-
FormattedValueFields
Support for retrieval of output format reports as TdbTextField instances. Requested via TdbFieldFetchType.FormattedValue and TdbFieldTemplate.- Since:
- TRIPsystem 8.0
-
KernelFacetBaselines
Kernel support for facet baselines.- Since:
- TRIPsystem 8.0-0
-
ConnectorDatabases
Support for the creation of databases for TRIPcof import connectors.- Since:
- TRIPsystem 8.0-0
-
LoginTickets
Support for login tickets.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.
- Since:
- TRIPsystem 8.0-0
-
BulkDatabaseDesignFetch
Support for retrieving all the design for all accessible databases in one single request rather than over one request per design.- Since:
- TRIPsystem 8.2-4
-
ServerSessionLogging
Support for session-specific server-side API and XPI logging.- Since:
- TRIPsystem 8.2-4
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-