main.java.com.streamlayer.interactive.feed.PickHistoryRequest 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/interactive/feed/interactive.feed.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.interactive.feed;
/**
* Protobuf type {@code streamlayer.interactive.feed.PickHistoryRequest}
*/
public final class PickHistoryRequest extends
com.google.protobuf.GeneratedMessageLite<
PickHistoryRequest, PickHistoryRequest.Builder> implements
// @@protoc_insertion_point(message_implements:streamlayer.interactive.feed.PickHistoryRequest)
PickHistoryRequestOrBuilder {
private PickHistoryRequest() {
questionType_ = emptyIntList();
eventId_ = "";
}
private int bitField0_;
public static final int QUESTION_TYPE_FIELD_NUMBER = 1;
private com.google.protobuf.Internal.IntList questionType_;
private static final com.google.protobuf.Internal.ListAdapter.Converter<
java.lang.Integer, com.streamlayer.interactive.common.QuestionType> questionType_converter_ =
new com.google.protobuf.Internal.ListAdapter.Converter<
java.lang.Integer, com.streamlayer.interactive.common.QuestionType>() {
@java.lang.Override
public com.streamlayer.interactive.common.QuestionType convert(java.lang.Integer from) {
com.streamlayer.interactive.common.QuestionType result = com.streamlayer.interactive.common.QuestionType.forNumber(from);
return result == null ? com.streamlayer.interactive.common.QuestionType.UNRECOGNIZED : result;
}
};
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return A list containing the questionType.
*/
@java.lang.Override
public java.util.List getQuestionTypeList() {
return new com.google.protobuf.Internal.ListAdapter<
java.lang.Integer, com.streamlayer.interactive.common.QuestionType>(questionType_, questionType_converter_);
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return The count of questionType.
*/
@java.lang.Override
public int getQuestionTypeCount() {
return questionType_.size();
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index of the element to return.
* @return The questionType at the given index.
*/
@java.lang.Override
public com.streamlayer.interactive.common.QuestionType getQuestionType(int index) {
com.streamlayer.interactive.common.QuestionType result = com.streamlayer.interactive.common.QuestionType.forNumber(questionType_.getInt(index));
return result == null ? com.streamlayer.interactive.common.QuestionType.UNRECOGNIZED : result;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return A list containing the enum numeric values on the wire for questionType.
*/
@java.lang.Override
public java.util.List
getQuestionTypeValueList() {
return questionType_;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index of the value to return.
* @return The enum numeric value on the wire of questionType at the given index.
*/
@java.lang.Override
public int getQuestionTypeValue(int index) {
return questionType_.getInt(index);
}
private int questionTypeMemoizedSerializedSize;
private void ensureQuestionTypeIsMutable() {
com.google.protobuf.Internal.IntList tmp = questionType_;
if (!tmp.isModifiable()) {
questionType_ =
com.google.protobuf.GeneratedMessageLite.mutableCopy(tmp);
}
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index to set the value at.
* @param value The questionType to set.
*/
private void setQuestionType(
int index, com.streamlayer.interactive.common.QuestionType value) {
value.getClass();
ensureQuestionTypeIsMutable();
questionType_.setInt(index, value.getNumber());
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param value The questionType to add.
*/
private void addQuestionType(com.streamlayer.interactive.common.QuestionType value) {
value.getClass();
ensureQuestionTypeIsMutable();
questionType_.addInt(value.getNumber());
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param values The questionType to add.
*/
private void addAllQuestionType(
java.lang.Iterable extends com.streamlayer.interactive.common.QuestionType> values) {
ensureQuestionTypeIsMutable();
for (com.streamlayer.interactive.common.QuestionType value : values) {
questionType_.addInt(value.getNumber());
}
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
*/
private void clearQuestionType() {
questionType_ = emptyIntList();
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param value The enum numeric value on the wire for questionType to set.
*/
private void setQuestionTypeValue(
int index, int value) {
ensureQuestionTypeIsMutable();
questionType_.setInt(index, value);
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param value The enum numeric value on the wire for questionType to add.
*/
private void addQuestionTypeValue(int value) {
ensureQuestionTypeIsMutable();
questionType_.addInt(value);
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param values The enum numeric values on the wire for questionType to add.
*/
private void addAllQuestionTypeValue(
java.lang.Iterable values) {
ensureQuestionTypeIsMutable();
for (int value : values) {
questionType_.addInt(value);
}
}
public static final int EVENT_ID_FIELD_NUMBER = 3;
private java.lang.String eventId_;
/**
* string event_id = 3 [json_name = "eventId"];
* @return The eventId.
*/
@java.lang.Override
public java.lang.String getEventId() {
return eventId_;
}
/**
* string event_id = 3 [json_name = "eventId"];
* @return The bytes for eventId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getEventIdBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(eventId_);
}
/**
* string event_id = 3 [json_name = "eventId"];
* @param value The eventId to set.
*/
private void setEventId(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
eventId_ = value;
}
/**
* string event_id = 3 [json_name = "eventId"];
*/
private void clearEventId() {
eventId_ = getDefaultInstance().getEventId();
}
/**
* string event_id = 3 [json_name = "eventId"];
* @param value The bytes for eventId to set.
*/
private void setEventIdBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
eventId_ = value.toStringUtf8();
}
public static final int PAGINATION_FIELD_NUMBER = 2;
private com.streamlayer.interactive.common.Pagination pagination_;
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
@java.lang.Override
public boolean hasPagination() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
@java.lang.Override
public com.streamlayer.interactive.common.Pagination getPagination() {
return pagination_ == null ? com.streamlayer.interactive.common.Pagination.getDefaultInstance() : pagination_;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
private void setPagination(com.streamlayer.interactive.common.Pagination value) {
value.getClass();
pagination_ = value;
bitField0_ |= 0x00000001;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergePagination(com.streamlayer.interactive.common.Pagination value) {
value.getClass();
if (pagination_ != null &&
pagination_ != com.streamlayer.interactive.common.Pagination.getDefaultInstance()) {
pagination_ =
com.streamlayer.interactive.common.Pagination.newBuilder(pagination_).mergeFrom(value).buildPartial();
} else {
pagination_ = value;
}
bitField0_ |= 0x00000001;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
private void clearPagination() { pagination_ = null;
bitField0_ = (bitField0_ & ~0x00000001);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest 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.interactive.feed.PickHistoryRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest 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.interactive.feed.PickHistoryRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest 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.interactive.feed.PickHistoryRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest 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.interactive.feed.PickHistoryRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest 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.interactive.feed.PickHistoryRequest prototype) {
return DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
* Protobuf type {@code streamlayer.interactive.feed.PickHistoryRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.streamlayer.interactive.feed.PickHistoryRequest, Builder> implements
// @@protoc_insertion_point(builder_implements:streamlayer.interactive.feed.PickHistoryRequest)
com.streamlayer.interactive.feed.PickHistoryRequestOrBuilder {
// Construct using com.streamlayer.interactive.feed.PickHistoryRequest.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return A list containing the questionType.
*/
@java.lang.Override
public java.util.List getQuestionTypeList() {
return instance.getQuestionTypeList();
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return The count of questionType.
*/
@java.lang.Override
public int getQuestionTypeCount() {
return instance.getQuestionTypeCount();
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index of the element to return.
* @return The questionType at the given index.
*/
@java.lang.Override
public com.streamlayer.interactive.common.QuestionType getQuestionType(int index) {
return instance.getQuestionType(index);
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index to set the value at.
* @param value The questionType to set.
* @return This builder for chaining.
*/
public Builder setQuestionType(
int index, com.streamlayer.interactive.common.QuestionType value) {
copyOnWrite();
instance.setQuestionType(index, value);
return this;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param value The questionType to add.
* @return This builder for chaining.
*/
public Builder addQuestionType(com.streamlayer.interactive.common.QuestionType value) {
copyOnWrite();
instance.addQuestionType(value);
return this;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param values The questionType to add.
* @return This builder for chaining.
*/
public Builder addAllQuestionType(
java.lang.Iterable extends com.streamlayer.interactive.common.QuestionType> values) {
copyOnWrite();
instance.addAllQuestionType(values); return this;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return This builder for chaining.
*/
public Builder clearQuestionType() {
copyOnWrite();
instance.clearQuestionType();
return this;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @return A list containing the enum numeric values on the wire for questionType.
*/
@java.lang.Override
public java.util.List
getQuestionTypeValueList() {
return java.util.Collections.unmodifiableList(
instance.getQuestionTypeValueList());
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index of the value to return.
* @return The enum numeric value on the wire of questionType at the given index.
*/
@java.lang.Override
public int getQuestionTypeValue(int index) {
return instance.getQuestionTypeValue(index);
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param index The index to set the value at.
* @param value The enum numeric value on the wire for questionType to set.
* @return This builder for chaining.
*/
public Builder setQuestionTypeValue(
int index, int value) {
copyOnWrite();
instance.setQuestionTypeValue(index, value);
return this;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param value The enum numeric value on the wire for questionType to add.
* @return This builder for chaining.
*/
public Builder addQuestionTypeValue(int value) {
copyOnWrite();
instance.addQuestionTypeValue(value);
return this;
}
/**
* repeated .streamlayer.interactive.QuestionType question_type = 1 [json_name = "questionType"];
* @param values The enum numeric values on the wire for questionType to add.
* @return This builder for chaining.
*/
public Builder addAllQuestionTypeValue(
java.lang.Iterable values) {
copyOnWrite();
instance.addAllQuestionTypeValue(values);
return this;
}
/**
* string event_id = 3 [json_name = "eventId"];
* @return The eventId.
*/
@java.lang.Override
public java.lang.String getEventId() {
return instance.getEventId();
}
/**
* string event_id = 3 [json_name = "eventId"];
* @return The bytes for eventId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getEventIdBytes() {
return instance.getEventIdBytes();
}
/**
* string event_id = 3 [json_name = "eventId"];
* @param value The eventId to set.
* @return This builder for chaining.
*/
public Builder setEventId(
java.lang.String value) {
copyOnWrite();
instance.setEventId(value);
return this;
}
/**
* string event_id = 3 [json_name = "eventId"];
* @return This builder for chaining.
*/
public Builder clearEventId() {
copyOnWrite();
instance.clearEventId();
return this;
}
/**
* string event_id = 3 [json_name = "eventId"];
* @param value The bytes for eventId to set.
* @return This builder for chaining.
*/
public Builder setEventIdBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setEventIdBytes(value);
return this;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
@java.lang.Override
public boolean hasPagination() {
return instance.hasPagination();
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
@java.lang.Override
public com.streamlayer.interactive.common.Pagination getPagination() {
return instance.getPagination();
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
public Builder setPagination(com.streamlayer.interactive.common.Pagination value) {
copyOnWrite();
instance.setPagination(value);
return this;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
public Builder setPagination(
com.streamlayer.interactive.common.Pagination.Builder builderForValue) {
copyOnWrite();
instance.setPagination(builderForValue.build());
return this;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
public Builder mergePagination(com.streamlayer.interactive.common.Pagination value) {
copyOnWrite();
instance.mergePagination(value);
return this;
}
/**
* .streamlayer.interactive.Pagination pagination = 2 [json_name = "pagination"];
*/
public Builder clearPagination() { copyOnWrite();
instance.clearPagination();
return this;
}
// @@protoc_insertion_point(builder_scope:streamlayer.interactive.feed.PickHistoryRequest)
}
@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.interactive.feed.PickHistoryRequest();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"bitField0_",
"questionType_",
"pagination_",
"eventId_",
};
java.lang.String info =
"\u0000\u0003\u0000\u0001\u0001\u0003\u0003\u0000\u0001\u0000\u0001,\u0002\u1009\u0000" +
"\u0003\u0208";
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.interactive.feed.PickHistoryRequest.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.interactive.feed.PickHistoryRequest)
private static final com.streamlayer.interactive.feed.PickHistoryRequest DEFAULT_INSTANCE;
static {
PickHistoryRequest defaultInstance = new PickHistoryRequest();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
PickHistoryRequest.class, defaultInstance);
}
public static com.streamlayer.interactive.feed.PickHistoryRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}