Lines Matching defs:value

101      * @return The value of {@link Channels#_ID} for the channel.
109 * @return The value of {@link Channels#COLUMN_PACKAGE_NAME} for the channel.
116 * @return The value of {@link Channels#COLUMN_INPUT_ID} for the channel.
123 * @return The value of {@link Channels#COLUMN_TYPE} for the channel.
130 * @return The value of {@link Channels#COLUMN_DISPLAY_NUMBER} for the channel.
137 * @return The value of {@link Channels#COLUMN_DISPLAY_NAME} for the channel.
144 * @return The value of {@link Channels#COLUMN_DESCRIPTION} for the channel.
151 * @return The value of {@link Channels#COLUMN_VIDEO_FORMAT} for the channel.
158 * @return The value of {@link Channels#COLUMN_ORIGINAL_NETWORK_ID} for the channel.
166 * @return The value of {@link Channels#COLUMN_TRANSPORT_STREAM_ID} for the channel.
174 * @return The value of {@link Channels#COLUMN_SERVICE_ID} for the channel.
182 * @return The value of {@link Channels#COLUMN_APP_LINK_TEXT} for the channel.
189 * @return The value of {@link Channels#COLUMN_APP_LINK_COLOR} for the channel.
197 * @return The value of {@link Channels#COLUMN_APP_LINK_ICON_URI} for the channel.
205 * @return The value of {@link Channels#COLUMN_APP_LINK_POSTER_ART_URI} for the channel.
213 * @return The value of {@link Channels#COLUMN_APP_LINK_INTENT_URI} for the channel.
221 * @return The value of {@link Channels#COLUMN_APP_LINK_INTENT_URI} for the program.
229 * @return The value of {@link Channels#COLUMN_NETWORK_AFFILIATION} for the channel.
236 * @return The value of {@link Channels#COLUMN_SEARCHABLE} for the channel.
244 * @return The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_DATA} for the channel.
251 * @return The value of {@link Channels#COLUMN_SERVICE_TYPE} for the channel.
261 * @return The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG1} for the channel.
268 * @return The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG2} for the channel.
275 * @return The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG3} for the channel.
282 * @return The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG4} for the channel.
289 * @return The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_ID} for the channel.
296 * @return The value of {@link Channels#COLUMN_TRANSIENT} for the channel.
304 * @return The value of {@link Channels#COLUMN_BROWSABLE} for the channel.
312 * @return The value of {@link Channels#COLUMN_SYSTEM_APPROVED} for the channel.
322 * @return The value of {@link Channels#COLUMN_CONFIGURATION_DISPLAY_ORDER} for the channel.
329 * @return The value of {@link Channels#COLUMN_SYSTEM_CHANNEL_KEY} for the channel.
336 * @return The value of {@link Channels#COLUMN_LOCKED} for the channel.
609 * @param id The value of {@link Channels#_ID} for the channel.
620 * @param packageName The value of {@link Channels#COLUMN_PACKAGE_NAME} for the channel.
633 * @param inputId The value of {@link Channels#COLUMN_INPUT_ID} for the channel.
644 * @param type The value of {@link Channels#COLUMN_TYPE} for the channel.
655 * @param displayNumber The value of {@link Channels#COLUMN_DISPLAY_NUMBER} for the channel.
666 * @param displayName The value of {@link Channels#COLUMN_DISPLAY_NAME} for the channel.
677 * @param description The value of {@link Channels#COLUMN_DESCRIPTION} for the channel.
688 * @param videoFormat The value of {@link Channels#COLUMN_VIDEO_FORMAT} for the channel.
699 * @param originalNetworkId The value of {@link Channels#COLUMN_ORIGINAL_NETWORK_ID} for the
711 * @param transportStreamId The value of {@link Channels#COLUMN_TRANSPORT_STREAM_ID} for the
723 * @param serviceId The value of {@link Channels#COLUMN_SERVICE_ID} for the channel.
734 * @param internalProviderData The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_DATA}
746 * @param internalProviderData The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_DATA}
759 * @param appLinkText The value of {@link Channels#COLUMN_APP_LINK_TEXT} for the channel.
770 * @param appLinkColor The value of {@link Channels#COLUMN_APP_LINK_COLOR} for the channel.
781 * @param appLinkIconUri The value of {@link Channels#COLUMN_APP_LINK_ICON_URI} for the
794 * @param appLinkPosterArtUri The value of {@link Channels#COLUMN_APP_LINK_POSTER_ART_URI}
832 * @param networkAffiliation The value of
844 * @param searchable The value of {@link Channels#COLUMN_SEARCHABLE} for the channel.
857 * @param serviceType The value of {@link Channels#COLUMN_SERVICE_TYPE} for the channel.
868 * @param flag The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG1} for the program.
879 * @param flag The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG2} for the program.
890 * @param flag The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG3} for the program.
901 * @param flag The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_FLAG4} for the program.
912 * @param internalProviderId The value of {@link Channels#COLUMN_INTERNAL_PROVIDER_ID}
924 * @param value The value of {@link Channels#COLUMN_TRANSIENT} for the channel.
927 public Builder setTransient(boolean value) {
928 mValues.put(Channels.COLUMN_TRANSIENT, value ? IS_TRANSIENT : 0);
935 * @param value The value of {@link Channels#COLUMN_BROWSABLE} for the channel.
940 public Builder setBrowsable(boolean value) {
941 mValues.put(Channels.COLUMN_BROWSABLE, value ? IS_BROWSABLE : 0);
948 * @param value The value of {@link Channels#COLUMN_SYSTEM_APPROVED} for the channel.
953 public Builder setSystemApproved(boolean value) {
954 mValues.put(Channels.COLUMN_SYSTEM_APPROVED, value ? IS_SYSTEM_APPROVED : 0);
959 * Sets the configuration display order for this channel. This value will be used to
962 * @param value The value of {@link Channels#COLUMN_CONFIGURATION_DISPLAY_ORDER} for the
966 public Builder setConfigurationDisplayOrder(int value) {
967 mValues.put(Channels.COLUMN_CONFIGURATION_DISPLAY_ORDER, value);
977 * @param value The value of {@link Channels#COLUMN_SYSTEM_CHANNEL_KEY} for the channel.
980 public Builder setSystemChannelKey(String value) {
981 mValues.put(Channels.COLUMN_SYSTEM_CHANNEL_KEY, value);
988 * @param value The value of {@link Channels#COLUMN_LOCKED} for the channel.
993 public Builder setLocked(boolean value) {
994 mValues.put(Channels.COLUMN_LOCKED, value ? IS_LOCKED : 0);