class Hexspace::TColumnValue

Constants

BOOLVAL
BYTEVAL
DOUBLEVAL
FIELDS
I16VAL
I32VAL
I64VAL
STRINGVAL

Public Class Methods

boolVal(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 701
def boolVal(val)
  TColumnValue.new(:boolVal, val)
end
byteVal(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 705
def byteVal(val)
  TColumnValue.new(:byteVal, val)
end
doubleVal(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 721
def doubleVal(val)
  TColumnValue.new(:doubleVal, val)
end
i16Val(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 709
def i16Val(val)
  TColumnValue.new(:i16Val, val)
end
i32Val(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 713
def i32Val(val)
  TColumnValue.new(:i32Val, val)
end
i64Val(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 717
def i64Val(val)
  TColumnValue.new(:i64Val, val)
end
stringVal(val) click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 725
def stringVal(val)
  TColumnValue.new(:stringVal, val)
end

Public Instance Methods

struct_fields() click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 748
def struct_fields; FIELDS; end
validate() click to toggle source
# File lib/hexspace/tcli_service_types.rb, line 750
def validate
  raise(StandardError, 'Union fields are not set.') if get_set_field.nil? || get_value.nil?
end