Package org.modelmapper.internal.converter

Examples of org.modelmapper.internal.converter.BooleanConverter


public class BooleanConverterTest extends AbstractConverterTest {
  public static final String[] STANDARD_TRUES = new String[] { "yes", "y", "true", "on", "1" };
  public static final String[] STANDARD_FALSES = new String[] { "no", "n", "false", "off", "0" };

  public BooleanConverterTest() {
    super(new BooleanConverter(), Boolean.class);
  }
View Full Code Here

TOP

Related Classes of org.modelmapper.internal.converter.BooleanConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.