Class: Groonga::Command::LogicalTableRemove

Inherits:
Base
  • Object
show all
Defined in:
lib/groonga/command/logical-table-remove.rb

Overview

A command class that represents logical_table_remove command.

Since:

  • 1.1.3

Instance Attribute Summary

Attributes inherited from Base

#arguments, #command_name, #original_format, #original_source, #path_prefix

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#==, #[], #[]=, #command_format?, #initialize, #key?, #name, #output_type, #request_id, #to_command_format, #to_uri_format, #uri_format?

Constructor Details

This class inherits a constructor from Groonga::Command::Base

Class Method Details

.command_nameObject

Since:

  • 1.1.3



26
27
28
# File 'lib/groonga/command/logical-table-remove.rb', line 26

def command_name
  "logical_table_remove"
end

.parameter_namesObject

Since:

  • 1.1.3



30
31
32
33
34
35
36
37
38
39
# File 'lib/groonga/command/logical-table-remove.rb', line 30

def parameter_names
  [
    :logical_table,
    :shard_key,
    :min,
    :min_border,
    :max,
    :max_border,
  ]
end

Instance Method Details

#logical_tableString

Returns logical_table parameter value.

Returns:

  • (String)

    logical_table parameter value.

Since:

  • 1.1.3



47
48
49
# File 'lib/groonga/command/logical-table-remove.rb', line 47

def logical_table
  self[:logical_table]
end

#maxString

Returns max parameter value.

Returns:

  • (String)

    max parameter value.

Since:

  • 1.1.3



75
76
77
# File 'lib/groonga/command/logical-table-remove.rb', line 75

def max
  self[:max]
end

#max_borderString

Returns max_border parameter value.

Returns:

  • (String)

    max_border parameter value.

Since:

  • 1.1.3



82
83
84
# File 'lib/groonga/command/logical-table-remove.rb', line 82

def max_border
  self[:max_border]
end

#minString

Returns min parameter value.

Returns:

  • (String)

    min parameter value.

Since:

  • 1.1.3



61
62
63
# File 'lib/groonga/command/logical-table-remove.rb', line 61

def min
  self[:min]
end

#min_borderString

Returns min_border parameter value.

Returns:

  • (String)

    min_border parameter value.

Since:

  • 1.1.3



68
69
70
# File 'lib/groonga/command/logical-table-remove.rb', line 68

def min_border
  self[:min_border]
end

#shard_keyString

Returns shard_key parameter value.

Returns:

  • (String)

    shard_key parameter value.

Since:

  • 1.1.3



54
55
56
# File 'lib/groonga/command/logical-table-remove.rb', line 54

def shard_key
  self[:shard_key]
end