Interface BooleanMapper

All Superinterfaces:
Mapper<Boolean,Boolean>

public interface BooleanMapper extends Mapper<Boolean,Boolean>
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    map(boolean in)
    Maps a boolean.
    default Boolean
    Maps an object.
     

    Methods inherited from interface dev.prozilla.pine.common.util.function.mapper.Mapper

    then
  • Method Details

    • map

      default Boolean map(Boolean in)
      Description copied from interface: Mapper
      Maps an object.
      Specified by:
      map in interface Mapper<Boolean,Boolean>
      Parameters:
      in - The original object
      Returns:
      The mapped object.
    • map

      boolean map(boolean in)
      Maps a boolean.
      Parameters:
      in - The original boolean
      Returns:
      The mapped boolean.
    • then

      default BooleanMapper then(BooleanMapper mapper)