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 Summary
Fields inherited from interface com.inductiveautomation.ignition.common.config.PropertySet
EMPTY
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
boolean
<T> T
Retrieves the value of the property, or null if this set doesn't contain that property.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.<T> T
getOrDefault
(Property<T> prop) <T> T
Get the value for a givenProperty
, or else fall back to value if it's not present.Collection<Property<?>>
protected Object
Collection<Property<?>>
Returns the opaque PropertyValue objects.boolean
boolean
isExtended
(Property<?> prop) The diff object always returns false for isExtended.boolean
isInherited
(Property<?> prop) Indicates whether the property was inherited from a parent type.boolean
isModified
(Property<?> prop) boolean
iterator()
void
void
Removes the property from the modified map, but unlike "remove", doesn't add it to the removed set.<T> void
void
set
(PropertyValue propValue) protected void
toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
Methods inherited from interface com.inductiveautomation.ignition.common.config.MutablePropertyValueSource
merge
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertySet
extend, getExtension, newDefaultInstance, newExtension
Methods inherited from interface com.inductiveautomation.ignition.common.config.PropertyValueSource
getNonNull, getNonNull
-
Constructor Details
-
PropertySetDiff
public PropertySetDiff() -
PropertySetDiff
-
-
Method Details
-
isRemoved
-
isModified
- Specified by:
isModified
in interfacePropertySetEdit
-
getModified
-
revert
Removes the property from the modified map, but unlike "remove", doesn't add it to the removed set.- Specified by:
revert
in interfacePropertySetEdit
-
hasChanges
public boolean hasChanges() -
get
Description copied from interface:PropertyValueSource
Retrieves the value of the property, or null if this set doesn't contain that property.- Specified by:
get
in interfacePropertyValueSource
-
getOrDefault
- Specified by:
getOrDefault
in interfacePropertyValueSource
- Returns:
- The value for prop or
Property.getDefaultValue()
if not present. Can return null if the value is null.
-
getOrElse
Description copied from interface:PropertyValueSource
Get the value for a givenProperty
, or else fall back to value if it's not present.- Specified by:
getOrElse
in interfacePropertyValueSource
- Parameters:
property
- TheProperty
for 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:
set
in interfaceMutablePropertyValueSource
-
set
- Specified by:
set
in interfaceMutablePropertyValueSource
-
setRaw
-
getRaw
-
remove
- Specified by:
remove
in interfaceMutablePropertyValueSource
-
contains
- Specified by:
contains
in interfacePropertyValueSource
- Returns:
- True if the source contains a value for prop.
-
getCount
public 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:
getProperties
in interfacePropertyValueSource
-
getRemoved
-
getValues
Description copied from interface:PropertyValueSource
Returns 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:
getValues
in interfacePropertyValueSource
-
iterator
- Specified by:
iterator
in interfaceIterable<PropertyValue>
-
isExtended
The diff object always returns false for isExtended.- Specified by:
isExtended
in interfacePropertySet
-
isInherited
Description copied from interface:PropertySet
Indicates whether the property was inherited from a parent type.- Specified by:
isInherited
in interfacePropertySet
-
toString
-
compactChanges
public void compactChanges()
-