BEA Systems, Inc.

WebLogic Server 6.1 API Reference

weblogic.wtc.jatmi
Class QueueTimeField

java.lang.Object
  |
  +--weblogic.wtc.jatmi.QueueTimeField

public class QueueTimeField
extends java.lang.Object
implements java.io.Serializable

This class contains a time value and whether or not this time value is absolute or relative time.

Author:
BEA Systems, Inc.
Copyright © 2001 BEA Systems, Inc. All Rights Reserved.
See Also:
Serialized Form

Constructor Summary
QueueTimeField(int aTime, boolean isRelative)
          This will construct this object with the given time (in seconds).
 
Method Summary
 int getTime()
          Returns the time associated with this object in seconds
 boolean isRelative()
          Returns whether or not the time associated with this object is relative to the current time or is absolute
 java.lang.String toString()
          Returs a string representation of this object
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

QueueTimeField

public QueueTimeField(int aTime,
                      boolean isRelative)
This will construct this object with the given time (in seconds). The time value will be interpreted as absolute time or relative time depending on the isRelative parameter

Parameters:
aTime - The time in seconds an event should occur (dequeue or exiration)
isRelative - If true, the time given is relative to the current time, otherwise the value is to be interpreted as an absolute time
Method Detail

getTime

public int getTime()
Returns the time associated with this object in seconds

Returns:
The time associated with this object in seconds

isRelative

public boolean isRelative()
Returns whether or not the time associated with this object is relative to the current time or is absolute

Returns:
true if the time is relative, false if the time is absolute

toString

public java.lang.String toString()
Returs a string representation of this object

Returns:
A string of the form "time:isRelative"
Overrides:
toString in class java.lang.Object

Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs61

WebLogic classes and methods that do not appear in this reference are not public and are not supported.