Record Class RealmUtils.ManagerRealm
java.lang.Object
java.lang.Record
org.apache.syncope.core.persistence.api.utils.RealmUtils.ManagerRealm
- Enclosing class:
RealmUtils
public static record RealmUtils.ManagerRealm(String realmPath, AnyTypeKind kind, String anyKey)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionManagerRealm(String realmPath, AnyTypeKind kind, String anyKey) Creates an instance of aManagerRealmrecord class. -
Method Summary
Modifier and TypeMethodDescriptionanyKey()Returns the value of theanyKeyrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.kind()Returns the value of thekindrecord component.static Optional<RealmUtils.ManagerRealm> output()Returns the value of therealmPathrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ManagerRealm
Creates an instance of aManagerRealmrecord class.- Parameters:
realmPath- the value for therealmPathrecord componentkind- the value for thekindrecord componentanyKey- the value for theanyKeyrecord component
-
-
Method Details
-
of
-
output
-
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). -
realmPath
Returns the value of therealmPathrecord component.- Returns:
- the value of the
realmPathrecord component
-
kind
Returns the value of thekindrecord component.- Returns:
- the value of the
kindrecord component
-
anyKey
Returns the value of theanyKeyrecord component.- Returns:
- the value of the
anyKeyrecord component
-