Source: tags/enum.js

/**
 * Enum for tri-state values.
 * @readonly
 * @enum {number}
 */
var triState = {
    /** The true value */
    TRUE: 1,
    FALSE: -1,
    /** @type {boolean} */
    MAYBE: true
};
THIS IS A DEMO: All content was generated with examples taken from the JSDoc page.