Package jline

Interface SimpleCompletor.SimpleCompletorFilter

All Known Implementing Classes:
SimpleCompletor.NoOpFilter
Enclosing class:
SimpleCompletor

public static interface SimpleCompletor.SimpleCompletorFilter
Filter for elements in the completor.
Author:
Marc Prud'hommeaux
  • Method Summary

    Modifier and Type
    Method
    Description
    filter(String element)
    Filter the specified String.
  • Method Details

    • filter

      String filter(String element)
      Filter the specified String. To not filter it, return the same String as the parameter. To exclude it, return null.