Interface WorkflowVisualisationChecker

All Superinterfaces:
Predicate<com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext>
All Known Implementing Classes:
DefaultWorkflowVisualisationChecker
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface WorkflowVisualisationChecker extends Predicate<com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext>
Allows to check if visualisation is set for a model
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    isVisualisationSet(com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext context)
    Allows to check whether visualisation is set for a model or not
    default boolean
    test(com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext context)

    Methods inherited from interface java.util.function.Predicate

    and, negate, or
  • Method Details

    • isVisualisationSet

      boolean isVisualisationSet(com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext context)
      Allows to check whether visualisation is set for a model or not
      Parameters:
      context - context with data about the network
      Returns:
    • test

      default boolean test(com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext context)
      Specified by:
      test in interface Predicate<com.hybris.backoffice.widgets.networkchart.context.NetworkChartContext>