class Impala::Protocol::TTypeQualifierValue
Constants
- FIELDS
- I32VALUE
- STRINGVALUE
Public Class Methods
i32Value(val)
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 151 def i32Value(val) 152 TTypeQualifierValue.new(:i32Value, val) 153 end
stringValue(val)
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 155 def stringValue(val) 156 TTypeQualifierValue.new(:stringValue, val) 157 end
Public Instance Methods
struct_fields()
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 168 def struct_fields; FIELDS; end
validate()
click to toggle source
# File lib/impala/protocol/t_c_l_i_service_types.rb 170 def validate 171 raise(StandardError, 'Union fields are not set.') if get_set_field.nil? || get_value.nil? 172 end