Package org.openhab.core.voice.text
Record Class Rule.InterpretationContext
java.lang.Object
java.lang.Record
org.openhab.core.voice.text.Rule.InterpretationContext
- Record Components:
itemFilter
- Restricts rule compatibility to allowed items.locationItem
- Location item to prioritize item matches or null.
- Enclosing class:
- Rule
public static record Rule.InterpretationContext(AbstractRuleBasedInterpreter.ItemFilter itemFilter, boolean isForced, boolean isSilent, @Nullable String locationItem)
extends Record
Context for rule execution.
- Author:
- Miguel Álvarez - Initial contribution
-
Constructor Summary
ConstructorDescriptionInterpretationContext
(AbstractRuleBasedInterpreter.ItemFilter itemFilter, boolean isForced, boolean isSilent, @Nullable String locationItem) Creates an instance of aInterpretationContext
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
isForced()
Returns the value of theisForced
record component.boolean
isSilent()
Returns the value of theisSilent
record component.Returns the value of theitemFilter
record component.@Nullable String
Returns the value of thelocationItem
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
InterpretationContext
public InterpretationContext(AbstractRuleBasedInterpreter.ItemFilter itemFilter, boolean isForced, boolean isSilent, @Nullable String locationItem) Creates an instance of aInterpretationContext
record class.- Parameters:
itemFilter
- the value for theitemFilter
record componentisForced
- the value for theisForced
record componentisSilent
- the value for theisSilent
record componentlocationItem
- the value for thelocationItem
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
itemFilter
Returns the value of theitemFilter
record component.- Returns:
- the value of the
itemFilter
record component
-
isForced
public boolean isForced()Returns the value of theisForced
record component.- Returns:
- the value of the
isForced
record component
-
isSilent
public boolean isSilent()Returns the value of theisSilent
record component.- Returns:
- the value of the
isSilent
record component
-
locationItem
Returns the value of thelocationItem
record component.- Returns:
- the value of the
locationItem
record component
-