main.java.com.streamlayer.sports.baseball.TeamStandingOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sl-protofiles Show documentation
Show all versions of sl-protofiles Show documentation
StreamLayer Java Protofiles
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: streamlayer/sports/baseball/baseball.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sports.baseball;
public interface TeamStandingOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.sports.baseball.TeamStanding)
com.google.protobuf.MessageLiteOrBuilder {
/**
* uint64 id = 1 [json_name = "id"];
* @return The id.
*/
long getId();
/**
* string name = 2 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 2 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* string alias = 3 [json_name = "alias"];
* @return The alias.
*/
java.lang.String getAlias();
/**
* string alias = 3 [json_name = "alias"];
* @return The bytes for alias.
*/
com.google.protobuf.ByteString
getAliasBytes();
/**
* string logo = 4 [json_name = "logo"];
* @return The logo.
*/
java.lang.String getLogo();
/**
* string logo = 4 [json_name = "logo"];
* @return The bytes for logo.
*/
com.google.protobuf.ByteString
getLogoBytes();
/**
* repeated string colors = 5 [json_name = "colors"];
* @return A list containing the colors.
*/
java.util.List
getColorsList();
/**
* repeated string colors = 5 [json_name = "colors"];
* @return The count of colors.
*/
int getColorsCount();
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index of the element to return.
* @return The colors at the given index.
*/
java.lang.String getColors(int index);
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index of the element to return.
* @return The colors at the given index.
*/
com.google.protobuf.ByteString
getColorsBytes(int index);
/**
* int32 wins = 6 [json_name = "wins"];
* @return The wins.
*/
int getWins();
/**
* int32 losses = 7 [json_name = "losses"];
* @return The losses.
*/
int getLosses();
/**
* double pct = 8 [json_name = "pct"];
* @return The pct.
*/
double getPct();
/**
* int32 games_behind = 9 [json_name = "gamesBehind"];
* @return The gamesBehind.
*/
int getGamesBehind();
/**
* .streamlayer.sports.baseball.TeamStanding.Streak streak = 10 [json_name = "streak"];
* @return Whether the streak field is set.
*/
boolean hasStreak();
/**
* .streamlayer.sports.baseball.TeamStanding.Streak streak = 10 [json_name = "streak"];
* @return The streak.
*/
com.streamlayer.sports.baseball.TeamStanding.Streak getStreak();
/**
* .streamlayer.sports.baseball.TeamStanding.Rank rank = 11 [json_name = "rank"];
* @return Whether the rank field is set.
*/
boolean hasRank();
/**
* .streamlayer.sports.baseball.TeamStanding.Rank rank = 11 [json_name = "rank"];
* @return The rank.
*/
com.streamlayer.sports.baseball.TeamStanding.Rank getRank();
/**
* string division = 12 [json_name = "division"];
* @return The division.
*/
java.lang.String getDivision();
/**
* string division = 12 [json_name = "division"];
* @return The bytes for division.
*/
com.google.protobuf.ByteString
getDivisionBytes();
/**
* string conference = 13 [json_name = "conference"];
* @return The conference.
*/
java.lang.String getConference();
/**
* string conference = 13 [json_name = "conference"];
* @return The bytes for conference.
*/
com.google.protobuf.ByteString
getConferenceBytes();
}