Skip to content

Commit

Permalink
order commands alphabetically
Browse files Browse the repository at this point in the history
  • Loading branch information
tfrancart committed Oct 21, 2024
1 parent 6e2dfd6 commit 61e1890
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions shacl-play-app/src/main/java/fr/sparna/rdf/shacl/app/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,20 @@
public class Main {

enum COMMAND {

REPORT(new ArgumentsGenerateReport(), new GenerateReport()),

ANALYZE(new ArgumentsAnalyze(), new Analyze()),
DOC(new ArgumentsDoc(), new Doc()),
DRAW(new ArgumentsDraw(), new Draw()),
FILTER(new ArgumentsFilter(), new Filter()),
GENERATECONTEXT(new ArgumentsGenerateContext(), new GenerateContext()),
GENERATE(new ArgumentsGenerate(), new Generate()),
INFER(new ArgumentsInfer(), new Infer()),
OWL2SHACL(new ArgumentsOwl2Shacl(), new Owl2Shacl()),
DRAW(new ArgumentsDraw(), new Draw()),
DOC(new ArgumentsDoc(), new Doc()),
REPORT(new ArgumentsGenerateReport(), new GenerateReport()),
SHACL2SPARQL(new ArgumentsShacl2Sparql(), new Shacl2Sparql()),
SPARQLBATCH(new ArgumentsSparqlBatch(), new SparqlBatch()),
GENERATECONTEXT(new ArgumentsGenerateContext(), new GenerateContext()),
GENERATE(new ArgumentsGenerate(), new Generate()),
VALIDATE(new ArgumentsValidate(), new Validate()),
ANALYZE(new ArgumentsAnalyze(), new Analyze()),
FILTER(new ArgumentsFilter(), new Filter());
VALIDATE(new ArgumentsValidate(), new Validate());


private CliCommandIfc command;
private Object arguments;
Expand Down

0 comments on commit 61e1890

Please sign in to comment.