Uses of Interface
jline.console.completer.ArgumentCompleter.ArgumentDelimiter

Packages that use ArgumentCompleter.ArgumentDelimiter
jline.console.completer Console completer support. 
 

Uses of ArgumentCompleter.ArgumentDelimiter in jline.console.completer
 

Classes in jline.console.completer that implement ArgumentCompleter.ArgumentDelimiter
static class ArgumentCompleter.AbstractArgumentDelimiter
          Abstract implementation of a delimiter that uses the ArgumentCompleter.AbstractArgumentDelimiter.isDelimiter(java.lang.CharSequence, int) method to determine if a particular character should be used as a delimiter.
static class ArgumentCompleter.WhitespaceArgumentDelimiter
          ArgumentCompleter.ArgumentDelimiter implementation that counts all whitespace (as reported by Character.isWhitespace(char)) as being a delimiter.
 

Methods in jline.console.completer that return ArgumentCompleter.ArgumentDelimiter
 ArgumentCompleter.ArgumentDelimiter ArgumentCompleter.getDelimiter()
           
 

Constructors in jline.console.completer with parameters of type ArgumentCompleter.ArgumentDelimiter
ArgumentCompleter(ArgumentCompleter.ArgumentDelimiter delimiter, java.util.Collection<Completer> completers)
          Create a new completer with the specified argument delimiter.
ArgumentCompleter(ArgumentCompleter.ArgumentDelimiter delimiter, Completer... completers)
          Create a new completer with the specified argument delimiter.