Record Class HelpFormatter.CommandEntry
java.lang.Object
java.lang.Record
net.blockhost.commons.commands.help.HelpFormatter.CommandEntry
- Record Components:
command- the command name/syntaxdescription- the command description
- Enclosing class:
HelpFormatter
-
Constructor Summary
ConstructorsConstructorDescriptionCommandEntry(String command, String description) Creates an instance of aCommandEntryrecord class. -
Method Summary
Modifier and TypeMethodDescriptioncommand()Returns the value of thecommandrecord component.Returns the value of thedescriptionrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
CommandEntry
Creates an instance of aCommandEntryrecord class.- Parameters:
command- the value for thecommandrecord componentdescription- the value for thedescriptionrecord component
-
-
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). -
command
-
description
Returns the value of thedescriptionrecord component.- Returns:
- the value of the
descriptionrecord component
-