Is it possible in OQL to retrieve all the objects that belongs to a package? Or can I query with wildcards?
As @haridsv suggested I tried:
SELECT * from "com.example.*"
and
SELECT a from "com\.example\..*"
but in VisualVM it complaints that no such package exists.
Even
SELECT a from "java.io.File" a
Fails.
Thanks!
ssedano.
You can use regular expression like this:
SELECT * from "<packagename>.*"
If the package name is "java.io" you would use:
SELECT * from "java\.io\..*"
Note the quotes around the regex and how the dots in the path are protected.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With