Skip to content

Instantly share code, notes, and snippets.

@YuukiARIA
Created September 2, 2013 07:08
Show Gist options
  • Save YuukiARIA/6409957 to your computer and use it in GitHub Desktop.
Save YuukiARIA/6409957 to your computer and use it in GitHub Desktop.
[memo] helping inference of a type parameter
class Entity<X>
{
public Entity(X x)
{
}
public static <X> Entity<X> of(X x)
{
return new Entity<X>(x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment