Interface Supporter<T>

Type Parameters:
T - The type of element to check if supported

public interface Supporter<T>
Interface to know if a component can support something.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    supports(T element)
    Check if an element is supported
  • Method Details

    • supports

      boolean supports(T element)
      Check if an element is supported
      Parameters:
      element - The element
      Returns:
      true if the element is supported, false otherwise