org.csstudio.data.values
Interface ILongValue

All Superinterfaces:
IValue, java.io.Serializable

public interface ILongValue
extends IValue

A (long) integer value.

ILongValue values go with INumericMetaData

Author:
Kay Kasemir
See Also:
IValue, NumericMetaData

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.csstudio.data.values.IValue
IValue.Format, IValue.Quality
 
Method Summary
 long getValue()
           
 long[] getValues()
           
 
Methods inherited from interface org.csstudio.data.values.IValue
format, format, getMetaData, getQuality, getSeverity, getStatus, getTime
 

Method Detail

getValues

long[] getValues()
Returns:
Returns the whole array of values.

getValue

long getValue()
Returns:
Returns the first array element.

Since most samples are probably scalars, this is a convenient way to get that one and only element.

See Also:
getValues()