import java.lang.System; public class TestClass { public function test_function(); public operation test_operation(); public function notest_function(); public operation notest_operation(); } var a = new TestClass(); var testNames = select op.Name from op in a.class.Operations where op.Name.startsWith("test_"); for(name in testNames) { System.out.println(name); }