Class DelegatePropertySet
java.lang.Object
com.inductiveautomation.ignition.common.config.DelegatePropertySet
- All Implemented Interfaces:
- BoundPropertySet,- Countable,- Extendable<PropertySet>,- Mergable<PropertySet>,- MutablePropertyValueSource,- PropertySet,- PropertyValueSource,- Serializable,- Iterable<PropertyValue>
- Direct Known Subclasses:
- BasicVersionedPropertySet
This implementation of PropertySet simply delegates to a different one. Useful in cases where the target must be
 updated, but the referencing object cannot update that target (in other words, a class holds a propertyset, but some
 other entity must update the target).
- See Also:
- 
Field SummaryFields inherited from interface com.inductiveautomation.ignition.common.config.PropertySetEMPTY
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionboolean<T> TRetrieves the value of the property, or null if this set doesn't contain that property.Collection<Property<?>>getBoundValue(Property<?> prop) intgetCount()<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<?>>Returns the opaque PropertyValue objects.booleanbooleanbooleanisExtended(Property<?> prop) Returns whether this property set contains a value for the prop, and the prop was actually inherited.booleanisInherited(Property<?> prop) Indicates whether the property was inherited from a parent type.iterator()voidmerge(PropertySet other, boolean local) Merges the values from other collection into this one.void<T> voidvoidset(PropertyValue propValue) voidsetBoundValue(Property<?> prop, BoundValue value) voidsetDelegateTarget(PropertySet value) Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inductiveautomation.ignition.common.config.BoundPropertySetextend, getBoundOrDefault, newDefaultInstance, newExtensionMethods inherited from interface java.lang.IterableforEach, spliteratorMethods inherited from interface com.inductiveautomation.ignition.common.config.PropertySetgetExtensionMethods inherited from interface com.inductiveautomation.ignition.common.config.PropertyValueSourcegetNonNull, getNonNull
- 
Constructor Details- 
DelegatePropertySetpublic DelegatePropertySet()
- 
DelegatePropertySet
 
- 
- 
Method Details- 
setDelegateTarget
- 
hasTargetpublic boolean hasTarget()
- 
getTarget
- 
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
 
- 
set- Specified by:
- setin interface- MutablePropertyValueSource
 
- 
contains- Specified by:
- containsin interface- PropertyValueSource
- Returns:
- True if the source contains a value for prop.
 
- 
set- Specified by:
- setin interface- MutablePropertyValueSource
 
- 
iterator- Specified by:
- iteratorin interface- Iterable<PropertyValue>
 
- 
remove- Specified by:
- removein interface- MutablePropertyValueSource
 
- 
getCountpublic int getCount()
- 
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.
 
- 
getProperties- Specified by:
- getPropertiesin interface- PropertyValueSource
 
- 
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- BoundPropertySet
- Specified by:
- getValuesin interface- PropertyValueSource
 
- 
isBound- Specified by:
- isBoundin interface- BoundPropertySet
 
- 
setBoundValue- Specified by:
- setBoundValuein interface- BoundPropertySet
 
- 
getBoundValue- Specified by:
- getBoundValuein interface- BoundPropertySet
 
- 
getBoundProperties- Specified by:
- getBoundPropertiesin interface- BoundPropertySet
 
- 
isExtendedDescription copied from interface:PropertySetReturns whether this property set contains a value for the prop, and the prop was actually inherited. In other words, this is true if the property is inherited, and an override value is present.- Specified by:
- isExtendedin interface- PropertySet
 
- 
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:
- prop- 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.
 
- 
isInheritedDescription copied from interface:PropertySetIndicates whether the property was inherited from a parent type.- Specified by:
- isInheritedin interface- PropertySet
 
- 
mergeDescription copied from interface:MergableMerges the values from other collection into this one. Replaces any currently existing value with those from the other set.- Specified by:
- mergein interface- Mergable<PropertySet>
- Specified by:
- mergein interface- MutablePropertyValueSource
 
 
-