main.java.com.streamlayer.sports.common.EventTeam 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/sports_common.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.sports.common;
/**
* Protobuf type {@code streamlayer.sports.EventTeam}
*/
public final class EventTeam extends
com.google.protobuf.GeneratedMessageLite<
EventTeam, EventTeam.Builder> implements
// @@protoc_insertion_point(message_implements:streamlayer.sports.EventTeam)
EventTeamOrBuilder {
private EventTeam() {
name_ = "";
alias_ = "";
logo_ = "";
colors_ = com.google.protobuf.GeneratedMessageLite.emptyProtobufList();
}
public static final int ID_FIELD_NUMBER = 1;
private long id_;
/**
* uint64 id = 1 [json_name = "id"];
* @return The id.
*/
@java.lang.Override
public long getId() {
return id_;
}
/**
* uint64 id = 1 [json_name = "id"];
* @param value The id to set.
*/
private void setId(long value) {
id_ = value;
}
/**
* uint64 id = 1 [json_name = "id"];
*/
private void clearId() {
id_ = 0L;
}
public static final int NAME_FIELD_NUMBER = 2;
private java.lang.String name_;
/**
* string name = 2 [json_name = "name"];
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
return name_;
}
/**
* string name = 2 [json_name = "name"];
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(name_);
}
/**
* string name = 2 [json_name = "name"];
* @param value The name to set.
*/
private void setName(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
name_ = value;
}
/**
* string name = 2 [json_name = "name"];
*/
private void clearName() {
name_ = getDefaultInstance().getName();
}
/**
* string name = 2 [json_name = "name"];
* @param value The bytes for name to set.
*/
private void setNameBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
name_ = value.toStringUtf8();
}
public static final int ALIAS_FIELD_NUMBER = 3;
private java.lang.String alias_;
/**
* string alias = 3 [json_name = "alias"];
* @return The alias.
*/
@java.lang.Override
public java.lang.String getAlias() {
return alias_;
}
/**
* string alias = 3 [json_name = "alias"];
* @return The bytes for alias.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getAliasBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(alias_);
}
/**
* string alias = 3 [json_name = "alias"];
* @param value The alias to set.
*/
private void setAlias(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
alias_ = value;
}
/**
* string alias = 3 [json_name = "alias"];
*/
private void clearAlias() {
alias_ = getDefaultInstance().getAlias();
}
/**
* string alias = 3 [json_name = "alias"];
* @param value The bytes for alias to set.
*/
private void setAliasBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
alias_ = value.toStringUtf8();
}
public static final int LOGO_FIELD_NUMBER = 4;
private java.lang.String logo_;
/**
* string logo = 4 [json_name = "logo"];
* @return The logo.
*/
@java.lang.Override
public java.lang.String getLogo() {
return logo_;
}
/**
* string logo = 4 [json_name = "logo"];
* @return The bytes for logo.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getLogoBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(logo_);
}
/**
* string logo = 4 [json_name = "logo"];
* @param value The logo to set.
*/
private void setLogo(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
logo_ = value;
}
/**
* string logo = 4 [json_name = "logo"];
*/
private void clearLogo() {
logo_ = getDefaultInstance().getLogo();
}
/**
* string logo = 4 [json_name = "logo"];
* @param value The bytes for logo to set.
*/
private void setLogoBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
logo_ = value.toStringUtf8();
}
public static final int COLORS_FIELD_NUMBER = 5;
private com.google.protobuf.Internal.ProtobufList colors_;
/**
* repeated string colors = 5 [json_name = "colors"];
* @return A list containing the colors.
*/
@java.lang.Override
public java.util.List getColorsList() {
return colors_;
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @return The count of colors.
*/
@java.lang.Override
public int getColorsCount() {
return colors_.size();
}
/**
* 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.Override
public java.lang.String getColors(int index) {
return colors_.get(index);
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index of the value to return.
* @return The bytes of the colors at the given index.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getColorsBytes(int index) {
return com.google.protobuf.ByteString.copyFromUtf8(
colors_.get(index));
}
private void ensureColorsIsMutable() {
com.google.protobuf.Internal.ProtobufList tmp =
colors_; if (!tmp.isModifiable()) {
colors_ =
com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
}
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index to set the value at.
* @param value The colors to set.
*/
private void setColors(
int index, java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
ensureColorsIsMutable();
colors_.set(index, value);
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param value The colors to add.
*/
private void addColors(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
ensureColorsIsMutable();
colors_.add(value);
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param values The colors to add.
*/
private void addAllColors(
java.lang.Iterable values) {
ensureColorsIsMutable();
com.google.protobuf.AbstractMessageLite.addAll(
values, colors_);
}
/**
* repeated string colors = 5 [json_name = "colors"];
*/
private void clearColors() {
colors_ = com.google.protobuf.GeneratedMessageLite.emptyProtobufList();
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param value The bytes of the colors to add.
*/
private void addColorsBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
ensureColorsIsMutable();
colors_.add(value.toStringUtf8());
}
public static final int IS_WINNER_FIELD_NUMBER = 6;
private boolean isWinner_;
/**
* bool is_winner = 6 [json_name = "isWinner"];
* @return The isWinner.
*/
@java.lang.Override
public boolean getIsWinner() {
return isWinner_;
}
/**
* bool is_winner = 6 [json_name = "isWinner"];
* @param value The isWinner to set.
*/
private void setIsWinner(boolean value) {
isWinner_ = value;
}
/**
* bool is_winner = 6 [json_name = "isWinner"];
*/
private void clearIsWinner() {
isWinner_ = false;
}
public static com.streamlayer.sports.common.EventTeam parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.sports.common.EventTeam 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.common.EventTeam 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.common.EventTeam 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.common.EventTeam parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.sports.common.EventTeam 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.common.EventTeam parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.sports.common.EventTeam 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.common.EventTeam parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.streamlayer.sports.common.EventTeam 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.common.EventTeam parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.sports.common.EventTeam 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.common.EventTeam prototype) {
return DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
* Protobuf type {@code streamlayer.sports.EventTeam}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.streamlayer.sports.common.EventTeam, Builder> implements
// @@protoc_insertion_point(builder_implements:streamlayer.sports.EventTeam)
com.streamlayer.sports.common.EventTeamOrBuilder {
// Construct using com.streamlayer.sports.common.EventTeam.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
* uint64 id = 1 [json_name = "id"];
* @return The id.
*/
@java.lang.Override
public long getId() {
return instance.getId();
}
/**
* uint64 id = 1 [json_name = "id"];
* @param value The id to set.
* @return This builder for chaining.
*/
public Builder setId(long value) {
copyOnWrite();
instance.setId(value);
return this;
}
/**
* uint64 id = 1 [json_name = "id"];
* @return This builder for chaining.
*/
public Builder clearId() {
copyOnWrite();
instance.clearId();
return this;
}
/**
* string name = 2 [json_name = "name"];
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
return instance.getName();
}
/**
* string name = 2 [json_name = "name"];
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
return instance.getNameBytes();
}
/**
* string name = 2 [json_name = "name"];
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
copyOnWrite();
instance.setName(value);
return this;
}
/**
* string name = 2 [json_name = "name"];
* @return This builder for chaining.
*/
public Builder clearName() {
copyOnWrite();
instance.clearName();
return this;
}
/**
* string name = 2 [json_name = "name"];
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setNameBytes(value);
return this;
}
/**
* string alias = 3 [json_name = "alias"];
* @return The alias.
*/
@java.lang.Override
public java.lang.String getAlias() {
return instance.getAlias();
}
/**
* string alias = 3 [json_name = "alias"];
* @return The bytes for alias.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getAliasBytes() {
return instance.getAliasBytes();
}
/**
* string alias = 3 [json_name = "alias"];
* @param value The alias to set.
* @return This builder for chaining.
*/
public Builder setAlias(
java.lang.String value) {
copyOnWrite();
instance.setAlias(value);
return this;
}
/**
* string alias = 3 [json_name = "alias"];
* @return This builder for chaining.
*/
public Builder clearAlias() {
copyOnWrite();
instance.clearAlias();
return this;
}
/**
* string alias = 3 [json_name = "alias"];
* @param value The bytes for alias to set.
* @return This builder for chaining.
*/
public Builder setAliasBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setAliasBytes(value);
return this;
}
/**
* string logo = 4 [json_name = "logo"];
* @return The logo.
*/
@java.lang.Override
public java.lang.String getLogo() {
return instance.getLogo();
}
/**
* string logo = 4 [json_name = "logo"];
* @return The bytes for logo.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getLogoBytes() {
return instance.getLogoBytes();
}
/**
* string logo = 4 [json_name = "logo"];
* @param value The logo to set.
* @return This builder for chaining.
*/
public Builder setLogo(
java.lang.String value) {
copyOnWrite();
instance.setLogo(value);
return this;
}
/**
* string logo = 4 [json_name = "logo"];
* @return This builder for chaining.
*/
public Builder clearLogo() {
copyOnWrite();
instance.clearLogo();
return this;
}
/**
* string logo = 4 [json_name = "logo"];
* @param value The bytes for logo to set.
* @return This builder for chaining.
*/
public Builder setLogoBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setLogoBytes(value);
return this;
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @return A list containing the colors.
*/
@java.lang.Override
public java.util.List
getColorsList() {
return java.util.Collections.unmodifiableList(
instance.getColorsList());
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @return The count of colors.
*/
@java.lang.Override
public int getColorsCount() {
return instance.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.Override
public java.lang.String getColors(int index) {
return instance.getColors(index);
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index of the value to return.
* @return The bytes of the colors at the given index.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getColorsBytes(int index) {
return instance.getColorsBytes(index);
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param index The index to set the value at.
* @param value The colors to set.
* @return This builder for chaining.
*/
public Builder setColors(
int index, java.lang.String value) {
copyOnWrite();
instance.setColors(index, value);
return this;
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param value The colors to add.
* @return This builder for chaining.
*/
public Builder addColors(
java.lang.String value) {
copyOnWrite();
instance.addColors(value);
return this;
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param values The colors to add.
* @return This builder for chaining.
*/
public Builder addAllColors(
java.lang.Iterable values) {
copyOnWrite();
instance.addAllColors(values);
return this;
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @return This builder for chaining.
*/
public Builder clearColors() {
copyOnWrite();
instance.clearColors();
return this;
}
/**
* repeated string colors = 5 [json_name = "colors"];
* @param value The bytes of the colors to add.
* @return This builder for chaining.
*/
public Builder addColorsBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.addColorsBytes(value);
return this;
}
/**
* bool is_winner = 6 [json_name = "isWinner"];
* @return The isWinner.
*/
@java.lang.Override
public boolean getIsWinner() {
return instance.getIsWinner();
}
/**
* bool is_winner = 6 [json_name = "isWinner"];
* @param value The isWinner to set.
* @return This builder for chaining.
*/
public Builder setIsWinner(boolean value) {
copyOnWrite();
instance.setIsWinner(value);
return this;
}
/**
* bool is_winner = 6 [json_name = "isWinner"];
* @return This builder for chaining.
*/
public Builder clearIsWinner() {
copyOnWrite();
instance.clearIsWinner();
return this;
}
// @@protoc_insertion_point(builder_scope:streamlayer.sports.EventTeam)
}
@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.common.EventTeam();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"id_",
"name_",
"alias_",
"logo_",
"colors_",
"isWinner_",
};
java.lang.String info =
"\u0000\u0006\u0000\u0000\u0001\u0006\u0006\u0000\u0001\u0000\u0001\u0003\u0002\u0208" +
"\u0003\u0208\u0004\u0208\u0005\u021a\u0006\u0007";
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.common.EventTeam.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.EventTeam)
private static final com.streamlayer.sports.common.EventTeam DEFAULT_INSTANCE;
static {
EventTeam defaultInstance = new EventTeam();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
EventTeam.class, defaultInstance);
}
public static com.streamlayer.sports.common.EventTeam getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}