Package com.tietoenator.trip.jxp
Enum TdbControlObjectType
- java.lang.Object
-
- java.lang.Enum<TdbControlObjectType>
-
- com.tietoenator.trip.jxp.TdbControlObjectType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TdbControlObjectType>
public enum TdbControlObjectType extends java.lang.Enum<TdbControlObjectType>
Control object type enumeration.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Access
Database, thesaurus, cluster access rightsCategory
Classifcation categoryCluster
Cluster specificationContainer
Classification containerDatabase
Database specificationEntryForm
TRIPclassic / TRIPface entry formField
Field from a databaseGroup
User groupHost
Host on a TRIPgridOutputFormat
Output formatProcedure
Stored procedure or TRIPclassic / TRIPface macroProxyCluster
Proxy cluster specificationProxyClusterMember
Member database from a proxy clusterProxyReplicaSet
TRIPgrid replica setSearchForm
TRIPclassic / TRIPface search formSubsystem
Classification subsystemThesaurus
Thesaurus specificationUnknown
Unknown or undefined control object type.User
User
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Retrieve the TRIPxpi protocol name for this control object type.static TdbControlObjectType
getTypeof(java.lang.String name)
Factory method to return the appropriate type ID from a protocol namestatic TdbControlObjectType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TdbControlObjectType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Unknown
public static final TdbControlObjectType Unknown
Unknown or undefined control object type.
-
Access
public static final TdbControlObjectType Access
Database, thesaurus, cluster access rights
-
ProxyCluster
public static final TdbControlObjectType ProxyCluster
Proxy cluster specification
-
Cluster
public static final TdbControlObjectType Cluster
Cluster specification
-
Database
public static final TdbControlObjectType Database
Database specification
-
EntryForm
public static final TdbControlObjectType EntryForm
TRIPclassic / TRIPface entry form
-
OutputFormat
public static final TdbControlObjectType OutputFormat
Output format
-
Group
public static final TdbControlObjectType Group
User group
-
Host
public static final TdbControlObjectType Host
Host on a TRIPgrid
-
Field
public static final TdbControlObjectType Field
Field from a database
-
ProxyClusterMember
public static final TdbControlObjectType ProxyClusterMember
Member database from a proxy cluster
-
Procedure
public static final TdbControlObjectType Procedure
Stored procedure or TRIPclassic / TRIPface macro
-
ProxyReplicaSet
public static final TdbControlObjectType ProxyReplicaSet
TRIPgrid replica set
-
SearchForm
public static final TdbControlObjectType SearchForm
TRIPclassic / TRIPface search form
-
Thesaurus
public static final TdbControlObjectType Thesaurus
Thesaurus specification
-
User
public static final TdbControlObjectType User
User
-
Category
public static final TdbControlObjectType Category
Classifcation category
-
Container
public static final TdbControlObjectType Container
Classification container
-
Subsystem
public static final TdbControlObjectType Subsystem
Classification subsystem
-
-
Method Detail
-
values
public static TdbControlObjectType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TdbControlObjectType c : TdbControlObjectType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TdbControlObjectType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
Retrieve the TRIPxpi protocol name for this control object type.- Returns:
- Protocol name
-
getTypeof
public static TdbControlObjectType getTypeof(java.lang.String name)
Factory method to return the appropriate type ID from a protocol name- Parameters:
name
- Protocol name- Returns:
- Type ID
-
-