Class ArrayIndex
- java.lang.Object
-
- com.inductiveautomation.ignition.common.ArrayIndex
-
- All Implemented Interfaces:
java.io.Serializable
public class ArrayIndex extends java.lang.Object implements java.io.Serializable
A simple structure that holds an index into a single or double column array.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArrayIndex(int row)
ArrayIndex(int row, int col)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description QualifiedValue
extractValue(QualifiedValue value)
int
getCol()
int
getRow()
boolean
hasCol()
static ArrayIndex
parse(java.lang.String value)
A very simple parse mechanism.
-
-
-
Method Detail
-
getRow
public int getRow()
-
getCol
public int getCol()
-
hasCol
public boolean hasCol()
-
parse
public static ArrayIndex parse(java.lang.String value)
A very simple parse mechanism. Allows: "[x]", "[x,y]", "x", "x,y"
-
extractValue
public QualifiedValue extractValue(QualifiedValue value)
-
-