Back to project page RabbitEars.
The source code is released under:
MIT License
If you think the Android project RabbitEars listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fbs.rabbitears.contracts.feed; /*w w w. jav a 2 s. co m*/ import com.google.gson.annotations.SerializedName; /** * Link Serialization Contract */ public class Link { @SerializedName("@href") public String href; @SerializedName("@rel") public String rel; @SerializedName("@type") public String type; public boolean isEnclosure() { return rel.equals("enclosure"); } }