Elasticsearch:在groovy脚本中使用Collections类方法

时间:2017-11-24 09:23:55

标签: elasticsearch groovy

我正在尝试在groovy中使用Collections类进行一些处理以创建以实体为中心的索引。我收到以下错误:

引起:groovy.lang.MissingPropertyException: No such property: Collections for class

然而,我的代码以我想要的方式在grrovy编译器中运行。

以下是我正在使用的代码:

def Indices_sqn = []
int n = 0
while (n != list_Eventname.size()) {

    int index = Collections.indexOfSubList(list_Eventname, sequence_srch);
    if (index != -1) {
        int end_index = index + sequence_srch.size()
        Indices_sqn.add(index)
        n += end_index
    }

    println Indices_sqn
}

0 个答案:

没有答案