Runnable Option
Introduction
Constructor Parameters
Interactivity
Example Usage
RunnableOption resetOption = new RunnableOption(
"Reset",
() -> this.isDefaultValue(),
shouldSet-> this.setDefaultValue(shouldSet),
() -> connection.setDefault() // Task: Attempts to default
);Last updated