from /* ... variable declarations ... */
where /* ... logical formulas ... */
select /* ... expressions ... */
demo 如下,首先 from 语句声明类型为 Method 的变量 m ,where 语句判断方法 m 是否被名为 GetMapping 的注解标记,select 语句返回
import java
from Method m
where m.getAnAnnotation().getType().hasName("GetMapping")
select m