main.java.com.streamlayer.sports.common.Team 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.Team}
*/
public final class Team extends
com.google.protobuf.GeneratedMessageLite<
Team, Team.Builder> implements
// @@protoc_insertion_point(message_implements:streamlayer.sports.Team)
TeamOrBuilder {
private Team() {
customFields_ = "";
name_ = "";
alias_ = "";
}
private int bitField0_;
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 CUSTOM_FIELDS_FIELD_NUMBER = 2;
private java.lang.String customFields_;
/**
* string custom_fields = 2 [json_name = "customFields"];
* @return The customFields.
*/
@java.lang.Override
public java.lang.String getCustomFields() {
return customFields_;
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @return The bytes for customFields.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getCustomFieldsBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(customFields_);
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @param value The customFields to set.
*/
private void setCustomFields(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
customFields_ = value;
}
/**
* string custom_fields = 2 [json_name = "customFields"];
*/
private void clearCustomFields() {
customFields_ = getDefaultInstance().getCustomFields();
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @param value The bytes for customFields to set.
*/
private void setCustomFieldsBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
customFields_ = value.toStringUtf8();
}
public static final int NAME_FIELD_NUMBER = 3;
private java.lang.String name_;
/**
* string name = 3 [json_name = "name"];
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
return name_;
}
/**
* string name = 3 [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 = 3 [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 = 3 [json_name = "name"];
*/
private void clearName() {
name_ = getDefaultInstance().getName();
}
/**
* string name = 3 [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 = 4;
private java.lang.String alias_;
/**
* string alias = 4 [json_name = "alias"];
* @return The alias.
*/
@java.lang.Override
public java.lang.String getAlias() {
return alias_;
}
/**
* string alias = 4 [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 = 4 [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 = 4 [json_name = "alias"];
*/
private void clearAlias() {
alias_ = getDefaultInstance().getAlias();
}
/**
* string alias = 4 [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 VENUE_FIELD_NUMBER = 5;
private com.streamlayer.sports.common.Venue venue_;
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
@java.lang.Override
public boolean hasVenue() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
@java.lang.Override
public com.streamlayer.sports.common.Venue getVenue() {
return venue_ == null ? com.streamlayer.sports.common.Venue.getDefaultInstance() : venue_;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
private void setVenue(com.streamlayer.sports.common.Venue value) {
value.getClass();
venue_ = value;
bitField0_ |= 0x00000001;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeVenue(com.streamlayer.sports.common.Venue value) {
value.getClass();
if (venue_ != null &&
venue_ != com.streamlayer.sports.common.Venue.getDefaultInstance()) {
venue_ =
com.streamlayer.sports.common.Venue.newBuilder(venue_).mergeFrom(value).buildPartial();
} else {
venue_ = value;
}
bitField0_ |= 0x00000001;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
private void clearVenue() { venue_ = null;
bitField0_ = (bitField0_ & ~0x00000001);
}
public static com.streamlayer.sports.common.Team 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.Team 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.Team 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.Team 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.Team parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.sports.common.Team 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.Team parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.sports.common.Team 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.Team parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.streamlayer.sports.common.Team 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.Team 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.Team 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.Team prototype) {
return DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
* Protobuf type {@code streamlayer.sports.Team}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.streamlayer.sports.common.Team, Builder> implements
// @@protoc_insertion_point(builder_implements:streamlayer.sports.Team)
com.streamlayer.sports.common.TeamOrBuilder {
// Construct using com.streamlayer.sports.common.Team.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 custom_fields = 2 [json_name = "customFields"];
* @return The customFields.
*/
@java.lang.Override
public java.lang.String getCustomFields() {
return instance.getCustomFields();
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @return The bytes for customFields.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getCustomFieldsBytes() {
return instance.getCustomFieldsBytes();
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @param value The customFields to set.
* @return This builder for chaining.
*/
public Builder setCustomFields(
java.lang.String value) {
copyOnWrite();
instance.setCustomFields(value);
return this;
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @return This builder for chaining.
*/
public Builder clearCustomFields() {
copyOnWrite();
instance.clearCustomFields();
return this;
}
/**
* string custom_fields = 2 [json_name = "customFields"];
* @param value The bytes for customFields to set.
* @return This builder for chaining.
*/
public Builder setCustomFieldsBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setCustomFieldsBytes(value);
return this;
}
/**
* string name = 3 [json_name = "name"];
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
return instance.getName();
}
/**
* string name = 3 [json_name = "name"];
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
return instance.getNameBytes();
}
/**
* string name = 3 [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 = 3 [json_name = "name"];
* @return This builder for chaining.
*/
public Builder clearName() {
copyOnWrite();
instance.clearName();
return this;
}
/**
* string name = 3 [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 = 4 [json_name = "alias"];
* @return The alias.
*/
@java.lang.Override
public java.lang.String getAlias() {
return instance.getAlias();
}
/**
* string alias = 4 [json_name = "alias"];
* @return The bytes for alias.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getAliasBytes() {
return instance.getAliasBytes();
}
/**
* string alias = 4 [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 = 4 [json_name = "alias"];
* @return This builder for chaining.
*/
public Builder clearAlias() {
copyOnWrite();
instance.clearAlias();
return this;
}
/**
* string alias = 4 [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;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
@java.lang.Override
public boolean hasVenue() {
return instance.hasVenue();
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
@java.lang.Override
public com.streamlayer.sports.common.Venue getVenue() {
return instance.getVenue();
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
public Builder setVenue(com.streamlayer.sports.common.Venue value) {
copyOnWrite();
instance.setVenue(value);
return this;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
public Builder setVenue(
com.streamlayer.sports.common.Venue.Builder builderForValue) {
copyOnWrite();
instance.setVenue(builderForValue.build());
return this;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
public Builder mergeVenue(com.streamlayer.sports.common.Venue value) {
copyOnWrite();
instance.mergeVenue(value);
return this;
}
/**
* .streamlayer.sports.Venue venue = 5 [json_name = "venue"];
*/
public Builder clearVenue() { copyOnWrite();
instance.clearVenue();
return this;
}
// @@protoc_insertion_point(builder_scope:streamlayer.sports.Team)
}
@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.Team();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"bitField0_",
"id_",
"customFields_",
"name_",
"alias_",
"venue_",
};
java.lang.String info =
"\u0000\u0005\u0000\u0001\u0001\u0005\u0005\u0000\u0000\u0000\u0001\u0003\u0002\u0208" +
"\u0003\u0208\u0004\u0208\u0005\u1009\u0000";
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.Team.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.Team)
private static final com.streamlayer.sports.common.Team DEFAULT_INSTANCE;
static {
Team defaultInstance = new Team();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
Team.class, defaultInstance);
}
public static com.streamlayer.sports.common.Team getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}