Record Class InternalUtils.Entry<K,V>
java.lang.Object
java.lang.Record
jp.co.moneyforward.autotest.framework.internal.InternalUtils.Entry<K,V>
- Enclosing class:
InternalUtils
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic <K,
V> InternalUtils.Entry <K, V> $
(K key, V value) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.key()
Returns the value of thekey
record component.final String
toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
Entry
-
-
Method Details
-
$
-
toString
-
hashCode
-
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)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-