Is it possible to make a hibernate search query to find substrings of a class field varibles. For example:
public class User {
private String username = "asoftdrink";
}
and make a hibernate query to find all objects of class User which cointains the substring "soft" in their variable username.