Simple Data Type Variables

Definitions for data types that represent a single number (e.g. 4.56) and a simple date (e.g. 01/01/1970)

Simple data types represent values that are single and atomic (for example, a single double precision number).

author:

Athanasios Anastasiou

date:

Jan 2018

class neoads.simple.SimpleDate(value, name=None, **kwargs)

A typical single date.

Parameters:

value (neomodel.DateProperty) – The date that this element represents.

DoesNotExist

alias of SimpleDateDoesNotExist

class neoads.simple.SimpleFloat(value, name=None)

A typical single Real number.

Parameters:

value (neomodel.FloatProperty) – An integer

DoesNotExist

alias of SimpleFloatDoesNotExist

class neoads.simple.SimpleInteger(value, name=None)

A typical single integer number.

Parameters:

value (neomodel.IntegerProperty) – An integer

DoesNotExist

alias of SimpleIntegerDoesNotExist

class neoads.simple.SimpleNumber(value, name=None)

A typical single number.

Note: To avoid over complicating things, a neoads “number” is a

double precision real number.

Parameters:

value (neomodel.FloatProperty) – A double precision real number

DoesNotExist

alias of SimpleNumberDoesNotExist

class neoads.simple.VariableSimple(value, name=None)

Base type for variables that are of Simple data types.

DoesNotExist

alias of VariableSimpleDoesNotExist