Class: Hexspace::TBoolColumn

Inherits:
Object
  • Object
show all
Includes:
Thrift::Struct, Thrift::Struct_Union
Defined in:
lib/hexspace/tcli_service_types.rb,
lib/hexspace/tcli_service_types.rb

Constant Summary collapse

VALUES =
1
NULLS =
2
FIELDS =
{
  VALUES => {:type => ::Thrift::Types::LIST, :name => 'values', :element => {:type => ::Thrift::Types::BOOL}},
  NULLS => {:type => ::Thrift::Types::STRING, :name => 'nulls', :binary => true}
}

Instance Method Summary collapse

Instance Method Details

#struct_fieldsObject



784
# File 'lib/hexspace/tcli_service_types.rb', line 784

def struct_fields; FIELDS; end

#validateObject

Raises:

  • (::Thrift::ProtocolException)


786
787
788
789
# File 'lib/hexspace/tcli_service_types.rb', line 786

def validate
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field values is unset!') unless @values
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field nulls is unset!') unless @nulls
end