public class IntersectedAlarmDefinition extends java.lang.Object implements AlarmDefinition
EMPTY| Constructor and Description |
|---|
IntersectedAlarmDefinition(java.util.List<AlarmDefinition> alarms) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(Property<?> prop) |
<T> T |
get(Property<T> prop)
Retrieves the value of the property, or null if this set doesn't contain that property.
|
BoundAlarmProperty |
getBoundProperty(Property<?> property) |
int |
getCount() |
java.lang.String |
getName() |
<T> T |
getOrDefault(Property<T> prop) |
<T> T |
getOrElse(Property<T> property,
T value)
Get the value for a given
Property, or else fall back to value if it's not present. |
java.util.Collection<Property<?>> |
getProperties() |
java.util.List<PropertyValue> |
getValues() |
boolean |
isExtended(Property<?> prop)
Returns whether this property set contains a value for the prop, and the prop was actually inherited.
|
boolean |
isInherited(Property<?> prop)
Indicates whether the property was inherited from a parent type.
|
boolean |
isPropertyBound(Property<?> prop) |
java.util.Iterator<PropertyValue> |
iterator() |
void |
merge(PropertySet other) |
void |
remove(Property<?> prop) |
<T> void |
set(Property<T> prop,
T value) |
void |
set(PropertyValue propValue) |
void |
setBoundProperty(Property<?> property,
BoundAlarmProperty value) |
void |
setName(java.lang.String name) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitbuilder, extend, getExtension, newDefaultInstance, newExtensionmergepublic IntersectedAlarmDefinition(java.util.List<AlarmDefinition> alarms)
public <T> void set(Property<T> prop, T value)
set in interface MutablePropertyValueSourcepublic void set(PropertyValue propValue)
set in interface MutablePropertyValueSourcepublic java.lang.String getName()
getName in interface AlarmDefinitionpublic void setName(java.lang.String name)
setName in interface AlarmDefinitionpublic boolean isPropertyBound(Property<?> prop)
isPropertyBound in interface AlarmDefinitionpublic void setBoundProperty(Property<?> property, BoundAlarmProperty value)
setBoundProperty in interface AlarmDefinitionpublic BoundAlarmProperty getBoundProperty(Property<?> property)
getBoundProperty in interface AlarmDefinitionpublic <T> T get(Property<T> prop)
PropertyValueSourceget in interface PropertyValueSourcepublic void remove(Property<?> prop)
remove in interface MutablePropertyValueSourcepublic <T> T getOrDefault(Property<T> prop)
getOrDefault in interface PropertyValueSourceProperty.getDefaultValue() if not present.public <T> T getOrElse(Property<T> property, T value)
PropertyValueSourceProperty, or else fall back to value if it's not present.getOrElse in interface PropertyValueSourceproperty - The Property for which a value is to be retrieved.value - The value to default to if property isn't present.public java.util.Collection<Property<?>> getProperties()
getProperties in interface PropertyValueSourcepublic java.util.List<PropertyValue> getValues()
getValues in interface PropertyValueSourcepublic boolean contains(Property<?> prop)
contains in interface PropertyValueSourcepublic java.util.Iterator<PropertyValue> iterator()
iterator in interface java.lang.Iterable<PropertyValue>public boolean isExtended(Property<?> prop)
PropertySetisExtended in interface PropertySetpublic boolean isInherited(Property<?> prop)
PropertySetisInherited in interface PropertySetpublic void merge(PropertySet other)
merge in interface Mergable<PropertySet>