Package com.tietoenator.trip.jxp.data
Enum Class TdbSortMergeType
- All Implemented Interfaces:
Serializable
,Comparable<TdbSortMergeType>
,Constable
Used with the TdbRecordSet and TdbSearchSet classes to indicate how
a sorted cluster search should be treated.
- Since:
- TRIPjxp v8.1-2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TdbSortMergeType
Returns the enum constant of this class with the specified name.static TdbSortMergeType[]
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
-
Default
Use a TRIPsystem-determined backward compatible default.The base default is determined by the CCL DEFINE [NO] MERGE in TRIPsystem, where NO MERGE is used unless otherwise stated. There is, when using TRIPjxp, for backward-compatibility purposes a secondary condtion that will override this by always using MERGE if sorting a query executed at the same time as the data retrieval request.
Applications should therefore explicitly use 'Merge' or 'NoMerge' when sorting a database cluster in order to obtain the desired sort order instead of relying on TRIPsystem default.
-
Merge
Combine records from each database in the cluster into a single, merged search result. -
NoMerge
Keep records from each database in the cluster separate in the sorted search result.
-
-
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
-