Class: Groonga::Command::Normalize

Inherits:
Base
  • Object
show all
Defined in:
lib/groonga/command/normalize.rb

Overview

A command class that represents normalize command.

Since:

  • 1.0.6

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_elasticsearch_format, #to_s, #to_uri_format, #uri_format?

Constructor Details

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

Class Method Details

.command_nameObject

Since:

  • 1.0.6



28
29
30
# File 'lib/groonga/command/normalize.rb', line 28

def command_name
  "normalize"
end

.parameter_namesObject

Since:

  • 1.0.6



32
33
34
35
36
37
38
# File 'lib/groonga/command/normalize.rb', line 32

def parameter_names
  [
    :normalizer,
    :string,
    :flags,
  ]
end

Instance Method Details

#flagsArray<String>

Returns An array of flags specified in flags parameter value. This array is extracted by parsing flags parameter value. If flags parameter value is nil or empty, an empty array is returned.

Returns:

  • (Array<String>)

    An array of flags specified in flags parameter value. This array is extracted by parsing flags parameter value. If flags parameter value is nil or empty, an empty array is returned.

Since:

  • 1.0.6



61
62
63
# File 'lib/groonga/command/normalize.rb', line 61

def flags
  @flags ||= flags_value(:flags)
end

#normalizerString

Returns normalizer parameter value.

Returns:

  • (String)

    normalizer parameter value.

Since:

  • 1.0.6



45
46
47
# File 'lib/groonga/command/normalize.rb', line 45

def normalizer
  self[:normalizer]
end

#stringString

Returns string parameter value.

Returns:

  • (String)

    string parameter value.

Since:

  • 1.0.6



51
52
53
# File 'lib/groonga/command/normalize.rb', line 51

def string
  self[:string]
end