qcloud.storage.ranger.thirdparty.jline.CompletionHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hadoop-ranger-client-for-hadoop Show documentation
Show all versions of hadoop-ranger-client-for-hadoop Show documentation
Tencent Qcloud chdfs hadoop ranger client.
/*
* Copyright (c) 2002-2007, Marc Prud'hommeaux. All rights reserved.
*
* This software is distributable under the BSD license. See the terms of the
* BSD license in the documentation provided with this software.
*/
package qcloud.storage.ranger.thirdparty.jline;
import java.io.*;
import java.util.*;
/**
* Handler for dealing with candidates for tab-completion.
*
* @author Marc Prud'hommeaux
*/
public interface CompletionHandler {
boolean complete(ConsoleReader reader, List candidates, int position)
throws IOException;
}