graphmine-core / io.github.sof3.graphmine.command.args / RawTextArg
class RawTextArg : CommandArg<String>
Accepts the rest of the whole line literally
| <init> | RawTextArg()Accepts the rest of the whole line literally |
| default | var default: T?Sets the default value of the command. Implicitly sets optional to true (even if the set value is null) |
| optional | var optional: BooleanWhether the command arg can be skipped |
| value | lateinit var value: TThe received value of the argument |
| parse | fun parse(parser: FormattedStringReader): StringReads the next value in the parser into the value for the argument |
| accept | fun accept(parser: FormattedStringReader): BooleanReads the next value in the parser into the value for the argument. |
| default | fun default(value: T): CommandArg<T>Sets the default value of the command. Implicitly sets optional to true (even if the set value is null) |
| provideDelegate | open fun provideDelegate(thisRef: Overload, property: KProperty<*>): ReadOnlyProperty<Overload, T> |