Package org.hibernate.boot.model
Record Class NamedEntityGraphDefinition
java.lang.Object
java.lang.Record
org.hibernate.boot.model.NamedEntityGraphDefinition
public record NamedEntityGraphDefinition(String name, String entityName, NamedEntityGraphDefinition.Source source, NamedGraphCreator graphCreator)
extends Record
Models a @NamedEntityGraph
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionNamedEntityGraphDefinition
(String name, String entityName, NamedEntityGraphDefinition.Source source, NamedGraphCreator graphCreator) Creates an instance of aNamedEntityGraphDefinition
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theentityName
record component.final boolean
Indicates whether some other object is "equal to" this one.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thegraphCreator
record component.final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.source()
Returns the value of thesource
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
NamedEntityGraphDefinition
public NamedEntityGraphDefinition(String name, String entityName, NamedEntityGraphDefinition.Source source, NamedGraphCreator graphCreator) Creates an instance of aNamedEntityGraphDefinition
record class.- Parameters:
name
- the value for thename
record componententityName
- the value for theentityName
record componentsource
- the value for thesource
record componentgraphCreator
- the value for thegraphCreator
record component
-
-
Method Details
-
getRegisteredName
Deprecated, for removal: This API element is subject to removal in a future version. -
getEntityName
Deprecated, for removal: This API element is subject to removal in a future version. -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
entityName
Returns the value of theentityName
record component.- Returns:
- the value of the
entityName
record component
-
source
Returns the value of thesource
record component.- Returns:
- the value of the
source
record component
-
graphCreator
Returns the value of thegraphCreator
record component.- Returns:
- the value of the
graphCreator
record component
-