jca.dbr
Class DBData

java.lang.Object
  |
  +--jca.dbr.DBData
Direct Known Subclasses:
DBByte, DBDouble, DBEnum, DBFloat, DBInt, DBShort, DBString

public abstract class DBData
extends java.lang.Object

Abstract base class for Channel Access database primitive types.


Constructor Summary
DBData()
           
 
Method Summary
abstract  byte byteValue()
          Return the value as a byte.
abstract  double doubleValue()
          Return the value as a double.
abstract  float floatValue()
          Return the value as a float.
abstract  int intValue()
          Return the value as an int.
abstract  long longValue()
          Return the value as a long.
abstract  short shortValue()
          Return the value as a short.
abstract  java.lang.String stringValue()
          Return the value as a String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DBData

public DBData()
Method Detail

byteValue

public abstract byte byteValue()
Return the value as a byte.


shortValue

public abstract short shortValue()
Return the value as a short.


intValue

public abstract int intValue()
Return the value as an int.


longValue

public abstract long longValue()
Return the value as a long.


floatValue

public abstract float floatValue()
Return the value as a float.


doubleValue

public abstract double doubleValue()
Return the value as a double.


stringValue

public abstract java.lang.String stringValue()
Return the value as a String.