All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.social.twitter.api.impl.AbstractTrendsList Maven / Gradle / Ivy

There is a newer version: 1.1.2.RELEASE
Show newest version
/*
 * Copyright 2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.springframework.social.twitter.api.impl;

import java.text.DateFormat;
import java.text.ParseException;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;

import org.springframework.social.twitter.api.Trend;
import org.springframework.social.twitter.api.Trends;


/**
 * Abstract model class representing a list of trends.
 * @author Craig Walls
 */
class AbstractTrendsList {
	private final List list;

	public AbstractTrendsList(Map> trends, DateFormat dateFormat) {
		list = new ArrayList(trends.size());
		for(Iterator>> trendsIt = trends.entrySet().iterator(); trendsIt.hasNext();) {
			Entry> entry = trendsIt.next();
			
			list.add(new Trends(toDate(entry.getKey(), dateFormat), entry.getValue()));
		}
		Collections.sort(list, new Comparator() {
			public int compare(Trends t1, Trends t2) {
				return t1.getTime().getTime() > t2.getTime().getTime() ? -1 : 1;
			}
		});
	}

	public List getList() {
		return list;
	}
	
    protected Date toDate(String dateString, DateFormat dateFormat) {
        if (dateString == null) {
            return null;
        }

        try {
            return dateFormat.parse(dateString);
        } catch (ParseException e) {
            return null;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy