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

main.java.com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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/soccer/soccer.proto

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

/**
 * Protobuf type {@code streamlayer.sports.soccer.SoccerMatchFormationMatrix}
 */
public  final class SoccerMatchFormationMatrix extends
    com.google.protobuf.GeneratedMessageLite<
        SoccerMatchFormationMatrix, SoccerMatchFormationMatrix.Builder> implements
    // @@protoc_insertion_point(message_implements:streamlayer.sports.soccer.SoccerMatchFormationMatrix)
    SoccerMatchFormationMatrixOrBuilder {
  private SoccerMatchFormationMatrix() {
    rowPlayers_ = emptyProtobufList();
  }
  public static final int ROW_PLAYERS_FIELD_NUMBER = 1;
  private com.google.protobuf.Internal.ProtobufList rowPlayers_;
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  @java.lang.Override
  public java.util.List getRowPlayersList() {
    return rowPlayers_;
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  public java.util.List 
      getRowPlayersOrBuilderList() {
    return rowPlayers_;
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  @java.lang.Override
  public int getRowPlayersCount() {
    return rowPlayers_.size();
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  @java.lang.Override
  public com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer getRowPlayers(int index) {
    return rowPlayers_.get(index);
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  public com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayerOrBuilder getRowPlayersOrBuilder(
      int index) {
    return rowPlayers_.get(index);
  }
  private void ensureRowPlayersIsMutable() {
    com.google.protobuf.Internal.ProtobufList tmp = rowPlayers_;
    if (!tmp.isModifiable()) {
      rowPlayers_ =
          com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
     }
  }

  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  private void setRowPlayers(
      int index, com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer value) {
    value.getClass();
  ensureRowPlayersIsMutable();
    rowPlayers_.set(index, value);
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  private void addRowPlayers(com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer value) {
    value.getClass();
  ensureRowPlayersIsMutable();
    rowPlayers_.add(value);
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  private void addRowPlayers(
      int index, com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer value) {
    value.getClass();
  ensureRowPlayersIsMutable();
    rowPlayers_.add(index, value);
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  private void addAllRowPlayers(
      java.lang.Iterable values) {
    ensureRowPlayersIsMutable();
    com.google.protobuf.AbstractMessageLite.addAll(
        values, rowPlayers_);
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  private void clearRowPlayers() {
    rowPlayers_ = emptyProtobufList();
  }
  /**
   * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
   */
  private void removeRowPlayers(int index) {
    ensureRowPlayersIsMutable();
    rowPlayers_.remove(index);
  }

  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix parseFrom(
      java.nio.ByteBuffer data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix parseFrom(byte[] data)
      throws com.google.protobuf.InvalidProtocolBufferException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, data);
  }
  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix parseFrom(java.io.InputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input);
  }
  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix parseDelimitedFrom(java.io.InputStream input)
      throws java.io.IOException {
    return parseDelimitedFrom(DEFAULT_INSTANCE, input);
  }

  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix parseFrom(
      com.google.protobuf.CodedInputStream input)
      throws java.io.IOException {
    return com.google.protobuf.GeneratedMessageLite.parseFrom(
        DEFAULT_INSTANCE, input);
  }
  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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.soccer.SoccerMatchFormationMatrix prototype) {
    return DEFAULT_INSTANCE.createBuilder(prototype);
  }

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


    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    @java.lang.Override
    public java.util.List getRowPlayersList() {
      return java.util.Collections.unmodifiableList(
          instance.getRowPlayersList());
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    @java.lang.Override
    public int getRowPlayersCount() {
      return instance.getRowPlayersCount();
    }/**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    @java.lang.Override
    public com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer getRowPlayers(int index) {
      return instance.getRowPlayers(index);
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder setRowPlayers(
        int index, com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer value) {
      copyOnWrite();
      instance.setRowPlayers(index, value);
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder setRowPlayers(
        int index, com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer.Builder builderForValue) {
      copyOnWrite();
      instance.setRowPlayers(index,
          builderForValue.build());
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder addRowPlayers(com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer value) {
      copyOnWrite();
      instance.addRowPlayers(value);
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder addRowPlayers(
        int index, com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer value) {
      copyOnWrite();
      instance.addRowPlayers(index, value);
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder addRowPlayers(
        com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer.Builder builderForValue) {
      copyOnWrite();
      instance.addRowPlayers(builderForValue.build());
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder addRowPlayers(
        int index, com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer.Builder builderForValue) {
      copyOnWrite();
      instance.addRowPlayers(index,
          builderForValue.build());
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder addAllRowPlayers(
        java.lang.Iterable values) {
      copyOnWrite();
      instance.addAllRowPlayers(values);
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder clearRowPlayers() {
      copyOnWrite();
      instance.clearRowPlayers();
      return this;
    }
    /**
     * repeated .streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer row_players = 1 [json_name = "rowPlayers"];
     */
    public Builder removeRowPlayers(int index) {
      copyOnWrite();
      instance.removeRowPlayers(index);
      return this;
    }

    // @@protoc_insertion_point(builder_scope:streamlayer.sports.soccer.SoccerMatchFormationMatrix)
  }
  @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.soccer.SoccerMatchFormationMatrix();
      }
      case NEW_BUILDER: {
        return new Builder();
      }
      case BUILD_MESSAGE_INFO: {
          java.lang.Object[] objects = new java.lang.Object[] {
            "rowPlayers_",
            com.streamlayer.sports.soccer.SoccerMatchFormationMatrixPlayer.class,
          };
          java.lang.String info =
              "\u0000\u0001\u0000\u0000\u0001\u0001\u0001\u0000\u0001\u0000\u0001\u001b";
          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.soccer.SoccerMatchFormationMatrix.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.soccer.SoccerMatchFormationMatrix)
  private static final com.streamlayer.sports.soccer.SoccerMatchFormationMatrix DEFAULT_INSTANCE;
  static {
    SoccerMatchFormationMatrix defaultInstance = new SoccerMatchFormationMatrix();
    // New instances are implicitly immutable so no need to make
    // immutable.
    DEFAULT_INSTANCE = defaultInstance;
    com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
      SoccerMatchFormationMatrix.class, defaultInstance);
  }

  public static com.streamlayer.sports.soccer.SoccerMatchFormationMatrix 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