public final class

NullCompleter

extends Object
implements Completer
java.lang.Object
   ↳ jline.console.completer.NullCompleter

Class Overview

Null completer.

Summary

Fields
public static final NullCompleter INSTANCE
Public Constructors
NullCompleter()
Public Methods
int complete(String buffer, int cursor, List<CharSequence> candidates)
Populates candidates with a list of possible completions for the buffer.
[Expand]
Inherited Methods
From class java.lang.Object
From interface jline.console.completer.Completer

Fields

public static final NullCompleter INSTANCE

Public Constructors

public NullCompleter ()

Public Methods

public int complete (String buffer, int cursor, List<CharSequence> candidates)

Populates candidates with a list of possible completions for the buffer. The candidates list will not be sorted before being displayed to the user: thus, the complete method should sort the List before returning.

Parameters
buffer The buffer
cursor The current position of the cursor in the buffer
candidates The List of candidates to populate
Returns
  • The index of the buffer for which the completion will be relative