I am writing select query for EPL Esper, and I need to add where clause based on info from object which stores in java set.
myCalss2{
int prop1;
String prop2;
}
class myClass{
int someFiled;
boolean foo;
Set<myClass2> bar;
}
I need to compare value of prop2, but I get instance of myClass, how to get value of prop2?