VisualVM OQL: how to search for primitive float values rather than actual Float instances?
问题 I am wondering how one can search for all primitive float values that match a certain number. When doing something like: select n from java.lang.Float n where n.value == 1.00 Only the Float class instances are being found. The application I am exploring is using different wrappers than just Float (eg. Vectors) that use primitive float values as fields for which I need to search. How would I accomplish this? The following returns a "float is not found error": select n from float n where n