Class PropertySetDiff
java.lang.Object
com.inductiveautomation.ignition.common.config.PropertySetDiff
- All Implemented Interfaces:
- Countable,- Extendable<PropertySet>,- Mergable<PropertySet>,- MutablePropertyValueSource,- PropertySet,- PropertySetEdit,- PropertyValueSource,- Serializable,- Iterable<PropertyValue>
- Direct Known Subclasses:
- AlarmDefinitionDiff,- BoundPropertySetDiff,- TagDiff
- See Also:
- 
Field SummaryFields inherited from interface com.inductiveautomation.ignition.common.config.PropertySetEMPTY
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidboolean<T> TRetrieves the value of the property, or null if this set doesn't contain that property.intgetCount()For the diff, returns the combined size of modified and removed, so it can be used to see if there are any changes, as the value will be >0.<T> TgetOrDefault(Property<T> prop) <T> TGet the value for a givenProperty, or else fall back to value if it's not present.Collection<Property<?>>protected ObjectCollection<Property<?>>Returns the opaque PropertyValue objects.booleanbooleanisExtended(Property<?> prop) The diff object always returns false for isExtended.booleanisInherited(Property<?> prop) Indicates whether the property was inherited from a parent type.booleanisModified(Property<?> prop) booleaniterator()voidvoidRemoves the property from the modified map, but unlike "remove", doesn't add it to the removed set.<T> voidvoidset(PropertyValue propValue) protected voidtoString()Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface java.lang.IterableforEach, spliteratorMethods inherited from interface com.inductiveautomation.ignition.common.config.MutablePropertyValueSourcemergeMethods inherited from interface com.inductiveautomation.ignition.common.config.PropertySetextend, getExtension, newDefaultInstance, newExtensionMethods inherited from interface com.inductiveautomation.ignition.common.config.PropertyValueSourcegetNonNull, getNonNull
- 
Constructor Details- 
PropertySetDiffpublic PropertySetDiff()
- 
PropertySetDiff
 
- 
- 
Method Details- 
isRemoved
- 
isModified- Specified by:
- isModifiedin interface- PropertySetEdit
 
- 
getModified
- 
revertRemoves the property from the modified map, but unlike "remove", doesn't add it to the removed set.- Specified by:
- revertin interface- PropertySetEdit
 
- 
hasChangespublic boolean hasChanges()
- 
getDescription copied from interface:PropertyValueSourceRetrieves the value of the property, or null if this set doesn't contain that property.- Specified by:
- getin interface- PropertyValueSource
 
- 
getOrDefault- Specified by:
- getOrDefaultin interface- PropertyValueSource
- Returns:
- The value for prop or Property.getDefaultValue()if not present. Can return null if the value is null.
 
- 
getOrElseDescription copied from interface:PropertyValueSourceGet the value for a givenProperty, or else fall back to value if it's not present.- Specified by:
- getOrElsein interface- PropertyValueSource
- Parameters:
- property- The- Propertyfor which a value is to be retrieved.
- value- The value to default to if property isn't present.
- Returns:
- The value of property if present, value if not. Can return null if the value is null.
 
- 
set- Specified by:
- setin interface- MutablePropertyValueSource
 
- 
set- Specified by:
- setin interface- MutablePropertyValueSource
 
- 
setRaw
- 
getRaw
- 
remove- Specified by:
- removein interface- MutablePropertyValueSource
 
- 
contains- Specified by:
- containsin interface- PropertyValueSource
- Returns:
- True if the source contains a value for prop.
 
- 
getCountpublic int getCount()For the diff, returns the combined size of modified and removed, so it can be used to see if there are any changes, as the value will be >0.
- 
getProperties- Specified by:
- getPropertiesin interface- PropertyValueSource
 
- 
getRemoved
- 
getValuesDescription copied from interface:PropertyValueSourceReturns the opaque PropertyValue objects. This can be useful when you want to avoid the strict type checking of the value, and it's important to note that if the property is bound, the value will be a BoundValue. Be very careful about overriding, and make sure to maintain the methodology of using getProperties to iterate and get (or getOrDefault), to get the value, because those are all handled differently by BoundPropertySets, ExtendedPropertySets, etc.- Specified by:
- getValuesin interface- PropertyValueSource
 
- 
iterator- Specified by:
- iteratorin interface- Iterable<PropertyValue>
 
- 
isExtendedThe diff object always returns false for isExtended.- Specified by:
- isExtendedin interface- PropertySet
 
- 
isInheritedDescription copied from interface:PropertySetIndicates whether the property was inherited from a parent type.- Specified by:
- isInheritedin interface- PropertySet
 
- 
toString
- 
compactChangespublic void compactChanges()
 
-