Skip to content

Commit 61e1890

Browse files
committed
order commands alphabetically
1 parent 6e2dfd6 commit 61e1890

File tree

1 file changed

+10
-9
lines changed
  • shacl-play-app/src/main/java/fr/sparna/rdf/shacl/app

1 file changed

+10
-9
lines changed

shacl-play-app/src/main/java/fr/sparna/rdf/shacl/app/Main.java

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,20 @@
3232
public class Main {
3333

3434
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()),
3742
INFER(new ArgumentsInfer(), new Infer()),
3843
OWL2SHACL(new ArgumentsOwl2Shacl(), new Owl2Shacl()),
39-
DRAW(new ArgumentsDraw(), new Draw()),
40-
DOC(new ArgumentsDoc(), new Doc()),
44+
REPORT(new ArgumentsGenerateReport(), new GenerateReport()),
4145
SHACL2SPARQL(new ArgumentsShacl2Sparql(), new Shacl2Sparql()),
4246
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+
4849

4950
private CliCommandIfc command;
5051
private Object arguments;

0 commit comments

Comments
 (0)