// DisplayByStateUtils
//  setDisplayAlpha(boolean)
//  getDisplayAlpha()
//
//  choices are: alphabetical or grouped

function DisplayByStateUtils() {
    this._alphaUtils = newBooleanInStorage('Lenses.DisplayByStateUtils.Alpha');

    this.setDisplayAlpha = function setDisplayAlpha(booleanValue) {
        this._alphaUtils.set(booleanValue);
    };

    this.getDisplayAlpha = function getDisplayAlpha() {
        const booleanValue = this._alphaUtils.get();
        return booleanValue;
    };

    this.hasValue = function hasValue() {
        return this._alphaUtils.hasValue();
    };
}