1   package com.lexicalscope.jewel.cli.examples;
2   
3   import com.lexicalscope.jewel.cli.Option;
4   
5   public interface OptionalOptionAlternative
6   {
7       @Option(defaultToNull = true) Integer getCount();
8   }