Interface MendixBoolean

All Superinterfaces:
IMendixObjectMember<Boolean>

public interface MendixBoolean extends IMendixObjectMember<Boolean>
Provides the interface for a Mendix attribute with type Boolean.
  • Method Details

    • getValueFromString

      Boolean getValueFromString(String stringValue)
      Parses and returns a value for this object member from a string.

      If the string is null returns null, otherwise uses Boolean.parseBoolean(String) to convert the string to a Boolean value.

      Specified by:
      getValueFromString in interface IMendixObjectMember<Boolean>
      Parameters:
      stringValue - the string representation of the Boolean value
      Returns:
      the Boolean value parsed from the string