in src/main/java/org/apache/fineract/cn/cassandra/util/LocalDateTimeCodec.java [50:63]
public LocalDateTime parse(final String value) throws InvalidTypeException {
final String toParse;
if (ParseUtils.isQuoted(value)) {
toParse = ParseUtils.unquote(value);
} else {
toParse = value;
}
if (ParseUtils.isLongLiteral(toParse)) {
return DateConverter.fromEpochMillis(Long.parseLong(toParse));
} else {
return DateConverter.fromIsoString(toParse);
}
}