Class EventContext
java.lang.Object
org.hibernate.search.util.common.reporting.EventContext
A sequence of
EventContextElement
.-
Method Summary
Modifier and TypeMethodDescriptionappend
(EventContext other) static EventContext
concat
(EventContext first, EventContext... others) static EventContext
create
(EventContextElement firstElement, EventContextElement... otherElements) elements()
boolean
int
hashCode()
render()
toString()
-
Method Details
-
create
public static EventContext create(EventContextElement firstElement, EventContextElement... otherElements) -
concat
-
toString
-
equals
-
hashCode
public int hashCode() -
elements
- Returns:
- The elements of this context. Never empty, does not contain
null
values.
-
render
- Returns:
- A human-readable representation of this context. This representation may change without prior notice in new versions of Hibernate Search: callers should not try to parse it.
-
renderWithPrefix
- Returns:
- A human-readable representation of this context, with a "Context: " prefix. This representation may change without prior notice in new versions of Hibernate Search: callers should not try to parse it.
-
append
-