All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.github.tjake.jlama.net.GenerateResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: JlamaService.proto
package com.github.tjake.jlama.net;
/**
* Protobuf type {@code com.github.tjake.jlama.net.GenerateResponse}
*/
public final class GenerateResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:com.github.tjake.jlama.net.GenerateResponse)
GenerateResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use GenerateResponse.newBuilder() to construct.
private GenerateResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private GenerateResponse() {
session_ = com.google.protobuf.ByteString.EMPTY;
tokens_ = emptyIntList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new GenerateResponse();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private GenerateResponse(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
session_ = input.readBytes();
break;
}
case 16: {
startPosition_ = input.readInt32();
break;
}
case 24: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
tokens_ = newIntList();
mutable_bitField0_ |= 0x00000001;
}
tokens_.addInt(input.readInt32());
break;
}
case 26: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
tokens_ = newIntList();
mutable_bitField0_ |= 0x00000001;
}
while (input.getBytesUntilLimit() > 0) {
tokens_.addInt(input.readInt32());
}
input.popLimit(limit);
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
tokens_.makeImmutable(); // C
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.github.tjake.jlama.net.JlamaServiceOuterClass.internal_static_com_github_tjake_jlama_net_GenerateResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.github.tjake.jlama.net.JlamaServiceOuterClass.internal_static_com_github_tjake_jlama_net_GenerateResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.github.tjake.jlama.net.GenerateResponse.class, com.github.tjake.jlama.net.GenerateResponse.Builder.class);
}
public static final int SESSION_FIELD_NUMBER = 1;
private com.google.protobuf.ByteString session_;
/**
* bytes session = 1;
* @return The session.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSession() {
return session_;
}
public static final int STARTPOSITION_FIELD_NUMBER = 2;
private int startPosition_;
/**
* int32 startPosition = 2;
* @return The startPosition.
*/
@java.lang.Override
public int getStartPosition() {
return startPosition_;
}
public static final int TOKENS_FIELD_NUMBER = 3;
private com.google.protobuf.Internal.IntList tokens_;
/**
* repeated int32 tokens = 3;
* @return A list containing the tokens.
*/
@java.lang.Override
public java.util.List
getTokensList() {
return tokens_;
}
/**
* repeated int32 tokens = 3;
* @return The count of tokens.
*/
public int getTokensCount() {
return tokens_.size();
}
/**
* repeated int32 tokens = 3;
* @param index The index of the element to return.
* @return The tokens at the given index.
*/
public int getTokens(int index) {
return tokens_.getInt(index);
}
private int tokensMemoizedSerializedSize = -1;
private byte memoizedIsInitialized = -1;
@java.lang.Override
public final boolean isInitialized() {
byte isInitialized = memoizedIsInitialized;
if (isInitialized == 1) return true;
if (isInitialized == 0) return false;
memoizedIsInitialized = 1;
return true;
}
@java.lang.Override
public void writeTo(com.google.protobuf.CodedOutputStream output)
throws java.io.IOException {
getSerializedSize();
if (!session_.isEmpty()) {
output.writeBytes(1, session_);
}
if (startPosition_ != 0) {
output.writeInt32(2, startPosition_);
}
if (getTokensList().size() > 0) {
output.writeUInt32NoTag(26);
output.writeUInt32NoTag(tokensMemoizedSerializedSize);
}
for (int i = 0; i < tokens_.size(); i++) {
output.writeInt32NoTag(tokens_.getInt(i));
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!session_.isEmpty()) {
size += com.google.protobuf.CodedOutputStream
.computeBytesSize(1, session_);
}
if (startPosition_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(2, startPosition_);
}
{
int dataSize = 0;
for (int i = 0; i < tokens_.size(); i++) {
dataSize += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(tokens_.getInt(i));
}
size += dataSize;
if (!getTokensList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
tokensMemoizedSerializedSize = dataSize;
}
size += unknownFields.getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof com.github.tjake.jlama.net.GenerateResponse)) {
return super.equals(obj);
}
com.github.tjake.jlama.net.GenerateResponse other = (com.github.tjake.jlama.net.GenerateResponse) obj;
if (!getSession()
.equals(other.getSession())) return false;
if (getStartPosition()
!= other.getStartPosition()) return false;
if (!getTokensList()
.equals(other.getTokensList())) return false;
if (!unknownFields.equals(other.unknownFields)) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
hash = (37 * hash) + SESSION_FIELD_NUMBER;
hash = (53 * hash) + getSession().hashCode();
hash = (37 * hash) + STARTPOSITION_FIELD_NUMBER;
hash = (53 * hash) + getStartPosition();
if (getTokensCount() > 0) {
hash = (37 * hash) + TOKENS_FIELD_NUMBER;
hash = (53 * hash) + getTokensList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
public static com.github.tjake.jlama.net.GenerateResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.github.tjake.jlama.net.GenerateResponse parseDelimitedFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input, extensionRegistry);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.github.tjake.jlama.net.GenerateResponse parseFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input, extensionRegistry);
}
@java.lang.Override
public Builder newBuilderForType() { return newBuilder(); }
public static Builder newBuilder() {
return DEFAULT_INSTANCE.toBuilder();
}
public static Builder newBuilder(com.github.tjake.jlama.net.GenerateResponse prototype) {
return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype);
}
@java.lang.Override
public Builder toBuilder() {
return this == DEFAULT_INSTANCE
? new Builder() : new Builder().mergeFrom(this);
}
@java.lang.Override
protected Builder newBuilderForType(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
Builder builder = new Builder(parent);
return builder;
}
/**
* Protobuf type {@code com.github.tjake.jlama.net.GenerateResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:com.github.tjake.jlama.net.GenerateResponse)
com.github.tjake.jlama.net.GenerateResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.github.tjake.jlama.net.JlamaServiceOuterClass.internal_static_com_github_tjake_jlama_net_GenerateResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.github.tjake.jlama.net.JlamaServiceOuterClass.internal_static_com_github_tjake_jlama_net_GenerateResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.github.tjake.jlama.net.GenerateResponse.class, com.github.tjake.jlama.net.GenerateResponse.Builder.class);
}
// Construct using com.github.tjake.jlama.net.GenerateResponse.newBuilder()
private Builder() {
maybeForceBuilderInitialization();
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
maybeForceBuilderInitialization();
}
private void maybeForceBuilderInitialization() {
if (com.google.protobuf.GeneratedMessageV3
.alwaysUseFieldBuilders) {
}
}
@java.lang.Override
public Builder clear() {
super.clear();
session_ = com.google.protobuf.ByteString.EMPTY;
startPosition_ = 0;
tokens_ = emptyIntList();
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.github.tjake.jlama.net.JlamaServiceOuterClass.internal_static_com_github_tjake_jlama_net_GenerateResponse_descriptor;
}
@java.lang.Override
public com.github.tjake.jlama.net.GenerateResponse getDefaultInstanceForType() {
return com.github.tjake.jlama.net.GenerateResponse.getDefaultInstance();
}
@java.lang.Override
public com.github.tjake.jlama.net.GenerateResponse build() {
com.github.tjake.jlama.net.GenerateResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.github.tjake.jlama.net.GenerateResponse buildPartial() {
com.github.tjake.jlama.net.GenerateResponse result = new com.github.tjake.jlama.net.GenerateResponse(this);
int from_bitField0_ = bitField0_;
result.session_ = session_;
result.startPosition_ = startPosition_;
if (((bitField0_ & 0x00000001) != 0)) {
tokens_.makeImmutable();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.tokens_ = tokens_;
onBuilt();
return result;
}
@java.lang.Override
public Builder clone() {
return super.clone();
}
@java.lang.Override
public Builder setField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.setField(field, value);
}
@java.lang.Override
public Builder clearField(
com.google.protobuf.Descriptors.FieldDescriptor field) {
return super.clearField(field);
}
@java.lang.Override
public Builder clearOneof(
com.google.protobuf.Descriptors.OneofDescriptor oneof) {
return super.clearOneof(oneof);
}
@java.lang.Override
public Builder setRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
int index, java.lang.Object value) {
return super.setRepeatedField(field, index, value);
}
@java.lang.Override
public Builder addRepeatedField(
com.google.protobuf.Descriptors.FieldDescriptor field,
java.lang.Object value) {
return super.addRepeatedField(field, value);
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof com.github.tjake.jlama.net.GenerateResponse) {
return mergeFrom((com.github.tjake.jlama.net.GenerateResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.github.tjake.jlama.net.GenerateResponse other) {
if (other == com.github.tjake.jlama.net.GenerateResponse.getDefaultInstance()) return this;
if (other.getSession() != com.google.protobuf.ByteString.EMPTY) {
setSession(other.getSession());
}
if (other.getStartPosition() != 0) {
setStartPosition(other.getStartPosition());
}
if (!other.tokens_.isEmpty()) {
if (tokens_.isEmpty()) {
tokens_ = other.tokens_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureTokensIsMutable();
tokens_.addAll(other.tokens_);
}
onChanged();
}
this.mergeUnknownFields(other.unknownFields);
onChanged();
return this;
}
@java.lang.Override
public final boolean isInitialized() {
return true;
}
@java.lang.Override
public Builder mergeFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
com.github.tjake.jlama.net.GenerateResponse parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.github.tjake.jlama.net.GenerateResponse) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private com.google.protobuf.ByteString session_ = com.google.protobuf.ByteString.EMPTY;
/**
* bytes session = 1;
* @return The session.
*/
@java.lang.Override
public com.google.protobuf.ByteString getSession() {
return session_;
}
/**
* bytes session = 1;
* @param value The session to set.
* @return This builder for chaining.
*/
public Builder setSession(com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
session_ = value;
onChanged();
return this;
}
/**
* bytes session = 1;
* @return This builder for chaining.
*/
public Builder clearSession() {
session_ = getDefaultInstance().getSession();
onChanged();
return this;
}
private int startPosition_ ;
/**
* int32 startPosition = 2;
* @return The startPosition.
*/
@java.lang.Override
public int getStartPosition() {
return startPosition_;
}
/**
* int32 startPosition = 2;
* @param value The startPosition to set.
* @return This builder for chaining.
*/
public Builder setStartPosition(int value) {
startPosition_ = value;
onChanged();
return this;
}
/**
* int32 startPosition = 2;
* @return This builder for chaining.
*/
public Builder clearStartPosition() {
startPosition_ = 0;
onChanged();
return this;
}
private com.google.protobuf.Internal.IntList tokens_ = emptyIntList();
private void ensureTokensIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
tokens_ = mutableCopy(tokens_);
bitField0_ |= 0x00000001;
}
}
/**
* repeated int32 tokens = 3;
* @return A list containing the tokens.
*/
public java.util.List
getTokensList() {
return ((bitField0_ & 0x00000001) != 0) ?
java.util.Collections.unmodifiableList(tokens_) : tokens_;
}
/**
* repeated int32 tokens = 3;
* @return The count of tokens.
*/
public int getTokensCount() {
return tokens_.size();
}
/**
* repeated int32 tokens = 3;
* @param index The index of the element to return.
* @return The tokens at the given index.
*/
public int getTokens(int index) {
return tokens_.getInt(index);
}
/**
* repeated int32 tokens = 3;
* @param index The index to set the value at.
* @param value The tokens to set.
* @return This builder for chaining.
*/
public Builder setTokens(
int index, int value) {
ensureTokensIsMutable();
tokens_.setInt(index, value);
onChanged();
return this;
}
/**
* repeated int32 tokens = 3;
* @param value The tokens to add.
* @return This builder for chaining.
*/
public Builder addTokens(int value) {
ensureTokensIsMutable();
tokens_.addInt(value);
onChanged();
return this;
}
/**
* repeated int32 tokens = 3;
* @param values The tokens to add.
* @return This builder for chaining.
*/
public Builder addAllTokens(
java.lang.Iterable extends java.lang.Integer> values) {
ensureTokensIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, tokens_);
onChanged();
return this;
}
/**
* repeated int32 tokens = 3;
* @return This builder for chaining.
*/
public Builder clearTokens() {
tokens_ = emptyIntList();
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
@java.lang.Override
public final Builder setUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
}
@java.lang.Override
public final Builder mergeUnknownFields(
final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.mergeUnknownFields(unknownFields);
}
// @@protoc_insertion_point(builder_scope:com.github.tjake.jlama.net.GenerateResponse)
}
// @@protoc_insertion_point(class_scope:com.github.tjake.jlama.net.GenerateResponse)
private static final com.github.tjake.jlama.net.GenerateResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.github.tjake.jlama.net.GenerateResponse();
}
public static com.github.tjake.jlama.net.GenerateResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public GenerateResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new GenerateResponse(input, extensionRegistry);
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public com.github.tjake.jlama.net.GenerateResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}