Class DocumentIndex
- java.lang.Object
 - 
- com.inductiveautomation.ignition.common.DocumentIndex
 
 
- 
- All Implemented Interfaces:
 SubIndex,java.io.Serializable
public class DocumentIndex extends java.lang.Object implements SubIndex
- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description DocumentIndex(JsonPath path) 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)protected java.lang.ObjectextractValue(DocumentElement element)QualifiedValueextractValue(java.lang.Object source)Pulls the value out of a qualified value.JsonPathgetPath()inthashCode()booleanisCompatible(java.lang.Class<?> dataClazz)Returns whether this sub index can be used with the incoming value type.static booleanisDocumentIndex(java.lang.String value)static DocumentIndexparse(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.java.lang.StringtoString()QualityCodeupdateValue(java.lang.Object sourceValue, java.lang.Object elementValue) 
 - 
 
- 
- 
Constructor Detail
- 
DocumentIndex
public DocumentIndex(JsonPath path)
 
 - 
 
- 
Method Detail
- 
isDocumentIndex
public static boolean isDocumentIndex(java.lang.String value)
 
- 
getPath
public JsonPath getPath()
 
- 
parse
public static DocumentIndex parse(java.lang.String value)
A very simple parse mechanism. Allows: "[x]", "[x,y]", "x", "x,y" 
- 
isCompatible
public 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 interfaceSubIndex
 
- 
extractValue
public 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 interfaceSubIndex
 
- 
updateValue
public QualityCode updateValue(java.lang.Object sourceValue, java.lang.Object elementValue)
- Specified by:
 updateValuein interfaceSubIndex
 
- 
extractValue
protected java.lang.Object extractValue(DocumentElement element) throws java.lang.IllegalStateException
- Throws:
 java.lang.IllegalStateException
 
- 
toEncodedString
public 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 interfaceSubIndex
 
- 
toString
public java.lang.String toString()
- Overrides:
 toStringin classjava.lang.Object
 
- 
equals
public boolean equals(java.lang.Object obj)
- Overrides:
 equalsin classjava.lang.Object
 
- 
hashCode
public int hashCode()
- Overrides:
 hashCodein classjava.lang.Object
 
 - 
 
 -