chore: import upstream snapshot with attribution
This commit is contained in:
Vendored
+52
@@ -0,0 +1,52 @@
|
||||
import java.util.List;
|
||||
import java.util.ArrayList;
|
||||
|
||||
class BaseProcessor {}
|
||||
|
||||
class Result<T> {}
|
||||
|
||||
public class DataProcessor extends BaseProcessor implements Processor {
|
||||
private List<String> items;
|
||||
|
||||
public DataProcessor() {
|
||||
this.items = new ArrayList<>();
|
||||
}
|
||||
|
||||
public void addItem(String item) {
|
||||
items.add(item);
|
||||
}
|
||||
|
||||
public List<String> process() {
|
||||
return validate(items);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Result<DataProcessor> build(HttpClient client) {
|
||||
return null;
|
||||
}
|
||||
|
||||
private List<String> validate(List<String> data) {
|
||||
List<String> result = new ArrayList<>();
|
||||
for (String s : data) {
|
||||
if (s != null && !s.isEmpty()) {
|
||||
result.add(s.trim());
|
||||
}
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
interface Processor {
|
||||
List<String> process();
|
||||
}
|
||||
|
||||
enum ErrorCode {
|
||||
OK(0),
|
||||
GAME_DONE(1001);
|
||||
|
||||
private final int code;
|
||||
|
||||
ErrorCode(int code) {
|
||||
this.code = code;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user