All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.java.com.streamlayer.sports.basketball.BasketballMatchLineups Maven / Gradle / Ivy

There is a newer version: 5.133.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: streamlayer/sports/basketball/basketball.proto

// Protobuf Java Version: 3.25.3
package com.streamlayer.sports.basketball;

/**
 * Protobuf type {@code streamlayer.sports.basketball.BasketballMatchLineups}
 */
public  final class BasketballMatchLineups extends
    com.google.protobuf.GeneratedMessageLite<
        BasketballMatchLineups, BasketballMatchLineups.Builder> implements
    // @@protoc_insertion_point(message_implements:streamlayer.sports.basketball.BasketballMatchLineups)
    BasketballMatchLineupsOrBuilder {
  private BasketballMatchLineups() {
  }
  private int bitField0_;
  public static final int HOME_TEAM_FIELD_NUMBER = 1;
  private com.streamlayer.sports.basketball.BasketballMatchLineup homeTeam_;
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
   */
  @java.lang.Override
  public boolean hasHomeTeam() {
    return ((bitField0_ & 0x00000001) != 0);
  }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
   */
  @java.lang.Override
  public com.streamlayer.sports.basketball.BasketballMatchLineup getHomeTeam() {
    return homeTeam_ == null ? com.streamlayer.sports.basketball.BasketballMatchLineup.getDefaultInstance() : homeTeam_;
  }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
   */
  private void setHomeTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
    value.getClass();
  homeTeam_ = value;
    bitField0_ |= 0x00000001;
    }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
   */
  @java.lang.SuppressWarnings({"ReferenceEquality"})
  private void mergeHomeTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
    value.getClass();
  if (homeTeam_ != null &&
        homeTeam_ != com.streamlayer.sports.basketball.BasketballMatchLineup.getDefaultInstance()) {
      homeTeam_ =
        com.streamlayer.sports.basketball.BasketballMatchLineup.newBuilder(homeTeam_).mergeFrom(value).buildPartial();
    } else {
      homeTeam_ = value;
    }
    bitField0_ |= 0x00000001;
  }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
   */
  private void clearHomeTeam() {  homeTeam_ = null;
    bitField0_ = (bitField0_ & ~0x00000001);
  }

  public static final int AWAY_TEAM_FIELD_NUMBER = 2;
  private com.streamlayer.sports.basketball.BasketballMatchLineup awayTeam_;
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
   */
  @java.lang.Override
  public boolean hasAwayTeam() {
    return ((bitField0_ & 0x00000002) != 0);
  }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
   */
  @java.lang.Override
  public com.streamlayer.sports.basketball.BasketballMatchLineup getAwayTeam() {
    return awayTeam_ == null ? com.streamlayer.sports.basketball.BasketballMatchLineup.getDefaultInstance() : awayTeam_;
  }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
   */
  private void setAwayTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
    value.getClass();
  awayTeam_ = value;
    bitField0_ |= 0x00000002;
    }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
   */
  @java.lang.SuppressWarnings({"ReferenceEquality"})
  private void mergeAwayTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
    value.getClass();
  if (awayTeam_ != null &&
        awayTeam_ != com.streamlayer.sports.basketball.BasketballMatchLineup.getDefaultInstance()) {
      awayTeam_ =
        com.streamlayer.sports.basketball.BasketballMatchLineup.newBuilder(awayTeam_).mergeFrom(value).buildPartial();
    } else {
      awayTeam_ = value;
    }
    bitField0_ |= 0x00000002;
  }
  /**
   * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
   */
  private void clearAwayTeam() {  awayTeam_ = null;
    bitField0_ = (bitField0_ & ~0x00000002);
  }

  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      java.nio.ByteBuffer data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data, extensionRegistry);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      com.google.protobuf.ByteString data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      com.google.protobuf.ByteString data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data, extensionRegistry);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      byte[] data,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data, extensionRegistry);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      java.io.InputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input, extensionRegistry);
  }

  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return parseDelimitedFrom(DEFAULT_INSTANCE, input);
  }

  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseDelimitedFrom(
      java.io.InputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input);
  }
  public static com.streamlayer.sports.basketball.BasketballMatchLineups parseFrom(
      com.google.protobuf.CodedInputStream input,
      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input, extensionRegistry);
  }

  public static Builder newBuilder() {
    return (Builder) DEFAULT_INSTANCE.createBuilder();
  }
  public static Builder newBuilder(com.streamlayer.sports.basketball.BasketballMatchLineups prototype) {
    return DEFAULT_INSTANCE.createBuilder(prototype);
  }

  /**
   * Protobuf type {@code streamlayer.sports.basketball.BasketballMatchLineups}
   */
  public static final class Builder extends
      com.google.protobuf.GeneratedMessageLite.Builder<
        com.streamlayer.sports.basketball.BasketballMatchLineups, Builder> implements
      // @@protoc_insertion_point(builder_implements:streamlayer.sports.basketball.BasketballMatchLineups)
      com.streamlayer.sports.basketball.BasketballMatchLineupsOrBuilder {
    // Construct using com.streamlayer.sports.basketball.BasketballMatchLineups.newBuilder()
    private Builder() {
      super(DEFAULT_INSTANCE);
    }


    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
     */
    @java.lang.Override
    public boolean hasHomeTeam() {
      return instance.hasHomeTeam();
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
     */
    @java.lang.Override
    public com.streamlayer.sports.basketball.BasketballMatchLineup getHomeTeam() {
      return instance.getHomeTeam();
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
     */
    public Builder setHomeTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
      copyOnWrite();
      instance.setHomeTeam(value);
      return this;
      }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
     */
    public Builder setHomeTeam(
        com.streamlayer.sports.basketball.BasketballMatchLineup.Builder builderForValue) {
      copyOnWrite();
      instance.setHomeTeam(builderForValue.build());
      return this;
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
     */
    public Builder mergeHomeTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
      copyOnWrite();
      instance.mergeHomeTeam(value);
      return this;
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup home_team = 1 [json_name = "homeTeam"];
     */
    public Builder clearHomeTeam() {  copyOnWrite();
      instance.clearHomeTeam();
      return this;
    }

    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
     */
    @java.lang.Override
    public boolean hasAwayTeam() {
      return instance.hasAwayTeam();
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
     */
    @java.lang.Override
    public com.streamlayer.sports.basketball.BasketballMatchLineup getAwayTeam() {
      return instance.getAwayTeam();
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
     */
    public Builder setAwayTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
      copyOnWrite();
      instance.setAwayTeam(value);
      return this;
      }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
     */
    public Builder setAwayTeam(
        com.streamlayer.sports.basketball.BasketballMatchLineup.Builder builderForValue) {
      copyOnWrite();
      instance.setAwayTeam(builderForValue.build());
      return this;
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
     */
    public Builder mergeAwayTeam(com.streamlayer.sports.basketball.BasketballMatchLineup value) {
      copyOnWrite();
      instance.mergeAwayTeam(value);
      return this;
    }
    /**
     * .streamlayer.sports.basketball.BasketballMatchLineup away_team = 2 [json_name = "awayTeam"];
     */
    public Builder clearAwayTeam() {  copyOnWrite();
      instance.clearAwayTeam();
      return this;
    }

    // @@protoc_insertion_point(builder_scope:streamlayer.sports.basketball.BasketballMatchLineups)
  }
  @java.lang.Override
  @java.lang.SuppressWarnings({"unchecked", "fallthrough"})
  protected final java.lang.Object dynamicMethod(
      com.google.protobuf.GeneratedMessageLite.MethodToInvoke method,
      java.lang.Object arg0, java.lang.Object arg1) {
    switch (method) {
      case NEW_MUTABLE_INSTANCE: {
        return new com.streamlayer.sports.basketball.BasketballMatchLineups();
      }
      case NEW_BUILDER: {
        return new Builder();
      }
      case BUILD_MESSAGE_INFO: {
          java.lang.Object[] objects = new java.lang.Object[] {
            "bitField0_",
            "homeTeam_",
            "awayTeam_",
          };
          java.lang.String info =
              "\u0000\u0002\u0000\u0001\u0001\u0002\u0002\u0000\u0000\u0000\u0001\u1009\u0000\u0002" +
              "\u1009\u0001";
          return newMessageInfo(DEFAULT_INSTANCE, info, objects);
      }
      // fall through
      case GET_DEFAULT_INSTANCE: {
        return DEFAULT_INSTANCE;
      }
      case GET_PARSER: {
        com.google.protobuf.Parser parser = PARSER;
        if (parser == null) {
          synchronized (com.streamlayer.sports.basketball.BasketballMatchLineups.class) {
            parser = PARSER;
            if (parser == null) {
              parser =
                  new DefaultInstanceBasedParser(
                      DEFAULT_INSTANCE);
              PARSER = parser;
            }
          }
        }
        return parser;
    }
    case GET_MEMOIZED_IS_INITIALIZED: {
      return (byte) 1;
    }
    case SET_MEMOIZED_IS_INITIALIZED: {
      return null;
    }
    }
    throw new UnsupportedOperationException();
  }


  // @@protoc_insertion_point(class_scope:streamlayer.sports.basketball.BasketballMatchLineups)
  private static final com.streamlayer.sports.basketball.BasketballMatchLineups DEFAULT_INSTANCE;
  static {
    BasketballMatchLineups defaultInstance = new BasketballMatchLineups();
    // New instances are implicitly immutable so no need to make
    // immutable.
    DEFAULT_INSTANCE = defaultInstance;
    com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
      BasketballMatchLineups.class, defaultInstance);
  }

  public static com.streamlayer.sports.basketball.BasketballMatchLineups getDefaultInstance() {
    return DEFAULT_INSTANCE;
  }

  private static volatile com.google.protobuf.Parser PARSER;

  public static com.google.protobuf.Parser parser() {
    return DEFAULT_INSTANCE.getParserForType();
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy