From 421d3512ca4e466fd2997ff085bfb74770622ede Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Fri, 7 Apr 2023 00:06:04 -0700 Subject: Added Javadoc --- com/pina/Holodex.html | 347 +++++++++++++++++ com/pina/HolodexException.html | 191 ++++++++++ com/pina/HolodexService.html | 443 ++++++++++++++++++++++ com/pina/datatypes/Channel.html | 271 +++++++++++++ com/pina/datatypes/Comment.html | 194 ++++++++++ com/pina/datatypes/SimpleChannel.html | 225 +++++++++++ com/pina/datatypes/SimpleVideo.html | 315 +++++++++++++++ com/pina/datatypes/Video.html | 244 ++++++++++++ com/pina/datatypes/package-summary.html | 123 ++++++ com/pina/datatypes/package-tree.html | 81 ++++ com/pina/package-summary.html | 121 ++++++ com/pina/package-tree.html | 86 +++++ com/pina/query/ChannelQueryBuilder.html | 407 ++++++++++++++++++++ com/pina/query/VideoByVideoIdQueryBuilder.html | 223 +++++++++++ com/pina/query/VideoQueryBuilder.html | 439 +++++++++++++++++++++ com/pina/query/VideosByChannelIDQueryBuilder.html | 295 ++++++++++++++ com/pina/query/package-summary.html | 119 ++++++ com/pina/query/package-tree.html | 74 ++++ 18 files changed, 4198 insertions(+) create mode 100644 com/pina/Holodex.html create mode 100644 com/pina/HolodexException.html create mode 100644 com/pina/HolodexService.html create mode 100644 com/pina/datatypes/Channel.html create mode 100644 com/pina/datatypes/Comment.html create mode 100644 com/pina/datatypes/SimpleChannel.html create mode 100644 com/pina/datatypes/SimpleVideo.html create mode 100644 com/pina/datatypes/Video.html create mode 100644 com/pina/datatypes/package-summary.html create mode 100644 com/pina/datatypes/package-tree.html create mode 100644 com/pina/package-summary.html create mode 100644 com/pina/package-tree.html create mode 100644 com/pina/query/ChannelQueryBuilder.html create mode 100644 com/pina/query/VideoByVideoIdQueryBuilder.html create mode 100644 com/pina/query/VideoQueryBuilder.html create mode 100644 com/pina/query/VideosByChannelIDQueryBuilder.html create mode 100644 com/pina/query/package-summary.html create mode 100644 com/pina/query/package-tree.html (limited to 'com') diff --git a/com/pina/Holodex.html b/com/pina/Holodex.html new file mode 100644 index 0000000..dc5ea50 --- /dev/null +++ b/com/pina/Holodex.html @@ -0,0 +1,347 @@ + + + + +Holodex + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package com.pina
+

Class Holodex

+
+
java.lang.Object +
com.pina.Holodex
+
+
+
+
public class Holodex +extends Object
+
The class for interacting with the Holodex API
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Holodex

      +
      public Holodex(String apiKey)
      +
      Instantiates a new Holodex with the default base url
      +
      +
      Parameters:
      +
      apiKey - the api key
      +
      +
      +
    • +
    • +
      +

      Holodex

      +
      public Holodex(String apiKey, + String baseUrl)
      +
      Instantiates a new Holodex with a custom base url
      +
      +
      Parameters:
      +
      apiKey - the api key
      +
      baseUrl - the base url
      +
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getLiveAndUpcomingVideos

      +
      public List<SimpleVideo> getLiveAndUpcomingVideos(VideoQueryBuilder queryBuilder) + throws HolodexException
      +
      Gets a list of upcoming and/or live SimpleVideos matching the VideoQueryBuilder attributes
      +
      +
      Parameters:
      +
      queryBuilder - the query builder
      +
      Returns:
      +
      the live and upcoming videos
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    • +
      +

      getVideos

      +
      public List<Video> getVideos(VideoQueryBuilder queryBuilder) + throws HolodexException
      +
      Gets a list of videos matching the VideoQueryBuilder attributes
      +
      +
      Parameters:
      +
      queryBuilder - the query builder
      +
      Returns:
      +
      the videos
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    • +
      +

      getChannel

      +
      public Channel getChannel(String channelId) + throws HolodexException
      +
      Gets information about a channel when given a channel id
      +
      +
      Parameters:
      +
      channelId - the channel id
      +
      Returns:
      +
      the channel
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    • +
      +

      getVideosByChannelId

      +
      public List<Video> getVideosByChannelId(VideosByChannelIDQueryBuilder query) + throws HolodexException
      +
      Gets a list of Videos matching the VideoByVideoIdQueryBuilder attributes for a specific channel + Used for when the channel id is known
      +
      +
      Parameters:
      +
      query - the query
      +
      Returns:
      +
      the videos by channel id
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    • +
      +

      getVideosFromChannels

      +
      public List<Video> getVideosFromChannels(String[] channels) + throws HolodexException
      +
      Gets upcoming and live videos from an array of channel ids + Response will contain videos from all channels together + This should be used when there is a set of channels that need to be queried
      +
      +
      Parameters:
      +
      channels - the channel ids to get videos from
      +
      Returns:
      +
      the videos from channels
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    • +
      +

      getVideo

      +
      public Video getVideo(VideoByVideoIdQueryBuilder query) + throws HolodexException
      +
      Gets the video matching the VideoByVideoIdQueryBuilder attributes
      +
      +
      Parameters:
      +
      query - the query
      +
      Returns:
      +
      the video
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    • +
      +

      getChannels

      +
      public List<Channel> getChannels(ChannelQueryBuilder query) + throws HolodexException
      +
      Gets a list of channels the match the ChannelQueryBuilder attributes
      +
      +
      Parameters:
      +
      query - the query
      +
      Returns:
      +
      the channels
      +
      Throws:
      +
      HolodexException - the holodex exception
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/HolodexException.html b/com/pina/HolodexException.html new file mode 100644 index 0000000..2714ca3 --- /dev/null +++ b/com/pina/HolodexException.html @@ -0,0 +1,191 @@ + + + + +HolodexException + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package com.pina
+

Class HolodexException

+
+
java.lang.Object +
java.lang.Throwable +
java.lang.Exception +
com.pina.HolodexException
+
+
+
+
+
+
All Implemented Interfaces:
+
Serializable
+
+
+
public class HolodexException +extends Exception
+
Class for Holodex related exceptions
+
+
See Also:
+
+ +
+
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      HolodexException

      +
      public HolodexException(String message)
      +
      Instantiates a new Holodex exception.
      +
      +
      Parameters:
      +
      message - the message
      +
      +
      +
    • +
    • +
      +

      HolodexException

      +
      public HolodexException(String message, + Throwable cause)
      +
      Instantiates a new Holodex exception.
      +
      +
      Parameters:
      +
      message - the message
      +
      cause - the cause
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/HolodexService.html b/com/pina/HolodexService.html new file mode 100644 index 0000000..57d4475 --- /dev/null +++ b/com/pina/HolodexService.html @@ -0,0 +1,443 @@ + + + + +HolodexService + + + + + + + + + + + + + + + +
+ +
+
+ +
+
Package com.pina
+

Interface HolodexService

+
+
+
+
public interface HolodexService
+
The interface Holodex service.
+
+
+ +
+
+
    + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getLiveVideos

      +
      @GET("/api/v2/live") +retrofit2.Call<List<SimpleVideo>> getLiveVideos(@Query("channel_id") + String channel_id, + @Query("id") + String id, + @Query("include") + String include, + @Query("lang") + String lang, + @Query("limit") + Integer limit, + @Query("maxUpcomingHours") + Integer maxUpcomingHours, + @Query("mentioned_channel_id") + String mentioned_channel_id, + @Query("offset") + Integer offset, + @Query("order") + String order, + @Query("org") + String org, + @Query("paginated") + String paginated, + @Query("sort") + String sort, + @Query("status") + String status, + @Query("topic") + String topic, + @Query("type") + String type)
      +
      /api/v2/live endpoint
      +
      +
      Parameters:
      +
      channel_id - the channel id
      +
      id - the id
      +
      include - the include
      +
      lang - the lang
      +
      limit - the limit
      +
      maxUpcomingHours - the max upcoming hours
      +
      mentioned_channel_id - the mentioned channel id
      +
      offset - the offset
      +
      order - the order
      +
      org - the org
      +
      paginated - the paginated
      +
      sort - the sort
      +
      status - the status
      +
      topic - the topic
      +
      type - the type
      +
      Returns:
      +
      the live videos
      +
      +
      +
    • +
    • +
      +

      getVideos

      +
      @GET("/api/v2/videos") +retrofit2.Call<List<Video>> getVideos(@Query("channel_id") + String channel_id, + @Query("id") + String id, + @Query("include") + String include, + @Query("lang") + String lang, + @Query("limit") + Integer limit, + @Query("max_upcoming_hours") + Integer max_upcoming_hours, + @Query("mentioned_channel_id") + String mentioned_channel_id, + @Query("offset") + Integer offset, + @Query("order") + String order, + @Query("org") + String org, + @Query("paginated") + String paginated, + @Query("sort") + String sort, + @Query("status") + String status, + @Query("topic") + String topic, + @Query("type") + String type)
      +
      /api/v2/video endpoint
      +
      +
      Parameters:
      +
      channel_id - the channel id
      +
      id - the id
      +
      include - the include
      +
      lang - the lang
      +
      limit - the limit
      +
      max_upcoming_hours - the max upcoming hours
      +
      mentioned_channel_id - the mentioned channel id
      +
      offset - the offset
      +
      order - the order
      +
      org - the org
      +
      paginated - the paginated
      +
      sort - the sort
      +
      status - the status
      +
      topic - the topic
      +
      type - the type
      +
      Returns:
      +
      the videos
      +
      +
      +
    • +
    • +
      +

      getChannel

      +
      @GET("/api/v2/channels/{channelID}") +retrofit2.Call<Channel> getChannel(@Path("channelID") + String channelID)
      +
      /api/v2/channels endpoint
      +
      +
      Parameters:
      +
      channelID - the channel id
      +
      Returns:
      +
      the channel
      +
      +
      +
    • +
    • +
      +

      getVideosByChannelId

      +
      @GET("/api/v2/channels/{channelID}/{type}") +retrofit2.Call<List<Video>> getVideosByChannelId(@Path("channelID") + String channelID, + @Path("type") + String type, + @Query("include") + String include, + @Query("lang") + String lang, + @Query("limit") + Integer limit, + @Query("offset") + Integer offset, + @Query("paginated") + String paginated)
      +
      /api/v2/channels/{channelID}/{type} endpoint
      +
      +
      Parameters:
      +
      channelID - the channel id
      +
      type - the type
      +
      include - the include
      +
      lang - the lang
      +
      limit - the limit
      +
      offset - the offset
      +
      paginated - the paginated
      +
      Returns:
      +
      the videos by channel id
      +
      +
      +
    • +
    • +
      +

      getVideosFromChannels

      +
      @GET("/api/v2/users/live") +retrofit2.Call<List<Video>> getVideosFromChannels(@Query("channels") + String channels)
      +
      /api/v2/users/live endpoint
      +
      +
      Parameters:
      +
      channels - the channels
      +
      Returns:
      +
      the videos from channels
      +
      +
      +
    • +
    • +
      +

      getVideo

      +
      @GET("/api/v2/videos/{videoID}") +retrofit2.Call<Video> getVideo(@Path("videoID") + String videoID, + @Query("lang") + String lang, + @Query("c") + String c)
      +
      /api/v2/videos/{videoID} endpoint
      +
      +
      Parameters:
      +
      videoID - the video id
      +
      lang - the lang
      +
      c - the c
      +
      Returns:
      +
      the video
      +
      +
      +
    • +
    • +
      +

      getChannels

      +
      @GET("/api/v2/channels") +retrofit2.Call<List<Channel>> getChannels(@Query("limit") + Integer limit, + @Query("offset") + Integer offset, + @Query("type") + String type, + @Query("lang") + String lang, + @Query("order") + String order, + @Query("org") + String org, + @Query("sort") + String sort)
      +
      /api/v2/channels endpoint
      +
      +
      Parameters:
      +
      limit - the limit
      +
      offset - the offset
      +
      type - the type
      +
      lang - the lang
      +
      order - the order
      +
      org - the org
      +
      sort - the sort
      +
      Returns:
      +
      the channels
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/datatypes/Channel.html b/com/pina/datatypes/Channel.html new file mode 100644 index 0000000..f76f417 --- /dev/null +++ b/com/pina/datatypes/Channel.html @@ -0,0 +1,271 @@ + + + + +Channel + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Channel

+
+
java.lang.Object +
com.pina.datatypes.SimpleChannel +
com.pina.datatypes.Channel
+
+
+
+
+
public class Channel +extends SimpleChannel
+
Channel object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      suborg

      +
      public String suborg
      +
      +
    • +
    • + +
    • +
    • +
      +

      twitter

      +
      public String twitter
      +
      +
    • +
    • +
      +

      video_count

      +
      public String video_count
      +
      +
    • +
    • +
      +

      subscriber_count

      +
      public String subscriber_count
      +
      +
    • +
    • +
      +

      view_count

      +
      public String view_count
      +
      +
    • +
    • +
      +

      clip_count

      +
      public String clip_count
      +
      +
    • +
    • +
      +

      lang

      +
      public String lang
      +
      +
    • +
    • +
      +

      published_at

      +
      public String published_at
      +
      +
    • +
    • +
      +

      inactive

      +
      public boolean inactive
      +
      +
    • +
    • +
      +

      description

      +
      public String description
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Channel

      +
      public Channel()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/datatypes/Comment.html b/com/pina/datatypes/Comment.html new file mode 100644 index 0000000..1b7b3a6 --- /dev/null +++ b/com/pina/datatypes/Comment.html @@ -0,0 +1,194 @@ + + + + +Comment + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Comment

+
+
java.lang.Object +
com.pina.datatypes.Comment
+
+
+
+
public class Comment +extends Object
+
Comment object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      comment_key

      +
      public String comment_key
      +
      +
    • +
    • +
      +

      video_id

      +
      public String video_id
      +
      +
    • +
    • +
      +

      message

      +
      public String message
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Comment

      +
      public Comment()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/datatypes/SimpleChannel.html b/com/pina/datatypes/SimpleChannel.html new file mode 100644 index 0000000..25dff6f --- /dev/null +++ b/com/pina/datatypes/SimpleChannel.html @@ -0,0 +1,225 @@ + + + + +SimpleChannel + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SimpleChannel

+
+
java.lang.Object +
com.pina.datatypes.SimpleChannel
+
+
+
+
Direct Known Subclasses:
+
Channel
+
+
+
public class SimpleChannel +extends Object
+
Simple channel object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      id

      +
      public String id
      +
      +
    • +
    • +
      +

      name

      +
      public String name
      +
      +
    • +
    • +
      +

      english_name

      +
      public String english_name
      +
      +
    • +
    • +
      +

      type

      +
      public String type
      +
      +
    • +
    • +
      +

      photo

      +
      public String photo
      +
      +
    • +
    • +
      +

      org

      +
      public String org
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      SimpleChannel

      +
      public SimpleChannel()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/datatypes/SimpleVideo.html b/com/pina/datatypes/SimpleVideo.html new file mode 100644 index 0000000..f4bee67 --- /dev/null +++ b/com/pina/datatypes/SimpleVideo.html @@ -0,0 +1,315 @@ + + + + +SimpleVideo + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class SimpleVideo

