質問

I have an event which has indexed property ids (List ). How to write query which matches a value in ids ?

class MyEvent
{
    private List<Integer> allIds;
    getters/setters
}
役に立ちましたか?

解決

Have a look at the enumeration method such as "allIds.where(v => v = 5)"

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top