Package org.springframework.data.redis

Examples of org.springframework.data.redis.DoubleObjectFactory


   */
  public static Collection<Object[]> testParams() {

    ObjectFactory<String> stringFactory = new StringObjectFactory();
    ObjectFactory<Long> longFactory = new LongObjectFactory();
    ObjectFactory<Double> doubleFactory = new DoubleObjectFactory();
    ObjectFactory<byte[]> rawFactory = new RawObjectFactory();
    ObjectFactory<Person> personFactory = new PersonObjectFactory();

    // XStream serializer
    XStreamMarshaller xstream = new XStreamMarshaller();
View Full Code Here

TOP

Related Classes of org.springframework.data.redis.DoubleObjectFactory

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.