Class: Groonga::Command::TableCreate
- 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
-
#default_tokenizer ⇒ String?
Default tokenizer name or nil.
- #flags ⇒ Object
-
#key_type ⇒ String?
Key type name, nil for array no key table.
-
#key_with_sis? ⇒ Boolean
True if "KEY_WITH_SIS" is specified in #flags, false otherwise.
-
#normalizer ⇒ String?
Normalizer name or nil.
-
#table_dat_key? ⇒ Boolean
True if "TABLE_DAT_KEY" is specified in #flags, false otherwise.
-
#table_hash_key? ⇒ Boolean
True if "TABLE_HASH_KEY" is specified in #flags, false otherwise.
-
#table_no_key? ⇒ Boolean
True if "TABLE_NO_KEY" is specified in #flags, false otherwise.
-
#table_pat_key? ⇒ Boolean
True if "TABLE_PAT_KEY" is specified in #flags, false otherwise.
-
#token_filters ⇒ ::Array<String>
Token filter names.
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_names ⇒ Object
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_tokenizer ⇒ String?
Returns Default tokenizer name or nil.
85 86 87 |
# File 'lib/groonga/command/table-create.rb', line 85 def default_tokenizer self[:default_tokenizer] end |
#flags ⇒ Object
44 45 46 |
# File 'lib/groonga/command/table-create.rb', line 44 def flags @flags ||= (self[:flags] || "").split(/\s*\|\s*/) end |
#key_type ⇒ String?
Returns Key type name, nil for array no key table.
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.
79 80 81 |
# File 'lib/groonga/command/table-create.rb', line 79 def key_with_sis? flags.include?("KEY_WITH_SIS") end |
#normalizer ⇒ String?
Returns Normalizer name or nil.
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.
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.
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.
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.
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.
97 98 99 |
# File 'lib/groonga/command/table-create.rb', line 97 def token_filters @token_filters ||= (self[:token_filters] || "").split(/\s*\|\s*/) end |