Class FixedValueMappingChannelHandler

java.lang.Object
org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
org.openhab.core.thing.binding.generic.converter.FixedValueMappingChannelHandler
All Implemented Interfaces:
ChannelHandler

@NonNullByDefault public class FixedValueMappingChannelHandler extends org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
The FixedValueMappingChannelHandler implements mapping conversions for different item-types
Author:
Jan N. Klug - Initial contribution
  • Constructor Details

  • Method Details

    • toCommand

      protected @Nullable Command toCommand(String value)
      Description copied from class: org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
      check if this converter received a value that needs to be sent as command
      Specified by:
      toCommand in class org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
      Parameters:
      value - the value
      Returns:
      the command or null
    • toString

      public String toString(Command command)
      Description copied from class: org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
      convert a command to a string
      Specified by:
      toString in class org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
      Parameters:
      command - the command
      Returns:
      the string representation of the command
    • toState

      public Optional<State> toState(String string)
      Description copied from class: org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
      convert the received value to a state
      Specified by:
      toState in class org.openhab.core.thing.internal.binding.generic.converter.AbstractTransformingChannelHandler
      Parameters:
      string - the value
      Returns:
      the state that represents the value of UNDEF if conversion failed