main.java.com.streamlayer.inplay.CountryOrBuilder 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/inplay/inplay.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.inplay;
public interface CountryOrBuilder extends
// @@protoc_insertion_point(interface_extends:streamlayer.inplay.Country)
com.google.protobuf.MessageLiteOrBuilder {
/**
* string name = 1 [json_name = "name"];
* @return The name.
*/
java.lang.String getName();
/**
* string name = 1 [json_name = "name"];
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* repeated string leagues = 2 [json_name = "leagues"];
* @return A list containing the leagues.
*/
java.util.List
getLeaguesList();
/**
* repeated string leagues = 2 [json_name = "leagues"];
* @return The count of leagues.
*/
int getLeaguesCount();
/**
* repeated string leagues = 2 [json_name = "leagues"];
* @param index The index of the element to return.
* @return The leagues at the given index.
*/
java.lang.String getLeagues(int index);
/**
* repeated string leagues = 2 [json_name = "leagues"];
* @param index The index of the element to return.
* @return The leagues at the given index.
*/
com.google.protobuf.ByteString
getLeaguesBytes(int index);
/**
*
* ISO 3166-1 alpha-2 country code
*
*
* string alpha2 = 3 [json_name = "alpha2"];
* @return The alpha2.
*/
java.lang.String getAlpha2();
/**
*
* ISO 3166-1 alpha-2 country code
*
*
* string alpha2 = 3 [json_name = "alpha2"];
* @return The bytes for alpha2.
*/
com.google.protobuf.ByteString
getAlpha2Bytes();
/**
*
* ISO 3166-1 alpha-3 country code
*
*
* string alpha3 = 4 [json_name = "alpha3"];
* @return The alpha3.
*/
java.lang.String getAlpha3();
/**
*
* ISO 3166-1 alpha-3 country code
*
*
* string alpha3 = 4 [json_name = "alpha3"];
* @return The bytes for alpha3.
*/
com.google.protobuf.ByteString
getAlpha3Bytes();
}