Package org.hibernate
Record Class EnabledFetchProfile
java.lang.Object
java.lang.Record
org.hibernate.EnabledFetchProfile
- Record Components:
profileName- theprofile name
- All Implemented Interfaces:
FindOption
A
FindOption which requests a namedfetch profile. An instance of this class may be obtained in a type safe way from the static metamodel for the class annotated@FetchProfile and passed as an option tofind().
For example, this class defines a fetch profile:
@Entity @FetchProfile(name = "WithAuthors") class Book { ... @ManyToMany @FetchProfileOverride(profile = Book_.PROFILE_WITH_AUTHORS) Set<Author> authors; } The fetch profile may be requested like this:Book bookWithAuthors = session.find(Book.class, isbn, Book_._WithAuthors)
When the static metamodel is not used, anEnabledFetchProfile may be instantiated directly, passing the name of the fetch profile as a string.
Book bookWithAuthors = session.find(Book.class, isbn, new EnabledFetchProfile("WithAuthors"))- Since:
- 7.0
- See Also:
Constructor Summary
ConstructorsConstructorDescriptionEnabledFetchProfile(String profileName) Creates an instance of aEnabledFetchProfilerecord class.Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theprofileNamerecord component.finalStringtoString()Returns a string representation of this record class.
Constructor Details
EnabledFetchProfile
Creates an instance of aEnabledFetchProfilerecord class.- Parameters:
profileName- the value for theprofileNamerecord component
Method Details
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).profileName
Returns the value of theprofileNamerecord component.- Returns:
- the value of the
profileNamerecord component