Class Field<T,V,C extends Condition<V>>
- java.lang.Object
- 
- com.inductiveautomation.ignition.common.alarming.query.Field<T,V,C>
 
- 
- Type Parameters:
- T- The type of object that this Field is valid for.
- V- The type of value contained by this field in the target object.
- C- The type of condition used to filter this field.
 - All Implemented Interfaces:
- java.io.Serializable
 - Direct Known Subclasses:
- TagQuery.TagPropertyField
 
 public abstract class Field<T,V,C extends Condition<V>> extends java.lang.Object implements java.io.SerializableA field defines the particular source of data that a condition would apply to.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description Field(java.lang.String name)
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetName()The name of the field, an identifier that can be used to retrieve conditions for specific pieces of data.abstract VgetValueFor(T target)Returns the value of this field from the provided target.inthashCode()java.lang.StringtoString()
 
- 
- 
- 
Method Detail- 
getNamepublic java.lang.String getName() The name of the field, an identifier that can be used to retrieve conditions for specific pieces of data.
 - 
getValueForpublic abstract V getValueFor(T target) Returns the value of this field from the provided target.
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 
- 
 
-