Class: Arrow::Field
- Inherits:
-
Object
- Object
- Arrow::Field
- Defined in:
- lib/arrow/field.rb
Class Method Summary collapse
- .try_convert(value) ⇒ Object private
Instance Method Summary collapse
-
#initialize(*args) ⇒ Field
constructor
Creates a new Field.
Constructor Details
#initialize(name, data_type, nullable = false) ⇒ Field #initialize(description) ⇒ Field
Creates a new Arrow::Field.
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
# File 'lib/arrow/field.rb', line 113 def initialize(*args) n_args = args.size case n_args when 1 description = args[0] name = nil data_type = nil data_type_description = {} nullable = nil description.each do |key, value| key = key.to_sym case key when :name name = value when :data_type data_type = DataType.resolve(value) when :nullable nullable = value else data_type_description[key] = value end end data_type ||= DataType.resolve(data_type_description) when 2 name = args[0] data_type = args[1] if data_type.is_a?(Hash) data_type = data_type.dup nullable = data_type.delete(:nullable) else nullable = nil end data_type = DataType.resolve(data_type) when 3 name = args[0] data_type = DataType.resolve(args[1]) nullable = args[2] else = "wrong number of arguments (given #{n_args}, expected 1..3)" raise ArgumentError, end nullable = true if nullable.nil? initialize_raw(name, data_type, nullable) end |
Class Method Details
.try_convert(value) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/arrow/field.rb', line 22 def try_convert(value) case value when Hash begin new(value) rescue ArgumentError nil end else nil end end |