Class AbstractTypedPlugin<D>

    • Constructor Detail

      • AbstractTypedPlugin

        public AbstractTypedPlugin()
    • Method Detail

      • supports

        public boolean supports​(D data)
        Description copied from interface: Typed
        Gets whether this object is compatible with the given data object.

        By default, this method will return true iff the data is assignable to the associated type given by Typed.getType(). But individual implementations may have other requirements beyond class assignability.

        Specified by:
        supports in interface Typed<D>