public interface VNumberArray extends Array, Alarm, Time, Display, VType
This class allows to use any numeric array (i.e. VIntArray
or
VDoubleArray
) through the same interface.
Modifier and Type | Method and Description |
---|---|
org.epics.util.array.ListNumber |
getData()
Return the object containing the array data.
|
List<ArrayDimensionDisplay> |
getDimensionDisplay()
Returns the boundaries of each cell.
|
getAlarmName, getAlarmSeverity
getTimestamp, getTimeUserTag, isTimeValid
getFormat, getLowerAlarmLimit, getLowerCtrlLimit, getLowerDisplayLimit, getLowerWarningLimit, getUnits, getUpperAlarmLimit, getUpperCtrlLimit, getUpperDisplayLimit, getUpperWarningLimit
org.epics.util.array.ListNumber getData()
Array
This method will either return a List
or a ListNumber
depending of the array type. A collection is returned, instead of an
array, so that the type implementation can be immutable or can at
least try to prevent modifications. ListNumber has also several
advantages over the Java arrays, including the ability to iterate the list
regardless of numeric type.
If a numeric array is actually needed, refer to CollectionNumbers
.
List<ArrayDimensionDisplay> getDimensionDisplay()
Copyright © 2010–2015. All rights reserved.