Class Paths
- java.lang.Object
-
- com.github.rvesse.airline.examples.simple.Paths
-
@Command(name="paths", description="Displays various paths") public class Paths extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
Paths.PathSource
-
Constructor Summary
Constructors Constructor Description Paths()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static void
main(java.lang.String[] args)
void
test()
-
-
-
Field Detail
-
envVars
@Option(name="--env", description="Specifies an environment variable whose value should be read and tested as a path") private java.util.List<java.lang.String> envVars
-
sysProps
@Option(name="--sys", description="Specifies a JVM system property whose variable should be read and tested as a path") private java.util.List<java.lang.String> sysProps
-
empty
@Option(name="--empty", description="Specifies that the empty path should be tested") private boolean empty
-
dot
@Option(name="--dot", description="Specifies that the \'.\' path should be tested") private boolean dot
-
paths
@Arguments(title="Path", description="Specifies arbitrary paths to test") private java.util.List<java.lang.String> paths
-
-