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, #name, #original_format, #original_source

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#==, #[], #[]=, #command_format?, #has_key?, #initialize, #output_type, #to_command_format, #to_uri_format, #uri_format?

Constructor Details

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

Class Method Details

.parameter_namesObject

Since:

  • 1.0.6



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

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



57
58
59
# File 'lib/groonga/command/normalize.rb', line 57

def flags
  @flags ||= (self[:flags] || "").split(/\s*[| ]\s*/)
end

#normalizerString

Returns normalizer parameter value.

Returns:

  • (String)

    normalizer parameter value.

Since:

  • 1.0.6



41
42
43
# File 'lib/groonga/command/normalize.rb', line 41

def normalizer
  self[:normalizer]
end

#stringString

Returns string parameter value.

Returns:

  • (String)

    string parameter value.

Since:

  • 1.0.6



47
48
49
# File 'lib/groonga/command/normalize.rb', line 47

def string
  self[:string]
end