Class BooleanRioSetting

    • Constructor Detail

      • BooleanRioSetting

        public BooleanRioSetting​(String key,
                                 String description,
                                 Boolean defaultValue)
        Creates a new boolean RioSetting.
        Parameters:
        key - A unique key to use for this setting.
        description - A short human-readable description for this setting.
        defaultValue - An immutable value specifying the default for this setting.
    • Method Detail

      • convert

        public Boolean convert​(String stringValue)
        Converts a String to a Boolean
        Parameters:
        stringValue - a string representation of a value for this setting.
        Returns:
        a Boolean representing the supplied string value. Iff the string value is "true" (ignoring case), the returned Boolean will be true, otherwise false.