com.osc.lego.core.SmartComponent Maven / Gradle / Ivy
The newest version!
package com.osc.lego.core;
/**
* @author osc 2023/8/7.
*
*
*/
public interface SmartComponent {
/**
* 组件唯一标识
* @return
*/
default String id(){
return getClass().getSimpleName();
}
/**
* 是否能够处理
* @param d
* @return
*/
boolean support(D d);
}