Convenience methods are shorthand abstractions which invoke another method by implicitly passing in default argument(s) for a common use case
Convenience methods are intended to encapsulate the verbosity of an existing API into a single expression by aliasing a method call or set of method calls with default arguments to a new method which represents a specific operation.
References