Examples of DoubanWhenObj


Examples of com.dongxuexidu.douban4j.model.common.DoubanWhenObj

    if (startTime.after(endTime)) {
      return null;
    }
    String startTimeStr = Converters.convertDateToStringInRFC3339(startTime);
    String endTimeStr = Converters.convertDateToStringInRFC3339(endTime);
    DoubanWhenObj when = new DoubanWhenObj();
    when.setStartTime(startTimeStr);
    when.setEndTime(endTimeStr);
    entry.setWhen(when);
    DoubanWhereObj whereObj = new DoubanWhereObj();
    whereObj.setValue(where);
    entry.setWhere(whereObj);
    return entry;
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.