+
+
java.lang.Object +
com.pina.datatypes.SimpleVideo
+
+
+
+
Direct Known Subclasses:
+
Video
+
+
+
public class SimpleVideo +extends Object
+
Simple video object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      id

      +
      public String id
      +
      +
    • +
    • +
      +

      title

      +
      public String title
      +
      +
    • +
    • +
      +

      type

      +
      public String type
      +
      +
    • +
    • +
      +

      topic_id

      +
      public String topic_id
      +
      +
    • +
    • +
      +

      published_at

      +
      public String published_at
      +
      +
    • +
    • +
      +

      available_at

      +
      public String available_at
      +
      +
    • +
    • +
      +

      duration

      +
      public int duration
      +
      +
    • +
    • +
      +

      status

      +
      public String status
      +
      +
    • +
    • +
      +

      start_scheduled

      +
      public String start_scheduled
      +
      +
    • +
    • +
      +

      start_actual

      +
      public String start_actual
      +
      +
    • +
    • +
      +

      end_actual

      +
      public String end_actual
      +
      +
    • +
    • +
      +

      live_viewers

      +
      public int live_viewers
      +
      +
    • +
    • +
      +

      description

      +
      public String description
      +
      +
    • +
    • +
      +

      songcount

      +
      public int songcount
      +
      +
    • +
    • +
      +

      channel_id

      +
      public String channel_id
      +
      +
    • +
    • +
      +

      channel

      +
      public Channel channel
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      SimpleVideo

      +
      public SimpleVideo()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/datatypes/Video.html b/com/pina/datatypes/Video.html new file mode 100644 index 0000000..ed9c1cc --- /dev/null +++ b/com/pina/datatypes/Video.html @@ -0,0 +1,244 @@ + + + + +Video + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class Video

+
+
java.lang.Object +
com.pina.datatypes.SimpleVideo +
com.pina.datatypes.Video
+
+
+
+
+
public class Video +extends SimpleVideo
+
Video object
+
+
+ +
+
+
    + +
  • +
    +

    Field Details

    +
      +
    • +
      +

      clips

      +
      public List<Video> clips
      +
      +
    • +
    • +
      +

      sources

      +
      public List<Video> sources
      +
      +
    • +
    • +
      +

      refers

      +
      public List<Video> refers
      +
      +
    • +
    • +
      +

      simulcasts

      +
      public List<Video> simulcasts
      +
      +
    • +
    • +
      +

      mentions

      +
      public List<SimpleChannel> mentions
      +
      +
    • +
    • +
      +

      thumbnail

      +
      public String thumbnail
      +
      +
    • +
    • +
      +

      reccomendations

      +
      public List<Video> reccomendations
      +
      +
    • +
    • +
      +

      comments

      +
      public List<Comment> comments
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      Video

      +
      public Video()
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/datatypes/package-summary.html b/com/pina/datatypes/package-summary.html new file mode 100644 index 0000000..6c4a087 --- /dev/null +++ b/com/pina/datatypes/package-summary.html @@ -0,0 +1,123 @@ + + + + +com.pina.datatypes + + + + + + + + + + + + + + + +
+ +
+
+
+

Package com.pina.datatypes

+
+
+
package com.pina.datatypes
+
+ +
+
+
+
+ + diff --git a/com/pina/datatypes/package-tree.html b/com/pina/datatypes/package-tree.html new file mode 100644 index 0000000..6b45a80 --- /dev/null +++ b/com/pina/datatypes/package-tree.html @@ -0,0 +1,81 @@ + + + + +com.pina.datatypes Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.pina.datatypes

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + diff --git a/com/pina/package-summary.html b/com/pina/package-summary.html new file mode 100644 index 0000000..6368e94 --- /dev/null +++ b/com/pina/package-summary.html @@ -0,0 +1,121 @@ + + + + +com.pina + + + + + + + + + + + + + + + +
+ +
+
+
+

