How to make "reason" argument

I have command /e . But how to get longer string, for example /e Name Beeing too loud.
And Being too loud as 1 String.

Try this.

GenericArguments.remainingJoinedStrings(Text text);

https://jd.spongepowered.org/7.1.0/org/spongepowered/api/command/args/GenericArguments.html#remainingJoinedStrings-org.spongepowered.api.text.Text-

Edit:
You may also get some extra mileage by using common reasons in the suggestions as tab.

GenericArguments.suggestions()

As for command syntax, you can surround long strings that aren’t remainingJoinedStrings with quotes, e.g. /e name "being too loud".