class Groonga::Command::TableList

A command class that represents `table_list` command.

@since 1.1.3

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/table-list.rb, line 26
def command_name
  "table_list"
end
parameter_names() click to toggle source
# File lib/groonga/command/table-list.rb, line 30
def parameter_names
  [
    :prefix,
  ]
end

Public Instance Methods

prefix() click to toggle source

@return [String] `prefix` parameter value.

@since 1.1.3

# File lib/groonga/command/table-list.rb, line 42
def prefix
  self[:prefix]
end