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, #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



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

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

Instance Method Details

#default_tokenizerString?

Returns Default tokenizer name or nil.

Returns:

  • (String, nil)

    Default tokenizer name or nil.

Since:

  • 1.0.7



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

def default_tokenizer
  self[:default_tokenizer]
end

#flagsObject



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

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



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

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



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

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



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

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



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

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



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

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



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

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



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

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