Enum FeedType

    • Enum Constant Detail

      • TOP_AUDIOBOOKS

        public static final FeedType TOP_AUDIOBOOKS
      • TOP_PAID

        public static final FeedType TOP_PAID
      • TOP_FREE

        public static final FeedType TOP_FREE
      • NEW_APPS_WE_LOVE

        public static final FeedType NEW_APPS_WE_LOVE
      • NEW_GAMES_WE_LOVE

        public static final FeedType NEW_GAMES_WE_LOVE
      • TOP_FREE_IPAD

        public static final FeedType TOP_FREE_IPAD
      • TOP_GROSSING_IPAD

        public static final FeedType TOP_GROSSING_IPAD
      • TOP_GROSSING

        public static final FeedType TOP_GROSSING
      • TOP_FREE_GAMES

        public static final FeedType TOP_FREE_GAMES
      • TOP_PAID_GAMES

        public static final FeedType TOP_PAID_GAMES
      • TOP_ITUNES_U_COLLECTION

        public static final FeedType TOP_ITUNES_U_COLLECTION
      • TOP_ITUNES_U_COURSES

        public static final FeedType TOP_ITUNES_U_COURSES
      • TOP_MOVIES

        public static final FeedType TOP_MOVIES
      • TOP_MOVIES_ACTION_AND_ADVENTURE

        public static final FeedType TOP_MOVIES_ACTION_AND_ADVENTURE
      • TOP_MOVIES_DOCUMENTARY

        public static final FeedType TOP_MOVIES_DOCUMENTARY
      • TOP_MUSIC_VIDEOS

        public static final FeedType TOP_MUSIC_VIDEOS
      • TOP_PODCASTS

        public static final FeedType TOP_PODCASTS
      • TOP_TV_EPISODES

        public static final FeedType TOP_TV_EPISODES
      • TOP_TV_SEASONS

        public static final FeedType TOP_TV_SEASONS
      • NEW_MUSIC

        public static final FeedType NEW_MUSIC
      • RECENT_RELEASES

        public static final FeedType RECENT_RELEASES
      • HOT_ALBUMS

        public static final FeedType HOT_ALBUMS
      • TOP_SONGS

        public static final FeedType TOP_SONGS
      • TOP_ALBUMS

        public static final FeedType TOP_ALBUMS
      • TOP_SONGS_COUNTRY

        public static final FeedType TOP_SONGS_COUNTRY
      • HOT_TRACKS

        public static final FeedType HOT_TRACKS
      • HOT_TRACKS_COUNTRY

        public static final FeedType HOT_TRACKS_COUNTRY
      • TOP_MAC_APPS

        public static final FeedType TOP_MAC_APPS
      • TOP_FREE_MAC_APPS

        public static final FeedType TOP_FREE_MAC_APPS
      • TOP_PAID_MAC_APPS

        public static final FeedType TOP_PAID_MAC_APPS
      • TOP_GROSSING_MAC_APPS

        public static final FeedType TOP_GROSSING_MAC_APPS
    • Method Detail

      • values

        public static FeedType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FeedType c : FeedType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FeedType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getCode

        public String getCode()