These are generalities about the current JavaScript environment
===============================================================

The JavaScript environment implements a function to list all the
properties of a given entity.

To list all the values of a given property, use the
Object.getOwnPropertyNames(<entity>) function call.

For example, to list all the values of the BinningType enum object
that is itself a property of the pappso object, that is itself a
property of the pappso object, run the following command:

Object.getOwnPropertyNames(this.pappso.Enums.BinningType)

This command returns the following:

NONE,DATA_BASED,ARBITRARY

These values match exactly the

pappso::Enums::MzIntegrationParams::BinningType::NONE
pappso::Enums::MzIntegrationParams::BinningType::DATA_BASED
pappso::Enums::MzIntegrationParams::BinningType::ARBITRARY

BinningType enum that is declared in the pappso::MzIntegrationParams class.

