Package mobi :: Package mtld :: Package da :: Module data_type :: Class DataType
[hide private]
[frames] | no frames]

Class DataType

object --+
         |
        DataType
Known Subclasses:

Class to represent the data types of the properties. Each returned Property object has a data_type() method.

Instance Methods [hide private]

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Static Methods [hide private]
 
name(data_type_id)
Class Variables [hide private]
  BOOLEAN = 0
  BYTE = 1
  DOUBLE = 6
  FLOAT = 5
  INTEGER = 3
  LONG = 4
  SHORT = 2
  STRING = 7
  UNKNOWN = 8
  __names = {0: u'Boolean', 1: u'Byte', 2: u'Short', 3: u'Intege...
Properties [hide private]

Inherited from object: __class__

Class Variable Details [hide private]

__names

Value:
{0: u'Boolean',
 1: u'Byte',
 2: u'Short',
 3: u'Integer',
 4: u'Long',
 5: u'Float',
 6: u'Double',
 7: u'String',
...