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.
ru.tinkoff.piapi.contract.v1.FutureResponse Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: instruments.proto
package ru.tinkoff.piapi.contract.v1;
/**
*
*Данные по фьючерсу.
*
*
* Protobuf type {@code tinkoff.public.invest.api.contract.v1.FutureResponse}
*/
public final class FutureResponse extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:tinkoff.public.invest.api.contract.v1.FutureResponse)
FutureResponseOrBuilder {
private static final long serialVersionUID = 0L;
// Use FutureResponse.newBuilder() to construct.
private FutureResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private FutureResponse() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new FutureResponse();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return ru.tinkoff.piapi.contract.v1.Instruments.internal_static_tinkoff_public_invest_api_contract_v1_FutureResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return ru.tinkoff.piapi.contract.v1.Instruments.internal_static_tinkoff_public_invest_api_contract_v1_FutureResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
ru.tinkoff.piapi.contract.v1.FutureResponse.class, ru.tinkoff.piapi.contract.v1.FutureResponse.Builder.class);
}
public static final int INSTRUMENT_FIELD_NUMBER = 1;
private ru.tinkoff.piapi.contract.v1.Future instrument_;
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
* @return Whether the instrument field is set.
*/
@java.lang.Override
public boolean hasInstrument() {
return instrument_ != null;
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
* @return The instrument.
*/
@java.lang.Override
public ru.tinkoff.piapi.contract.v1.Future getInstrument() {
return instrument_ == null ? ru.tinkoff.piapi.contract.v1.Future.getDefaultInstance() : instrument_;
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
@java.lang.Override
public ru.tinkoff.piapi.contract.v1.FutureOrBuilder getInstrumentOrBuilder() {
return instrument_ == null ? ru.tinkoff.piapi.contract.v1.Future.getDefaultInstance() : instrument_;
}
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 {
if (instrument_ != null) {
output.writeMessage(1, getInstrument());
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (instrument_ != null) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(1, getInstrument());
}
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
}
@java.lang.Override
public boolean equals(final java.lang.Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof ru.tinkoff.piapi.contract.v1.FutureResponse)) {
return super.equals(obj);
}
ru.tinkoff.piapi.contract.v1.FutureResponse other = (ru.tinkoff.piapi.contract.v1.FutureResponse) obj;
if (hasInstrument() != other.hasInstrument()) return false;
if (hasInstrument()) {
if (!getInstrument()
.equals(other.getInstrument())) return false;
}
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@java.lang.Override
public int hashCode() {
if (memoizedHashCode != 0) {
return memoizedHashCode;
}
int hash = 41;
hash = (19 * hash) + getDescriptor().hashCode();
if (hasInstrument()) {
hash = (37 * hash) + INSTRUMENT_FIELD_NUMBER;
hash = (53 * hash) + getInstrument().hashCode();
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse 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 ru.tinkoff.piapi.contract.v1.FutureResponse parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse 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 ru.tinkoff.piapi.contract.v1.FutureResponse parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse 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(ru.tinkoff.piapi.contract.v1.FutureResponse 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 tinkoff.public.invest.api.contract.v1.FutureResponse}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:tinkoff.public.invest.api.contract.v1.FutureResponse)
ru.tinkoff.piapi.contract.v1.FutureResponseOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return ru.tinkoff.piapi.contract.v1.Instruments.internal_static_tinkoff_public_invest_api_contract_v1_FutureResponse_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return ru.tinkoff.piapi.contract.v1.Instruments.internal_static_tinkoff_public_invest_api_contract_v1_FutureResponse_fieldAccessorTable
.ensureFieldAccessorsInitialized(
ru.tinkoff.piapi.contract.v1.FutureResponse.class, ru.tinkoff.piapi.contract.v1.FutureResponse.Builder.class);
}
// Construct using ru.tinkoff.piapi.contract.v1.FutureResponse.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
instrument_ = null;
if (instrumentBuilder_ != null) {
instrumentBuilder_.dispose();
instrumentBuilder_ = null;
}
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return ru.tinkoff.piapi.contract.v1.Instruments.internal_static_tinkoff_public_invest_api_contract_v1_FutureResponse_descriptor;
}
@java.lang.Override
public ru.tinkoff.piapi.contract.v1.FutureResponse getDefaultInstanceForType() {
return ru.tinkoff.piapi.contract.v1.FutureResponse.getDefaultInstance();
}
@java.lang.Override
public ru.tinkoff.piapi.contract.v1.FutureResponse build() {
ru.tinkoff.piapi.contract.v1.FutureResponse result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public ru.tinkoff.piapi.contract.v1.FutureResponse buildPartial() {
ru.tinkoff.piapi.contract.v1.FutureResponse result = new ru.tinkoff.piapi.contract.v1.FutureResponse(this);
if (bitField0_ != 0) { buildPartial0(result); }
onBuilt();
return result;
}
private void buildPartial0(ru.tinkoff.piapi.contract.v1.FutureResponse result) {
int from_bitField0_ = bitField0_;
if (((from_bitField0_ & 0x00000001) != 0)) {
result.instrument_ = instrumentBuilder_ == null
? instrument_
: instrumentBuilder_.build();
}
}
@java.lang.Override
public Builder mergeFrom(com.google.protobuf.Message other) {
if (other instanceof ru.tinkoff.piapi.contract.v1.FutureResponse) {
return mergeFrom((ru.tinkoff.piapi.contract.v1.FutureResponse)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(ru.tinkoff.piapi.contract.v1.FutureResponse other) {
if (other == ru.tinkoff.piapi.contract.v1.FutureResponse.getDefaultInstance()) return this;
if (other.hasInstrument()) {
mergeInstrument(other.getInstrument());
}
this.mergeUnknownFields(other.getUnknownFields());
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 {
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
input.readMessage(
getInstrumentFieldBuilder().getBuilder(),
extensionRegistry);
bitField0_ |= 0x00000001;
break;
} // case 10
default: {
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
done = true; // was an endgroup tag
}
break;
} // default:
} // switch (tag)
} // while (!done)
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.unwrapIOException();
} finally {
onChanged();
} // finally
return this;
}
private int bitField0_;
private ru.tinkoff.piapi.contract.v1.Future instrument_;
private com.google.protobuf.SingleFieldBuilderV3<
ru.tinkoff.piapi.contract.v1.Future, ru.tinkoff.piapi.contract.v1.Future.Builder, ru.tinkoff.piapi.contract.v1.FutureOrBuilder> instrumentBuilder_;
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
* @return Whether the instrument field is set.
*/
public boolean hasInstrument() {
return ((bitField0_ & 0x00000001) != 0);
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
* @return The instrument.
*/
public ru.tinkoff.piapi.contract.v1.Future getInstrument() {
if (instrumentBuilder_ == null) {
return instrument_ == null ? ru.tinkoff.piapi.contract.v1.Future.getDefaultInstance() : instrument_;
} else {
return instrumentBuilder_.getMessage();
}
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
public Builder setInstrument(ru.tinkoff.piapi.contract.v1.Future value) {
if (instrumentBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
instrument_ = value;
} else {
instrumentBuilder_.setMessage(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
public Builder setInstrument(
ru.tinkoff.piapi.contract.v1.Future.Builder builderForValue) {
if (instrumentBuilder_ == null) {
instrument_ = builderForValue.build();
} else {
instrumentBuilder_.setMessage(builderForValue.build());
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
public Builder mergeInstrument(ru.tinkoff.piapi.contract.v1.Future value) {
if (instrumentBuilder_ == null) {
if (((bitField0_ & 0x00000001) != 0) &&
instrument_ != null &&
instrument_ != ru.tinkoff.piapi.contract.v1.Future.getDefaultInstance()) {
getInstrumentBuilder().mergeFrom(value);
} else {
instrument_ = value;
}
} else {
instrumentBuilder_.mergeFrom(value);
}
bitField0_ |= 0x00000001;
onChanged();
return this;
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
public Builder clearInstrument() {
bitField0_ = (bitField0_ & ~0x00000001);
instrument_ = null;
if (instrumentBuilder_ != null) {
instrumentBuilder_.dispose();
instrumentBuilder_ = null;
}
onChanged();
return this;
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
public ru.tinkoff.piapi.contract.v1.Future.Builder getInstrumentBuilder() {
bitField0_ |= 0x00000001;
onChanged();
return getInstrumentFieldBuilder().getBuilder();
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
public ru.tinkoff.piapi.contract.v1.FutureOrBuilder getInstrumentOrBuilder() {
if (instrumentBuilder_ != null) {
return instrumentBuilder_.getMessageOrBuilder();
} else {
return instrument_ == null ?
ru.tinkoff.piapi.contract.v1.Future.getDefaultInstance() : instrument_;
}
}
/**
*
* Информация о фьючерсу.
*
*
* .tinkoff.public.invest.api.contract.v1.Future instrument = 1;
*/
private com.google.protobuf.SingleFieldBuilderV3<
ru.tinkoff.piapi.contract.v1.Future, ru.tinkoff.piapi.contract.v1.Future.Builder, ru.tinkoff.piapi.contract.v1.FutureOrBuilder>
getInstrumentFieldBuilder() {
if (instrumentBuilder_ == null) {
instrumentBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
ru.tinkoff.piapi.contract.v1.Future, ru.tinkoff.piapi.contract.v1.Future.Builder, ru.tinkoff.piapi.contract.v1.FutureOrBuilder>(
getInstrument(),
getParentForChildren(),
isClean());
instrument_ = null;
}
return instrumentBuilder_;
}
@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:tinkoff.public.invest.api.contract.v1.FutureResponse)
}
// @@protoc_insertion_point(class_scope:tinkoff.public.invest.api.contract.v1.FutureResponse)
private static final ru.tinkoff.piapi.contract.v1.FutureResponse DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new ru.tinkoff.piapi.contract.v1.FutureResponse();
}
public static ru.tinkoff.piapi.contract.v1.FutureResponse getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public FutureResponse parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
Builder builder = newBuilder();
try {
builder.mergeFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(builder.buildPartial());
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(builder.buildPartial());
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(e)
.setUnfinishedMessage(builder.buildPartial());
}
return builder.buildPartial();
}
};
public static com.google.protobuf.Parser parser() {
return PARSER;
}
@java.lang.Override
public com.google.protobuf.Parser getParserForType() {
return PARSER;
}
@java.lang.Override
public ru.tinkoff.piapi.contract.v1.FutureResponse getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}