I found code examples in internet for reading the data from the latest version of Google Sheet as below:
SpreadsheetService service = new SpreadsheetService("Print Google Spreadsheet Demo");
service.setUserCredentials(GOOGLE_ACCOUNT_USERNAME, GOOGLE_ACCOUNT_PASSWORD);
URL metafeedUrl = new URL(SPREADSHEET_URL);
SpreadsheetEntry spreadsheet = service.getEntry(metafeedUrl, SpreadsheetEntry.class);
URL listFeedUrl = ((WorksheetEntry) spreadsheet.getWorksheets().get(0)).getListFeedUrl();
But I cannot find any examples, to access a particular version of the Google Sheet and get a cells value in that revision.
Also please let me know, if the above requirement can be completed using google spreadsheet APIs.