Bharath,

Are you getting this error?

> Exception in thread "main" java.lang.IllegalArgumentException: No enum const 
> class com.evdb.javaapi.data.Link$LinkType.OFFICIAL SITE
>       at java.lang.Enum.valueOf(Enum.java:196)

I was able to solve this by patching com/evdb/javaapi/data/Link.java with this:

> 141c141
> <                     this.type = LinkType.valueOf(typeString.toUpperCase());
> ---
> >                     this.type = 
> > LinkType.valueOf(typeString.toUpperCase().replace(' ', '_'));

Let me know if this solves your issue.

John Tantalo,
Eventful, Inc.

On Aug 16, 2010, at 12:46 PM, Bharath Alapati wrote:

> I found out that getType() from Link class is also not working.
> 

Reply via email to