Back to project page android-google-spreadsheets-api.
The source code is released under:
Apache License
If you think the Android project android-google-spreadsheets-api listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.spreadsheets.android.api.model; /*from w w w .j a v a 2 s. c o m*/ import com.google.api.client.util.Key; import java.util.ArrayList; import java.util.List; public class SpreadsheetFeed extends Feed { @Key("entry") public List<SpreadsheetEntry> spreadsheets = new ArrayList<SpreadsheetEntry>(); public List<SpreadsheetEntry> getEntries() { return spreadsheets; } public SpreadsheetEntry getSpreadsheetEntry(final String title) { if (title != null) { final String s = title.trim(); for (SpreadsheetEntry e : spreadsheets) { if (s.equals(e.title)) { return e; } } } return null; } }