|
32 | 32 | public class Main {
|
33 | 33 |
|
34 | 34 | enum COMMAND {
|
35 |
| - |
36 |
| - REPORT(new ArgumentsGenerateReport(), new GenerateReport()), |
| 35 | + |
| 36 | + ANALYZE(new ArgumentsAnalyze(), new Analyze()), |
| 37 | + DOC(new ArgumentsDoc(), new Doc()), |
| 38 | + DRAW(new ArgumentsDraw(), new Draw()), |
| 39 | + FILTER(new ArgumentsFilter(), new Filter()), |
| 40 | + GENERATECONTEXT(new ArgumentsGenerateContext(), new GenerateContext()), |
| 41 | + GENERATE(new ArgumentsGenerate(), new Generate()), |
37 | 42 | INFER(new ArgumentsInfer(), new Infer()),
|
38 | 43 | OWL2SHACL(new ArgumentsOwl2Shacl(), new Owl2Shacl()),
|
39 |
| - DRAW(new ArgumentsDraw(), new Draw()), |
40 |
| - DOC(new ArgumentsDoc(), new Doc()), |
| 44 | + REPORT(new ArgumentsGenerateReport(), new GenerateReport()), |
41 | 45 | SHACL2SPARQL(new ArgumentsShacl2Sparql(), new Shacl2Sparql()),
|
42 | 46 | SPARQLBATCH(new ArgumentsSparqlBatch(), new SparqlBatch()),
|
43 |
| - GENERATECONTEXT(new ArgumentsGenerateContext(), new GenerateContext()), |
44 |
| - GENERATE(new ArgumentsGenerate(), new Generate()), |
45 |
| - VALIDATE(new ArgumentsValidate(), new Validate()), |
46 |
| - ANALYZE(new ArgumentsAnalyze(), new Analyze()), |
47 |
| - FILTER(new ArgumentsFilter(), new Filter()); |
| 47 | + VALIDATE(new ArgumentsValidate(), new Validate()); |
| 48 | + |
48 | 49 |
|
49 | 50 | private CliCommandIfc command;
|
50 | 51 | private Object arguments;
|
|
0 commit comments