Package com.tietoenator.trip.jxp.ccl
Enum Class TdbKernelWindowType
- All Implemented Interfaces:
Serializable
,Comparable<TdbKernelWindowType>
,Constable
Enumeration of available kernel window types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionResults from Display orders
Applications should use TdbTermList and TdbTermTree to intercept Display results for easier application handling.Results from expanding a focus selectionThe user's search history
Applications should use TdbHistoryDetail objects created by the TdbCclCommand processor instead of this kernel window.Contains the results of Print Local ordersResults from a show or show focus orderSystem information window, contains results from orders such as STatus, FREQuency, MEASure, etc.Not a valid window type -
Method Summary
Modifier and TypeMethodDescriptionstatic TdbKernelWindowType
Returns the enum constant of this class with the specified name.static TdbKernelWindowType[]
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
-
Undefined
Not a valid window type -
Show
Results from a show or show focus order -
Expand
Results from expanding a focus selection -
Display
Results from Display orders
Applications should use TdbTermList and TdbTermTree to intercept Display results for easier application handling. This window type is fully supported, but the contents of the window do not yield to simple processing. -
History
The user's search history
Applications should use TdbHistoryDetail objects created by the TdbCclCommand processor instead of this kernel window. -
SysInfo
System information window, contains results from orders such as STatus, FREQuency, MEASure, etc. -
PrintLocal
Contains the results of Print Local orders
-
-
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
-