java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Debot.DebotAction
- Record Components:
description
- A short action description. Should be used by Debot Browser as name of menu item.name
- Depends on action type. Can be a debot function name or a print string (for Print Action).actionType
- Action type.to
- ID of debot context to switch after action execution.attributes
- Action attributes. In the form of "param=value,flag". attribute example: instant, args, fargs, sign.misc
- Some internal action data. Used by debot only.
- Enclosing class:
Debot
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theactionType
record component.Returns the value of theattributes
record component.Returns the value of thedescription
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.misc()
Returns the value of themisc
record component.name()
Returns the value of thename
record component.to()
Returns the value of theto
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
DebotAction
public DebotAction(String description, String name, Number actionType, Number to, String attributes, String misc) Creates an instance of aDebotAction
record class.- Parameters:
description
- the value for thedescription
record componentname
- the value for thename
record componentactionType
- the value for theactionType
record componentto
- the value for theto
record componentattributes
- the value for theattributes
record componentmisc
- the value for themisc
record component
-
-
Method Details
-
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)
. -
description
Returns the value of thedescription
record component.- Returns:
- the value of the
description
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
actionType
Returns the value of theactionType
record component.- Returns:
- the value of the
actionType
record component
-
to
Returns the value of theto
record component.- Returns:
- the value of the
to
record component
-
attributes
Returns the value of theattributes
record component.- Returns:
- the value of the
attributes
record component
-
misc
Returns the value of themisc
record component.- Returns:
- the value of the
misc
record component
-