| java.lang.Object | |
| ↳ | com.pnfsoftware.jeb.core.units.AutocompletionResult |
An object representing the result of an autocompletion request.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| AutocompletionResult() | |||||||||||
| AutocompletionResult(List<String> autocompletes) | |||||||||||
| AutocompletionResult(List<String> autocompletes, char lastSeparator) | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| void | add(String autocompl) | ||||||||||
| static List<String> | filterStartsWith(String text, List<String> toks) | ||||||||||
| List<String> | getAutocompletes() | ||||||||||
| char |
getLastSeparator()
The last separator from where the autocompletion start.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
The last separator from where the autocompletion start. For example, when "this.foo.b" is typed, the completion will stand on "b" and the last separator will be ".". Default separator is a single space.