Class DescCommand
- java.lang.Object
-
- jp.co.future.uroborosql.client.command.ReplCommand
-
- jp.co.future.uroborosql.client.command.DescCommand
-
- All Implemented Interfaces:
LoggerBase
,ReplLoggingSupport
public class DescCommand extends ReplCommand
Describe table Command- Author:
- H.Sugimoto
-
-
Field Summary
-
Fields inherited from interface jp.co.future.uroborosql.log.support.LoggerBase
SUPPRESS_LOG_OUTPUT, SUPPRESS_PARAMETER_LOG_OUTPUT
-
Fields inherited from interface jp.co.future.uroborosql.log.support.ReplLoggingSupport
REPL_LOG
-
-
Constructor Summary
Constructors Constructor Description DescCommand()
Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
execute(org.jline.reader.LineReader reader, String[] parts, SqlConfig sqlConfig, Properties props)
コマンドの実行void
showHelp(org.jline.terminal.Terminal terminal)
コマンドのヘルプメッセージをターミナルに出力する-
Methods inherited from class jp.co.future.uroborosql.client.command.ReplCommand
getStartArgNo, is, isHidden, match, showMessage, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface jp.co.future.uroborosql.log.support.LoggerBase
debugWith, errorWith, infoWith, isSuppressLogging, isSuppressParameterLogging, releaseLogging, releaseParameterLogging, suppressLogging, suppressParameterLogging, traceWith, warnWith
-
-
-
-
Method Detail
-
execute
public boolean execute(org.jline.reader.LineReader reader, String[] parts, SqlConfig sqlConfig, Properties props)
コマンドの実行- Specified by:
execute
in classReplCommand
- Parameters:
reader
- LineReaderparts
- Command line partssqlConfig
- SqlConfigprops
- properties- Returns:
- REPLを継続する場合
true
- See Also:
ReplCommand.execute(org.jline.reader.LineReader, java.lang.String[], jp.co.future.uroborosql.config.SqlConfig, java.util.Properties)
-
showHelp
public void showHelp(org.jline.terminal.Terminal terminal)
コマンドのヘルプメッセージをターミナルに出力する- Specified by:
showHelp
in classReplCommand
- Parameters:
terminal
- Terminal- See Also:
ReplCommand.showHelp(org.jline.terminal.Terminal)
-
-