Class ArrayIndex
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.ArrayIndex
 
- 
- All Implemented Interfaces:
- SubIndex,- java.io.Serializable
 
 public class ArrayIndex extends java.lang.Object implements SubIndex A simple structure that holds an index into a single or double column array.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ArrayIndex(int row)ArrayIndex(int row, int col)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)QualifiedValueextractValue(java.lang.Object source)Pulls the value out of a qualified value.java.lang.Class<?>getClass(java.lang.Object object)Returns the class associated at the location for this ArrayIndexintgetCol()intgetRow()booleanhasCol()inthashCode()static booleanisArrayIndex(java.lang.String value)booleanisCompatible(java.lang.Class<?> dataClazz)Returns whether this sub index can be used with the incoming value type.static ArrayIndexparse(java.lang.String value)A very simple parse mechanism.java.lang.StringtoEncodedString()Returns the index in a way that can be appended to a path.QualityCodeupdateValue(java.lang.Object sourceValue, java.lang.Object elementValue)
 
- 
- 
- 
Method Detail- 
isArrayIndexpublic static boolean isArrayIndex(java.lang.String value) 
 - 
getRowpublic int getRow() 
 - 
getColpublic int getCol() 
 - 
hasColpublic boolean hasCol() 
 - 
parsepublic static ArrayIndex parse(java.lang.String value) A very simple parse mechanism. Allows: "[x]", "[x,y]", "x", "x,y"
 - 
getClass@Nullable public java.lang.Class<?> getClass(java.lang.Object object) Returns the class associated at the location for this ArrayIndex
 - 
isCompatiblepublic boolean isCompatible(java.lang.Class<?> dataClazz) Description copied from interface:SubIndexReturns whether this sub index can be used with the incoming value type.- Specified by:
- isCompatiblein interface- SubIndex
 
 - 
extractValuepublic QualifiedValue extractValue(java.lang.Object source) Description copied from interface:SubIndexPulls the value out of a qualified value. The resulting value will have the same timestamp and quality as the source, unless a new quality is generated as a result of trying to extract the. Returns any errors as quality on the value.- Specified by:
- extractValuein interface- SubIndex
 
 - 
updateValuepublic QualityCode updateValue(java.lang.Object sourceValue, java.lang.Object elementValue) - Specified by:
- updateValuein interface- SubIndex
 
 - 
toEncodedStringpublic java.lang.String toEncodedString() Description copied from interface:SubIndexReturns the index in a way that can be appended to a path. Should return a value that can be read by a static parse function on the implementation.- Specified by:
- toEncodedStringin interface- SubIndex
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 
- 
 
-