Class: Groonga::Command::TableCreate

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

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

.parameter_namesObject



25
26
27
28
29
30
31
32
33
34
35
# File 'lib/groonga/command/table-create.rb', line 25

def parameter_names
  [
    :name,
    :flags,
    :key_type,
    :value_type,
    :default_tokenizer,
    :normalizer,
    :token_filters,
  ]
end

Instance Method Details

#default_tokenizerString?

Returns Default tokenizer name or nil.

Returns:

  • (String, nil)

    Default tokenizer name or nil.

Since:

  • 1.0.7



85
86
87
# File 'lib/groonga/command/table-create.rb', line 85

def default_tokenizer
  self[:default_tokenizer]
end

#flagsObject



44
45
46
# File 'lib/groonga/command/table-create.rb', line 44

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

#key_typeString?

Returns Key type name, nil for array no key table.

Returns:

  • (String, nil)

    Key type name, nil for array no key table.

Since:

  • 1.0.7



40
41
42
# File 'lib/groonga/command/table-create.rb', line 40

def key_type
  self[:key_type]
end

#key_with_sis?Boolean

Returns true if "KEY_WITH_SIS" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "KEY_WITH_SIS" is specified in #flags, false otherwise.

Since:

  • 1.0.3



79
80
81
# File 'lib/groonga/command/table-create.rb', line 79

def key_with_sis?
  flags.include?("KEY_WITH_SIS")
end

#normalizerString?

Returns Normalizer name or nil.

Returns:

  • (String, nil)

    Normalizer name or nil.

Since:

  • 1.0.7



91
92
93
# File 'lib/groonga/command/table-create.rb', line 91

def normalizer
  self[:normalizer]
end

#table_dat_key?Boolean

Returns true if "TABLE_DAT_KEY" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "TABLE_DAT_KEY" is specified in #flags, false otherwise.

Since:

  • 1.0.3



72
73
74
# File 'lib/groonga/command/table-create.rb', line 72

def table_dat_key?
  flags.include?("TABLE_DAT_KEY")
end

#table_hash_key?Boolean

Returns true if "TABLE_HASH_KEY" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "TABLE_HASH_KEY" is specified in #flags, false otherwise.

Since:

  • 1.0.3



58
59
60
# File 'lib/groonga/command/table-create.rb', line 58

def table_hash_key?
  flags.include?("TABLE_HASH_KEY")
end

#table_no_key?Boolean

Returns true if "TABLE_NO_KEY" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "TABLE_NO_KEY" is specified in #flags, false otherwise.

Since:

  • 1.0.3



51
52
53
# File 'lib/groonga/command/table-create.rb', line 51

def table_no_key?
  flags.include?("TABLE_NO_KEY")
end

#table_pat_key?Boolean

Returns true if "TABLE_PAT_KEY" is specified in #flags, false otherwise.

Returns:

  • (Boolean)

    true if "TABLE_PAT_KEY" is specified in #flags, false otherwise.

Since:

  • 1.0.3



65
66
67
# File 'lib/groonga/command/table-create.rb', line 65

def table_pat_key?
  flags.include?("TABLE_PAT_KEY")
end

#token_filters::Array<String>

Returns Token filter names.

Returns:

  • (::Array<String>)

    Token filter names.

Since:

  • 1.2.1



97
98
99
# File 'lib/groonga/command/table-create.rb', line 97

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