main.java.com.streamlayer.importer.CsvImportQuestionsRequest 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/importer/importer.proto
// Protobuf Java Version: 3.25.3
package com.streamlayer.importer;
/**
* Protobuf type {@code streamlayer.interactive.importer.CsvImportQuestionsRequest}
*/
public final class CsvImportQuestionsRequest extends
com.google.protobuf.GeneratedMessageLite<
CsvImportQuestionsRequest, CsvImportQuestionsRequest.Builder> implements
// @@protoc_insertion_point(message_implements:streamlayer.interactive.importer.CsvImportQuestionsRequest)
CsvImportQuestionsRequestOrBuilder {
private CsvImportQuestionsRequest() {
organizationId_ = "";
}
private int bitField0_;
public static final int ORGANIZATION_ID_FIELD_NUMBER = 1;
private java.lang.String organizationId_;
/**
* string organization_id = 1 [json_name = "organizationId"];
* @return The organizationId.
*/
@java.lang.Override
public java.lang.String getOrganizationId() {
return organizationId_;
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @return The bytes for organizationId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getOrganizationIdBytes() {
return com.google.protobuf.ByteString.copyFromUtf8(organizationId_);
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @param value The organizationId to set.
*/
private void setOrganizationId(
java.lang.String value) {
java.lang.Class> valueClass = value.getClass();
organizationId_ = value;
}
/**
* string organization_id = 1 [json_name = "organizationId"];
*/
private void clearOrganizationId() {
organizationId_ = getDefaultInstance().getOrganizationId();
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @param value The bytes for organizationId to set.
*/
private void setOrganizationIdBytes(
com.google.protobuf.ByteString value) {
checkByteStringIsUtf8(value);
organizationId_ = value.toStringUtf8();
}
public static final int EVENT_ID_FIELD_NUMBER = 2;
private long eventId_;
/**
* uint64 event_id = 2 [json_name = "eventId"];
* @return The eventId.
*/
@java.lang.Override
public long getEventId() {
return eventId_;
}
/**
* uint64 event_id = 2 [json_name = "eventId"];
* @param value The eventId to set.
*/
private void setEventId(long value) {
eventId_ = value;
}
/**
* uint64 event_id = 2 [json_name = "eventId"];
*/
private void clearEventId() {
eventId_ = 0L;
}
public static final int MODERATION_ID_FIELD_NUMBER = 3;
private long moderationId_;
/**
* uint64 moderation_id = 3 [json_name = "moderationId"];
* @return The moderationId.
*/
@java.lang.Override
public long getModerationId() {
return moderationId_;
}
/**
* uint64 moderation_id = 3 [json_name = "moderationId"];
* @param value The moderationId to set.
*/
private void setModerationId(long value) {
moderationId_ = value;
}
/**
* uint64 moderation_id = 3 [json_name = "moderationId"];
*/
private void clearModerationId() {
moderationId_ = 0L;
}
public static final int SOURCE_FIELD_NUMBER = 4;
private com.streamlayer.importer.CsvImportSource source_;
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
@java.lang.Override
public boolean hasSource() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
@java.lang.Override
public com.streamlayer.importer.CsvImportSource getSource() {
return source_ == null ? com.streamlayer.importer.CsvImportSource.getDefaultInstance() : source_;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
private void setSource(com.streamlayer.importer.CsvImportSource value) {
value.getClass();
source_ = value;
bitField0_ |= 0x00000001;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeSource(com.streamlayer.importer.CsvImportSource value) {
value.getClass();
if (source_ != null &&
source_ != com.streamlayer.importer.CsvImportSource.getDefaultInstance()) {
source_ =
com.streamlayer.importer.CsvImportSource.newBuilder(source_).mergeFrom(value).buildPartial();
} else {
source_ = value;
}
bitField0_ |= 0x00000001;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
private void clearSource() { source_ = null;
bitField0_ = (bitField0_ & ~0x00000001);
}
public static final int OPTIONS_FIELD_NUMBER = 5;
private com.streamlayer.importer.CsvImportOptions options_;
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
@java.lang.Override
public boolean hasOptions() {
return ((bitField0_ & 0x00000002) != 0);
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
@java.lang.Override
public com.streamlayer.importer.CsvImportOptions getOptions() {
return options_ == null ? com.streamlayer.importer.CsvImportOptions.getDefaultInstance() : options_;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
private void setOptions(com.streamlayer.importer.CsvImportOptions value) {
value.getClass();
options_ = value;
bitField0_ |= 0x00000002;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
@java.lang.SuppressWarnings({"ReferenceEquality"})
private void mergeOptions(com.streamlayer.importer.CsvImportOptions value) {
value.getClass();
if (options_ != null &&
options_ != com.streamlayer.importer.CsvImportOptions.getDefaultInstance()) {
options_ =
com.streamlayer.importer.CsvImportOptions.newBuilder(options_).mergeFrom(value).buildPartial();
} else {
options_ = value;
}
bitField0_ |= 0x00000002;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
private void clearOptions() { options_ = null;
bitField0_ = (bitField0_ & ~0x00000002);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest 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.importer.CsvImportQuestionsRequest parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest 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.importer.CsvImportQuestionsRequest parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, data);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest 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.importer.CsvImportQuestionsRequest parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest 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.importer.CsvImportQuestionsRequest parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return parseDelimitedFrom(DEFAULT_INSTANCE, input, extensionRegistry);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageLite.parseFrom(
DEFAULT_INSTANCE, input);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest 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.importer.CsvImportQuestionsRequest prototype) {
return DEFAULT_INSTANCE.createBuilder(prototype);
}
/**
* Protobuf type {@code streamlayer.interactive.importer.CsvImportQuestionsRequest}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageLite.Builder<
com.streamlayer.importer.CsvImportQuestionsRequest, Builder> implements
// @@protoc_insertion_point(builder_implements:streamlayer.interactive.importer.CsvImportQuestionsRequest)
com.streamlayer.importer.CsvImportQuestionsRequestOrBuilder {
// Construct using com.streamlayer.importer.CsvImportQuestionsRequest.newBuilder()
private Builder() {
super(DEFAULT_INSTANCE);
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @return The organizationId.
*/
@java.lang.Override
public java.lang.String getOrganizationId() {
return instance.getOrganizationId();
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @return The bytes for organizationId.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getOrganizationIdBytes() {
return instance.getOrganizationIdBytes();
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @param value The organizationId to set.
* @return This builder for chaining.
*/
public Builder setOrganizationId(
java.lang.String value) {
copyOnWrite();
instance.setOrganizationId(value);
return this;
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @return This builder for chaining.
*/
public Builder clearOrganizationId() {
copyOnWrite();
instance.clearOrganizationId();
return this;
}
/**
* string organization_id = 1 [json_name = "organizationId"];
* @param value The bytes for organizationId to set.
* @return This builder for chaining.
*/
public Builder setOrganizationIdBytes(
com.google.protobuf.ByteString value) {
copyOnWrite();
instance.setOrganizationIdBytes(value);
return this;
}
/**
* uint64 event_id = 2 [json_name = "eventId"];
* @return The eventId.
*/
@java.lang.Override
public long getEventId() {
return instance.getEventId();
}
/**
* uint64 event_id = 2 [json_name = "eventId"];
* @param value The eventId to set.
* @return This builder for chaining.
*/
public Builder setEventId(long value) {
copyOnWrite();
instance.setEventId(value);
return this;
}
/**
* uint64 event_id = 2 [json_name = "eventId"];
* @return This builder for chaining.
*/
public Builder clearEventId() {
copyOnWrite();
instance.clearEventId();
return this;
}
/**
* uint64 moderation_id = 3 [json_name = "moderationId"];
* @return The moderationId.
*/
@java.lang.Override
public long getModerationId() {
return instance.getModerationId();
}
/**
* uint64 moderation_id = 3 [json_name = "moderationId"];
* @param value The moderationId to set.
* @return This builder for chaining.
*/
public Builder setModerationId(long value) {
copyOnWrite();
instance.setModerationId(value);
return this;
}
/**
* uint64 moderation_id = 3 [json_name = "moderationId"];
* @return This builder for chaining.
*/
public Builder clearModerationId() {
copyOnWrite();
instance.clearModerationId();
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
@java.lang.Override
public boolean hasSource() {
return instance.hasSource();
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
@java.lang.Override
public com.streamlayer.importer.CsvImportSource getSource() {
return instance.getSource();
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
public Builder setSource(com.streamlayer.importer.CsvImportSource value) {
copyOnWrite();
instance.setSource(value);
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
public Builder setSource(
com.streamlayer.importer.CsvImportSource.Builder builderForValue) {
copyOnWrite();
instance.setSource(builderForValue.build());
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
public Builder mergeSource(com.streamlayer.importer.CsvImportSource value) {
copyOnWrite();
instance.mergeSource(value);
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportSource source = 4 [json_name = "source"];
*/
public Builder clearSource() { copyOnWrite();
instance.clearSource();
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
@java.lang.Override
public boolean hasOptions() {
return instance.hasOptions();
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
@java.lang.Override
public com.streamlayer.importer.CsvImportOptions getOptions() {
return instance.getOptions();
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
public Builder setOptions(com.streamlayer.importer.CsvImportOptions value) {
copyOnWrite();
instance.setOptions(value);
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
public Builder setOptions(
com.streamlayer.importer.CsvImportOptions.Builder builderForValue) {
copyOnWrite();
instance.setOptions(builderForValue.build());
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
public Builder mergeOptions(com.streamlayer.importer.CsvImportOptions value) {
copyOnWrite();
instance.mergeOptions(value);
return this;
}
/**
* .streamlayer.interactive.importer.CsvImportOptions options = 5 [json_name = "options"];
*/
public Builder clearOptions() { copyOnWrite();
instance.clearOptions();
return this;
}
// @@protoc_insertion_point(builder_scope:streamlayer.interactive.importer.CsvImportQuestionsRequest)
}
@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.importer.CsvImportQuestionsRequest();
}
case NEW_BUILDER: {
return new Builder();
}
case BUILD_MESSAGE_INFO: {
java.lang.Object[] objects = new java.lang.Object[] {
"bitField0_",
"organizationId_",
"eventId_",
"moderationId_",
"source_",
"options_",
};
java.lang.String info =
"\u0000\u0005\u0000\u0001\u0001\u0005\u0005\u0000\u0000\u0000\u0001\u0208\u0002\u0003" +
"\u0003\u0003\u0004\u1009\u0000\u0005\u1009\u0001";
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.importer.CsvImportQuestionsRequest.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.importer.CsvImportQuestionsRequest)
private static final com.streamlayer.importer.CsvImportQuestionsRequest DEFAULT_INSTANCE;
static {
CsvImportQuestionsRequest defaultInstance = new CsvImportQuestionsRequest();
// New instances are implicitly immutable so no need to make
// immutable.
DEFAULT_INSTANCE = defaultInstance;
com.google.protobuf.GeneratedMessageLite.registerDefaultInstance(
CsvImportQuestionsRequest.class, defaultInstance);
}
public static com.streamlayer.importer.CsvImportQuestionsRequest getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static volatile com.google.protobuf.Parser PARSER;
public static com.google.protobuf.Parser parser() {
return DEFAULT_INSTANCE.getParserForType();
}
}