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
-
NodeScalar()
-
-
booleanValue(long)
- Get the boolean value.
-
doubleValue(long)
- Get the double value.
-
intValue(long)
- Get the int value.
NodeScalar
public NodeScalar()
doubleValue
public abstract double doubleValue(long timestamp)
- Get the double value.
- Parameters:
- timestamp - long indicates time of the request
- Returns:
- the double value
intValue
public abstract int intValue(long timestamp)
- Get the int value.
- Parameters:
- timestamp - long indicates time of the request
- Returns:
- the int value
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