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