Examples of FromStringConverter


Examples of ma.glasnost.orika.converter.builtin.FromStringConverter

public class FromStringConverterTestCase  {

  @Test
  public void testConvertToEnum() {
    MapperFactory factory = MappingUtil.getMapperFactory();
    factory.getConverterFactory().registerConverter(new FromStringConverter());
    MapperFacade mapper = factory.getMapperFacade();
   
    Fruit fruit = mapper.map("TOMATO", Fruit.class);
    Assert.assertEquals(Fruit.TOMATO, fruit);
   
View Full Code Here

Examples of ma.glasnost.orika.converter.builtin.FromStringConverter

 
  @Test
  public void testConvertToPrimitive() {
   
    MapperFactory factory = MappingUtil.getMapperFactory();
    factory.getConverterFactory().registerConverter(new FromStringConverter());
    MapperFacade mapper = factory.getMapperFacade();
   
    int age = mapper.map("21", int.class);
    Assert.assertEquals(21, age);
  }
View Full Code Here

Examples of ma.glasnost.orika.converter.builtin.FromStringConverter

  }
 
  @Test
  public void testConvertToWrapper() {
    MapperFactory factory = MappingUtil.getMapperFactory();
    factory.getConverterFactory().registerConverter(new FromStringConverter());
    MapperFacade mapper = factory.getMapperFacade();
   
    Integer age = mapper.map("21", Integer.class);
    Assert.assertEquals(Integer.valueOf(21), age);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.