Returns a completion of the value and message.paramvalue the text of the completionparammessage a message about the completionreturna completion of the provided value and message return new SimpleCompletion(value, message);
return new SimpleCompletion(value, message);
Returns a completion of the value and an empty messageparamvalue the text of the completionreturna completion of the value and an empty message return new SimpleCompletion(value, "");
return new SimpleCompletion(value, "");