Record Class Debot.DebotAction

java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Debot.DebotAction
Record Components:
description - Should be used by Debot Browser as name of menu item. A short action description.
name - Can be a debot function name or a print string (for Print Action). Depends on action type.
actionType - Action type.
to - ID of debot context to switch after action execution.
attributes - In the form of "param=value,flag". attribute example: instant, args, fargs, sign. Action attributes.
misc - Used by debot only. Some internal action data.
Enclosing class:
Debot

public static record Debot.DebotAction(String description, String name, Integer actionType, Integer to, String attributes, String misc) extends Record
[UNSTABLE](UNSTABLE.md) Describes a debot action in a Debot Context.
  • Constructor Details

    • DebotAction

      public DebotAction(String description, String name, Integer actionType, Integer to, String attributes, String misc)
      Creates an instance of a DebotAction record class.
      Parameters:
      description - the value for the description record component
      name - the value for the name record component
      actionType - the value for the actionType record component
      to - the value for the to record component
      attributes - the value for the attributes record component
      misc - the value for the misc record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • description

      public String description()
      Returns the value of the description record component.
      Returns:
      the value of the description record component
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • actionType

      public Integer actionType()
      Returns the value of the actionType record component.
      Returns:
      the value of the actionType record component
    • to

      public Integer to()
      Returns the value of the to record component.
      Returns:
      the value of the to record component
    • attributes

      public String attributes()
      Returns the value of the attributes record component.
      Returns:
      the value of the attributes record component
    • misc

      public String misc()
      Returns the value of the misc record component.
      Returns:
      the value of the misc record component