Class StringToBoolean

java.lang.Object
org.springframework.binding.convert.converters.StringToObject
org.springframework.binding.convert.converters.StringToBoolean
All Implemented Interfaces:
Converter, TwoWayConverter

public class StringToBoolean extends StringToObject
Converts a textual representation of a boolean object to a Boolean instance.
Author:
Keith Donald
  • Constructor Details

    • StringToBoolean

      public StringToBoolean()
      Create a text boolean converter that parses standard true and false strings.
    • StringToBoolean

      public StringToBoolean(String trueString, String falseString)
      Create a text to boolean converter that takes specific string representations of true and false into account.
      Parameters:
      trueString - special true string to use
      falseString - special false string to use
  • Method Details