Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Debot.ResultOfAppDebotBrowser.GetSigningBox
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Debot.ResultOfAppDebotBrowser.GetSigningBox
- Record Components:
signingBox
- Signing box for signing data requested by debot engine. Signing box is owned and disposed by debot engine
- All Implemented Interfaces:
Debot.ResultOfAppDebotBrowser
- Enclosing interface:
Debot.ResultOfAppDebotBrowser
public static record Debot.ResultOfAppDebotBrowser.GetSigningBox(Integer signingBox)
extends Record
implements Debot.ResultOfAppDebotBrowser
Result of getting signing box.
-
Nested Class Summary
Nested classes/interfaces inherited from interface tech.deplant.java4ever.binding.Debot.ResultOfAppDebotBrowser
Debot.ResultOfAppDebotBrowser.Approve, Debot.ResultOfAppDebotBrowser.GetSigningBox, Debot.ResultOfAppDebotBrowser.Input, Debot.ResultOfAppDebotBrowser.InvokeDebot
-
Field Summary
Fields inherited from interface tech.deplant.java4ever.binding.Debot.ResultOfAppDebotBrowser
INVOKEDEBOT
-
Constructor Summary
ConstructorsConstructorDescriptionGetSigningBox
(Integer signingBox) Creates an instance of aGetSigningBox
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thesigningBox
record component.final String
toString()
Returns a string representation of this record class.type()
-
Constructor Details
-
GetSigningBox
Creates an instance of aGetSigningBox
record class.- Parameters:
signingBox
- the value for thesigningBox
record component
-
-
Method Details
-
type
-
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)
. -
signingBox
Returns the value of thesigningBox
record component.- Returns:
- the value of the
signingBox
record component
-