public enum TdbProduct extends java.lang.Enum<TdbProduct>
TdbSession
Enum Constant and Description |
---|
TRIPagent
Crawling and indexing of rich content sources
|
TRIPclass
Classification support
|
TRIPclient
The various client modules some past, some present: TRIPnet, TRIPvbx, TRIP@client, etc.
|
TRIPgrid
TRIPgrid support
|
TRIPhighway
A CGI interface to TRIP
|
TRIPjtk
Java development environments
|
TRIPnlp
Metadata and keyword extraction using TRIPnlp.
|
TRIPruntime
A runtime license which does not support creation of database designs, etc.
|
TRIPsql
SQL interface via ODBC and JDBC
|
TRIPsystem
TRIPsystem, TRIPclassic, TRIPapi, TRIPtoolkit are all part of the basic kernel
|
TRIPview
The document viewer component
|
TRIPviewC
Support for text extraction and HTML conversion via TRIPview-C.
|
TRIPxml
TRIPxml for storage and search of XML documents using XPath
|
Modifier and Type | Method and Description |
---|---|
static TdbProduct |
getProduct(java.lang.String name)
Retrieve the product ID that matches the provided name
|
java.lang.String |
getProductName()
Return the correct product name for the provided product identifier
|
static boolean |
isProduct(java.lang.String name)
Check if the provided name matches this product enumeration
|
static TdbProduct |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbProduct[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbProduct TRIPsystem
public static final TdbProduct TRIPruntime
public static final TdbProduct TRIPhighway
public static final TdbProduct TRIPclient
public static final TdbProduct TRIPview
public static final TdbProduct TRIPxml
public static final TdbProduct TRIPagent
public static final TdbProduct TRIPjtk
public static final TdbProduct TRIPsql
public static final TdbProduct TRIPclass
public static final TdbProduct TRIPgrid
public static final TdbProduct TRIPviewC
public static final TdbProduct TRIPnlp
public static TdbProduct[] values()
for (TdbProduct c : TdbProduct.values()) System.out.println(c);
public static TdbProduct 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 nullpublic static boolean isProduct(java.lang.String name)
name
- The product name to checkpublic static TdbProduct getProduct(java.lang.String name)
name
- The name to matchpublic java.lang.String getProductName()