Lines Matching refs:Builder

44  * Channel channel = new Channel.Builder()
66 * Channel updatedChannel = new Channel.Builder(channel)
97 private Channel(Builder builder) {
399 Builder builder = new Builder();
570 public static final class Builder {
573 public Builder() {
577 public Builder(Channel other) {
585 * @return This Builder object to allow for chaining of calls to builder methods.
587 private Builder setId(long id) {
596 * @return This Builder object to allow for chaining of calls to builder methods.
600 Builder setPackageName(String packageName) {
609 * @return This Builder object to allow for chaining of calls to builder methods.
611 public Builder setInputId(String inputId) {
620 * @return This Builder object to allow for chaining of calls to builder methods.
622 public Builder setType(@Type String type) {
631 * @return This Builder object to allow for chaining of calls to builder methods.
633 public Builder setDisplayNumber(String displayNumber) {
642 * @return This Builder object to allow for chaining of calls to builder methods.
644 public Builder setDisplayName(String displayName) {
653 * @return This Builder object to allow for chaining of calls to builder methods.
655 public Builder setDescription(String description) {
664 * @return This Builder object to allow for chaining of calls to builder methods.
666 public Builder setVideoFormat(@VideoFormat String videoFormat) {
676 * @return This Builder object to allow for chaining of calls to builder methods.
678 public Builder setOriginalNetworkId(int originalNetworkId) {
688 * @return This Builder object to allow for chaining of calls to builder methods.
690 public Builder setTransportStreamId(int transportStreamId) {
699 * @return This Builder object to allow for chaining of calls to builder methods.
701 public Builder setServiceId(int serviceId) {
711 * @return This Builder object to allow for chaining of calls to builder methods.
713 public Builder setInternalProviderData(byte[] internalProviderData) {
723 * @return This Builder object to allow for chaining of calls to builder methods.
725 public Builder setInternalProviderData(String internalProviderData) {
735 * @return This Builder object to allow for chaining of calls to builder methods.
737 public Builder setAppLinkText(String appLinkText) {
746 * @return This Builder object to allow for chaining of calls to builder methods.
748 public Builder setAppLinkColor(int appLinkColor) {
758 * @return This Builder object to allow for chaining of calls to builder methods.
760 public Builder setAppLinkIconUri(Uri appLinkIconUri) {
771 * @return This Builder object to allow for chaining of calls to builder methods.
773 public Builder setAppLinkPosterArtUri(Uri appLinkPosterArtUri) {
783 * @return This Builder object to allow for chaining of calls to builder methods.
785 public Builder setAppLinkIntent(Intent appLinkIntent) {
796 * @return This Builder object to allow for chaining of calls to builder methods.
798 public Builder setAppLinkIntentUri(Uri appLinkIntentUri) {
809 * @return This Builder object to allow for chaining of calls to builder methods.
811 public Builder setNetworkAffiliation(String networkAffiliation) {
820 * @return This Builder object to allow for chaining of calls to builder methods.
822 public Builder setSearchable(boolean searchable) {
833 * @return This Builder object to allow for chaining of calls to builder methods.
835 public Builder setServiceType(@ServiceType String serviceType) {
844 * @return This Builder object to allow for chaining of calls to builder methods.
846 public Builder setInternalProviderFlag1(long flag) {
855 * @return This Builder object to allow for chaining of calls to builder methods.
857 public Builder setInternalProviderFlag2(long flag) {
866 * @return This Builder object to allow for chaining of calls to builder methods.
868 public Builder setInternalProviderFlag3(long flag) {
877 * @return This Builder object to allow for chaining of calls to builder methods.
879 public Builder setInternalProviderFlag4(long flag) {
889 * @return This Builder object to allow for chaining of calls to builder methods.
891 public Builder setInternalProviderId(String internalProviderId) {
900 * @return This Builder object to allow for chaining of calls to builder methods.
902 public Builder setTransient(boolean value) {
911 * @return This Builder object to allow for chaining of calls to builder methods.
915 public Builder setBrowsable(boolean value) {
924 * @return This Builder object to allow for chaining of calls to builder methods.
928 public Builder setSystemApproved(boolean value) {
937 * @return This Builder object to allow for chaining of calls to builder methods.
941 public Builder setLocked(boolean value) {
947 * Takes the values of the Builder object and creates a Channel object.
948 * @return Channel object with values from the Builder.