blob: 063a1777a5e998a538203485db6251bb492b4574 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package dev.isxander.yacl3.impl.controller;
import dev.isxander.yacl3.api.Controller;
import dev.isxander.yacl3.api.Option;
import dev.isxander.yacl3.api.controller.BooleanControllerBuilder;
import dev.isxander.yacl3.api.controller.ValueFormatter;
import dev.isxander.yacl3.gui.controllers.BooleanController;
import net.minecraft.network.chat.Component;
import org.apache.commons.lang3.Validate;
import java.util.function.Function;
public class BooleanControllerBuilderImpl extends AbstractControllerBuilderImpl<Boolean> implements BooleanControllerBuilder {
private boolean coloured = false;
private ValueFormatter<Boolean> formatter = BooleanController.ON_OFF_FORMATTER::apply;
public BooleanControllerBuilderImpl(Option<Boolean> option) {
super(option);
}
@Override
public BooleanControllerBuilder coloured(boolean coloured) {
this.coloured = coloured;
return this;
}
@Override
public BooleanControllerBuilder formatValue(ValueFormatter<Boolean> formatter) {
Validate.notNull(formatter, "formatter cannot be null");
this.formatter = formatter;
return this;
}
@Override
public BooleanControllerBuilder onOffFormatter() {
this.formatter = BooleanController.ON_OFF_FORMATTER::apply;
return this;
}
@Override
public BooleanControllerBuilder yesNoFormatter() {
this.formatter = BooleanController.YES_NO_FORMATTER::apply;
return this;
}
@Override
public BooleanControllerBuilder trueFalseFormatter() {
this.formatter = BooleanController.TRUE_FALSE_FORMATTER::apply;
return this;
}
@Override
public Controller<Boolean> build() {
return BooleanController.createInternal(option, formatter, coloured);
}
}
|