Skip to content

Instantly share code, notes, and snippets.

@vltsu
Last active December 23, 2015 17:19
Show Gist options
  • Save vltsu/6667617 to your computer and use it in GitHub Desktop.
Save vltsu/6667617 to your computer and use it in GitHub Desktop.
Java how-to's
// determine field type
if f.getType().isAssignableFrom(String.class)
if f.getType().equals(boolean.class)
if f.getType().isAssignableFrom(Date.class)
// if object is string
if (myObject instanceof String) { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment