Record Class FunctionLibraryManager.FunctionInLibrary
java.lang.Object
java.lang.Record
com.evolveum.midpoint.model.common.expression.functions.FunctionLibraryManager.FunctionInLibrary
- Enclosing class:
- FunctionLibraryManager
public static record FunctionLibraryManager.FunctionInLibrary(@NotNull FunctionConfigItem function, @NotNull FunctionLibrary library)
extends Record
- 
Constructor SummaryConstructorsConstructorDescriptionFunctionInLibrary(@NotNull FunctionConfigItem function, @NotNull FunctionLibrary library) Creates an instance of aFunctionInLibraryrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.@NotNull FunctionConfigItemfunction()Returns the value of thefunctionrecord component.final inthashCode()Returns a hash code value for this object.@NotNull FunctionLibrarylibrary()Returns the value of thelibraryrecord component.toString()Returns a string representation of this record class.
- 
Constructor Details- 
FunctionInLibrarypublic FunctionInLibrary(@NotNull @NotNull FunctionConfigItem function, @NotNull @NotNull FunctionLibrary library) Creates an instance of aFunctionInLibraryrecord class.- Parameters:
- function- the value for the- functionrecord component
- library- the value for the- libraryrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
functionReturns the value of thefunctionrecord component.- Returns:
- the value of the functionrecord component
 
- 
libraryReturns the value of thelibraryrecord component.- Returns:
- the value of the libraryrecord component
 
 
-