Package com.pina

+
+
+
package com.pina
+
+
    +
  • + +
  • +
  • +
    +
    +
    +
    +
    Class
    +
    Description
    + +
    +
    The class for interacting with the Holodex API
    +
    + +
    +
    Class for Holodex related exceptions
    +
    + +
    +
    The interface Holodex service.
    +
    +
    +
    +
    +
  • +
+
+
+
+
+ + diff --git a/com/pina/package-tree.html b/com/pina/package-tree.html new file mode 100644 index 0000000..6a6850b --- /dev/null +++ b/com/pina/package-tree.html @@ -0,0 +1,86 @@ + + + + +com.pina Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.pina

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+

Interface Hierarchy

+ +
+
+
+
+ + diff --git a/com/pina/query/ChannelQueryBuilder.html b/com/pina/query/ChannelQueryBuilder.html new file mode 100644 index 0000000..f8fc9c7 --- /dev/null +++ b/com/pina/query/ChannelQueryBuilder.html @@ -0,0 +1,407 @@ + + + + +ChannelQueryBuilder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class ChannelQueryBuilder

+
+
java.lang.Object +
com.pina.query.ChannelQueryBuilder
+
+
+
+
public class ChannelQueryBuilder +extends Object
+
Query builder for getting a list of Channels matching the given parameters
+
+
+ +
+
+
    + +
  • +
    +

    Constructor Details

    +
      +
    • +
      +

      ChannelQueryBuilder

      +
      public ChannelQueryBuilder()
      +
      +
    • +
    +
    +
  • + +
  • +
    +

    Method Details

    +
      +
    • +
      +

      getLimit

      +
      public Integer getLimit()
      +
      Gets limit.
      +
      +
      Returns:
      +
      the limit
      +
      +
      +
    • +
    • +
      +

      setLimit

      +
      public ChannelQueryBuilder setLimit(Integer limit)
      +
      Sets limit.
      +
      +
      Parameters:
      +
      limit - the limit
      +
      Returns:
      +
      the limit
      +
      +
      +
    • +
    • +
      +

      getOffset

      +
      public Integer getOffset()
      +
      Gets offset.
      +
      +
      Returns:
      +
      the offset
      +
      +
      +
    • +
    • +
      +

      setOffset

      +
      public ChannelQueryBuilder setOffset(Integer offset)
      +
      Sets offset.
      +
      +
      Parameters:
      +
      offset - the offset
      +
      Returns:
      +
      the offset
      +
      +
      +
    • +
    • +
      +

      getType

      +
      public String getType()
      +
      Gets type.
      +
      +
      Returns:
      +
      the type
      +
      +
      +
    • +
    • +
      +

      setType

      +
      public ChannelQueryBuilder setType(String type)
      +
      Sets type.
      +
      +
      Parameters:
      +
      type - the type
      +
      Returns:
      +
      the type
      +
      +
      +
    • +
    • +
      +

      getLang

      +
      public String getLang()
      +
      Gets lang.
      +
      +
      Returns:
      +
      the lang
      +
      +
      +
    • +
    • +
      +

      setLang

      +
      public ChannelQueryBuilder setLang(String lang)
      +
      Sets lang.
      +
      +
      Parameters:
      +
      lang - the lang
      +
      Returns:
      +
      the lang
      +
      +
      +
    • +
    • +
      +

      getOrder

      +
      public String getOrder()
      +
      Gets order.
      +
      +
      Returns:
      +
      the order
      +
      +
      +
    • +
    • +
      +

      setOrder

      +
      public ChannelQueryBuilder setOrder(String order)
      +
      Sets order.
      +
      +
      Parameters:
      +
      order - the order
      +
      Returns:
      +
      the order
      +
      +
      +
    • +
    • +
      +

      getOrg

      +
      public String getOrg()
      +
      Gets org.
      +
      +
      Returns:
      +
      the org
      +
      +
      +
    • +
    • +
      +

      setOrg

      +
      public ChannelQueryBuilder setOrg(String org)
      +
      Sets org.
      +
      +
      Parameters:
      +
      org - the org
      +
      Returns:
      +
      the org
      +
      +
      +
    • +
    • +
      +

      getSort

      +
      public String getSort()
      +
      Gets sort.
      +
      +
      Returns:
      +
      the sort
      +
      +
      +
    • +
    • +
      +

      setSort

      +
      public ChannelQueryBuilder setSort(String sort)
      +
      Sets sort.
      +
      +
      Parameters:
      +
      sort - the sort
      +
      Returns:
      +
      the sort
      +
      +
      +
    • +
    +
    +
  • +
