Skip to content

Instantly share code, notes, and snippets.

View mkubala's full-sized avatar

Marcin Kubala mkubala

  • SoftwareMill
  • Kraków, Poland
  • 16:27 (UTC +02:00)
View GitHub Profile
@mkubala
mkubala / getDateField
Last active December 14, 2015 09:19 — forked from ksiwonia/getDateField
public Date getDateField(final String fieldName) {
final Object fieldValue = getField(fieldName);
if (fieldValue == null) {
return null;
}
if (fieldValue instanceof Long) {
return new Date((Long) fieldValue);
}
if (fieldValue instanceof Date) {
Date fieldDateValue = (Date) fieldValue;