Skip navigation links

Oracle Application Server DMS API Reference
10g Release 3 (10.1.3.1.0)

B28943-01


oracle.dms.table
Interface ColumnGroup

All Superinterfaces:
java.lang.Cloneable, java.lang.Comparable, Name, java.io.Serializable

public interface ColumnGroup
extends Name

ColumnGroup contains information about a group of columns. Each column group has a name, a type, a fixed set of members. Each column group member has a member type. An example of a column group is a DMS PhaseEvent sensor that contains a group of related metrics.

Since:
Oracle Application Server 10g (10.1.3)

Method Summary
 boolean containsMember(java.lang.String name)
          Returns true if this ColumnGroup contains the given member.
 java.util.Enumeration enumerateMemberNames(boolean sorted)
          Enumerates the names of the members in this ColumnGroup.
 java.lang.String getDescription()
          Gets the description of this ColumnGroup.
 java.lang.String[] getMemberNames()
          Returns an array of member names in this ColumnGroup.
 java.lang.String getMemberType(java.lang.String name)
          Gets the type of the given memeber.
 java.lang.String getType()
          Gets the type of this ColumnGroup.
 int memberCount()
          Gets the number of the members in this ColumnGroup.

 

Methods inherited from interface oracle.dms.table.Name
getName

 

Methods inherited from interface java.lang.Comparable
compareTo

 

Method Detail

getType

java.lang.String getType()
Gets the type of this ColumnGroup.
Returns:
the type of this ColumnGroup.
Since:
Oracle Application Server 10g (10.1.3)

getDescription

java.lang.String getDescription()
Gets the description of this ColumnGroup.
Returns:
the description of this ColumnGroup.
Since:
Oracle Application Server 10g (10.1.3)

memberCount

int memberCount()
Gets the number of the members in this ColumnGroup.
Returns:
the number of the members in this ColumnGroup.
Since:
Oracle Application Server 10g (10.1.3)

getMemberType

java.lang.String getMemberType(java.lang.String name)
Gets the type of the given memeber.
Parameters:
name - the name of the member.
Returns:
the type of the given memeber.
Since:
Oracle Application Server 10g (10.1.3)
See Also:
enumerateMemberNames(boolean sorted)

containsMember

boolean containsMember(java.lang.String name)
Returns true if this ColumnGroup contains the given member.
Parameters:
name - the name of the member.
Returns:
true if this ColumnGroup contains the given member.
Since:
Oracle Application Server 10g (10.1.3)

enumerateMemberNames

java.util.Enumeration enumerateMemberNames(boolean sorted)
Enumerates the names of the members in this ColumnGroup.
Parameters:
sorted - true enumerates the names of the members in the acsending order.
Returns:
Enumeration object for enumerating {the names of the members in this ColumnGroup.
Since:
Oracle Application Server 10g (10.1.3)
See Also:
getMemberType(String name)

getMemberNames

java.lang.String[] getMemberNames()
Returns an array of member names in this ColumnGroup.
Returns:
an array of member names in this ColumnGroup.
Since:
Oracle Application Server 10g (10.1.3)

Skip navigation links

Oracle Application Server DMS API Reference
10g Release 3 (10.1.3.1.0)

B28943-01


Copyright © 2004, 2006, Oracle. All Rights Reserved.