All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class EDU.gatech.cc.is.clay.NodeScalar

java.lang.Object
   |
   +----EDU.gatech.cc.is.clay.Node
           |
           +----EDU.gatech.cc.is.clay.NodeScalar

public abstract class NodeScalar
extends Node
A Node that returns int, double and boolean values.

For detailed information on how to configure behaviors, see the Clay page.

Copyright (c)1997, 1998 Tucker Balch

Version:
$Revision: 1.2 $
Author:
Tucker Balch

Constructor Index

 o NodeScalar()

Method Index

 o booleanValue(long)
Get the boolean value.
 o doubleValue(long)
Get the double value.
 o intValue(long)
Get the int value.

Constructors

 o NodeScalar
 public NodeScalar()

Methods

 o doubleValue
 public abstract double doubleValue(long timestamp)
Get the double value.

Parameters:
timestamp - long indicates time of the request
Returns:
the double value
 o intValue
 public abstract int intValue(long timestamp)
Get the int value.

Parameters:
timestamp - long indicates time of the request
Returns:
the int value
 o booleanValue
 public abstract boolean booleanValue(long timestamp)
Get the boolean value.

Parameters:
timestamp - long indicates time of the request
Returns:
the boolean value

All Packages  Class Hierarchy  This Package  Previous  Next  Index