Package com.contentstack.sdk.utility
Class CSAppUtils
- java.lang.Object
-
- com.contentstack.sdk.utility.CSAppUtils
-
public class CSAppUtils extends Object
MIT License Copyright (c) 2012 - 2019 Contentstack Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CSAppUtils.DateComapareType
Type to compare dates.
-
Constructor Summary
Constructors Constructor Description CSAppUtils()
-
Method Summary
Modifier and Type Method Description static org.json.JSONObject
getJsonFromCacheFile(File file)
To retrieve data from cache.String
getMD5FromString(String value)
To encrypt given value.boolean
getResponseTimeFromCacheFile(File file, long time)
To check if required response within given time window available in cachestatic Calendar
parseDate(String date, String dateFormat, TimeZone timeZone)
Converts the given date to the user's timezone.
-
-
-
Method Detail
-
getResponseTimeFromCacheFile
public boolean getResponseTimeFromCacheFile(File file, long time)
To check if required response within given time window available in cache- Parameters:
file
- cache file.time
- time- Returns:
- true if cache data available which satisfy given time condition.
-
getJsonFromCacheFile
public static org.json.JSONObject getJsonFromCacheFile(File file)
To retrieve data from cache.- Parameters:
file
- cache file.- Returns:
- cache data in JSON.
-
getMD5FromString
public String getMD5FromString(String value)
To encrypt given value.- Parameters:
value
- string- Returns:
- MD5 value
-
parseDate
public static Calendar parseDate(String date, String dateFormat, TimeZone timeZone) throws ParseException
Converts the given date to the user's timezone.- Parameters:
date
-String
dateFormat
-String
timeZone
- String- Returns:
- Calendar
- Throws:
ParseException
-
Example :
CSAppUtils.parseDate(dateString, "yyyy-MM-dd'T'HH:mm:ssZ", TimeZone.getTimeZone("GMT"));
-
-