jet.api
Class TableSpecifieldOption

java.lang.Object
  extended by jet.api.TableSpecifieldOption

public class TableSpecifieldOption
extends java.lang.Object

This class defines the User Defined group's conditions. TableSpecifieldOption contains a set of Special Group Description(SpecifieldDes). This definition will be used if you set the table's group to be sorted by SPECIFIEDORDER.


Constructor Summary
TableSpecifieldOption(java.lang.String otherName)
          Constructor.
TableSpecifieldOption(java.lang.String otherName, java.util.Vector specifieldDescs)
          Constructor.
 
Method Summary
 java.lang.Object clone()
          Create a copy of TableSpecifieldOption.
 java.lang.String getOtherName()
          Gets group name of "Others Group".
 java.util.Vector getSpecifieldDescs()
          Gets group conditions of user defined grouping criteria.
 void setOtherName(java.lang.String otherName)
          Sets group name of "Others Group".
 void setSpecifieldDescs(java.util.Vector specifieldDescs)
          Sets group conditions of user defined grouping criteria.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TableSpecifieldOption

public TableSpecifieldOption(java.lang.String otherName)
Constructor. Creates Information of the table's User Defined group's conditions.

Parameters:
otherName - User defined name for "Others Group". It means keeping values out of the range defined by SpecifieldDes..

TableSpecifieldOption

public TableSpecifieldOption(java.lang.String otherName,
                             java.util.Vector specifieldDescs)
Constructor. Creates Information of the table's User Defined group's conditions

Parameters:
otherName - User defined name for "Others Group". It means keeping values out of the range defined by SpecifieldDes.
specifieldDescs - A set of group conditions of user defined grouping criteria. Each element of this list is a SpecifieldDes.
See Also:
#SpecifieldDes
Method Detail

setOtherName

public void setOtherName(java.lang.String otherName)
Sets group name of "Others Group".

Parameters:
otherName - User defined name for "Others Group". It means keeping values out of the range defined by SpecifieldDes..

getOtherName

public java.lang.String getOtherName()
Gets group name of "Others Group".

Returns:
String value of "Others Group" name.

setSpecifieldDescs

public void setSpecifieldDescs(java.util.Vector specifieldDescs)
Sets group conditions of user defined grouping criteria. Each element of this list is a SpecifieldDes.

Parameters:
specifieldDescs - A set of group conditions of user defined grouping criteria. Each element of this list is a SpecifieldDes.
See Also:
#SpecifieldDes

getSpecifieldDescs

public java.util.Vector getSpecifieldDescs()
Gets group conditions of user defined grouping criteria.

Returns:
The list of group conditions definition. Each element of this list is a SpecifieldDes.

clone

public java.lang.Object clone()
Create a copy of TableSpecifieldOption.

Overrides:
clone in class java.lang.Object
Returns:
a copy of TableSpecifieldOption.
See Also:
Object.clone()