public static enum SearchRestrictions.SearchMatchMode extends Enum<SearchRestrictions.SearchMatchMode>
Enum Constant and Description |
---|
ANYWHERE
Match anywhere.
|
END
Match at the end.
|
EXACT
Match exact value.
|
START
Match at the beginning.
|
Modifier and Type | Method and Description |
---|---|
org.hibernate.criterion.MatchMode |
getHibernateMatchMode() |
static SearchRestrictions.SearchMatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchRestrictions.SearchMatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchRestrictions.SearchMatchMode ANYWHERE
public static final SearchRestrictions.SearchMatchMode END
public static final SearchRestrictions.SearchMatchMode EXACT
public static final SearchRestrictions.SearchMatchMode START
public org.hibernate.criterion.MatchMode getHibernateMatchMode()
public static SearchRestrictions.SearchMatchMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static SearchRestrictions.SearchMatchMode[] values()
for (SearchRestrictions.SearchMatchMode c : SearchRestrictions.SearchMatchMode.values()) System.out.println(c);
Copyright © 2010-2025 Qcadoo Limited