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 SummaryConstructorsConstructorDescriptionInterpretationContext(AbstractRuleBasedInterpreter.ItemFilter itemFilter, boolean isForced, boolean isSilent, @Nullable String locationItem) Creates an instance of aInterpretationContextrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleanisForced()Returns the value of theisForcedrecord component.booleanisSilent()Returns the value of theisSilentrecord component.Returns the value of theitemFilterrecord component.@Nullable StringReturns the value of thelocationItemrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
InterpretationContextpublic InterpretationContext(AbstractRuleBasedInterpreter.ItemFilter itemFilter, boolean isForced, boolean isSilent, @Nullable String locationItem) Creates an instance of aInterpretationContextrecord class.- Parameters:
- itemFilter- the value for the- itemFilterrecord component
- isForced- the value for the- isForcedrecord component
- isSilent- the value for the- isSilentrecord component
- locationItem- the value for the- locationItemrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
itemFilterReturns the value of theitemFilterrecord component.- Returns:
- the value of the itemFilterrecord component
 
- 
isForcedpublic boolean isForced()Returns the value of theisForcedrecord component.- Returns:
- the value of the isForcedrecord component
 
- 
isSilentpublic boolean isSilent()Returns the value of theisSilentrecord component.- Returns:
- the value of the isSilentrecord component
 
- 
locationItemReturns the value of thelocationItemrecord component.- Returns:
- the value of the locationItemrecord component
 
 
-