+
+ +
+
+
+ + diff --git a/com/pina/query/VideoByVideoIdQueryBuilder.html b/com/pina/query/VideoByVideoIdQueryBuilder.html new file mode 100644 index 0000000..b8fc958 --- /dev/null +++ b/com/pina/query/VideoByVideoIdQueryBuilder.html @@ -0,0 +1,223 @@ + + + + +VideoByVideoIdQueryBuilder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class VideoByVideoIdQueryBuilder

+
+
java.lang.Object +
com.pina.query.VideoByVideoIdQueryBuilder
+
+
+
+
public class VideoByVideoIdQueryBuilder +extends Object
+
Query builder for getting a video by video id
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/com/pina/query/VideoQueryBuilder.html b/com/pina/query/VideoQueryBuilder.html new file mode 100644 index 0000000..e23652e --- /dev/null +++ b/com/pina/query/VideoQueryBuilder.html @@ -0,0 +1,439 @@ + + + + +VideoQueryBuilder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class VideoQueryBuilder

+
+
java.lang.Object +
com.pina.query.VideoQueryBuilder
+
+
+
+
public class VideoQueryBuilder +extends Object
+
Query builder for getting a set of videos matching the given parameters
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/com/pina/query/VideosByChannelIDQueryBuilder.html b/com/pina/query/VideosByChannelIDQueryBuilder.html new file mode 100644 index 0000000..26a22af --- /dev/null +++ b/com/pina/query/VideosByChannelIDQueryBuilder.html @@ -0,0 +1,295 @@ + + + + +VideosByChannelIDQueryBuilder + + + + + + + + + + + + + + + +
+ +
+
+ +
+ +

Class VideosByChannelIDQueryBuilder

+
+
java.lang.Object +
com.pina.query.VideosByChannelIDQueryBuilder
+
+
+
+
public class VideosByChannelIDQueryBuilder +extends Object
+
Query builder for getting videos by a given channel id
+
+
+ +
+
+ +
+ +
+
+
+ + diff --git a/com/pina/query/package-summary.html b/com/pina/query/package-summary.html new file mode 100644 index 0000000..b3fb797 --- /dev/null +++ b/com/pina/query/package-summary.html @@ -0,0 +1,119 @@ + + + + +com.pina.query + + + + + + + + + + + + + + + +
+ +
+
+
+

Package com.pina.query

+
+
+
package com.pina.query
+
+ +
+
+
+
+ + diff --git a/com/pina/query/package-tree.html b/com/pina/query/package-tree.html new file mode 100644 index 0000000..19e394d --- /dev/null +++ b/com/pina/query/package-tree.html @@ -0,0 +1,74 @@ + + + + +com.pina.query Class Hierarchy + + + + + + + + + + + + + + + +
+ +
+
+
+

Hierarchy For Package com.pina.query

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+
+
+
+ + -- cgit v1.2.3