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.byteplus.service.vod.model.business.SnapshotParamsSprite Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: byteplus/vod/business/vod_workflow.proto
package com.byteplus.service.vod.model.business;
/**
* Protobuf type {@code Byteplus.Vod.Models.Business.SnapshotParamsSprite}
*/
public final class SnapshotParamsSprite extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:Byteplus.Vod.Models.Business.SnapshotParamsSprite)
SnapshotParamsSpriteOrBuilder {
private static final long serialVersionUID = 0L;
// Use SnapshotParamsSprite.newBuilder() to construct.
private SnapshotParamsSprite(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SnapshotParamsSprite() {
format_ = "";
storeUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new SnapshotParamsSprite();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SnapshotParamsSprite(
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: {
java.lang.String s = input.readStringRequireUtf8();
format_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
storeUris_ = new com.google.protobuf.LazyStringArrayList();
mutable_bitField0_ |= 0x00000001;
}
storeUris_.add(s);
break;
}
case 24: {
cellWidth_ = input.readInt32();
break;
}
case 32: {
cellHeight_ = input.readInt32();
break;
}
case 40: {
imgXLen_ = input.readInt32();
break;
}
case 48: {
imgYLen_ = input.readInt32();
break;
}
case 61: {
interval_ = input.readFloat();
break;
}
case 64: {
captureNum_ = input.readInt32();
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)) {
storeUris_ = storeUris_.getUnmodifiableView();
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.byteplus.service.vod.model.business.VodWorkflow.internal_static_Byteplus_Vod_Models_Business_SnapshotParamsSprite_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.byteplus.service.vod.model.business.VodWorkflow.internal_static_Byteplus_Vod_Models_Business_SnapshotParamsSprite_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.byteplus.service.vod.model.business.SnapshotParamsSprite.class, com.byteplus.service.vod.model.business.SnapshotParamsSprite.Builder.class);
}
public static final int FORMAT_FIELD_NUMBER = 1;
private volatile java.lang.Object format_;
/**
* string Format = 1;
* @return The format.
*/
@java.lang.Override
public java.lang.String getFormat() {
java.lang.Object ref = format_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
format_ = s;
return s;
}
}
/**
* string Format = 1;
* @return The bytes for format.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getFormatBytes() {
java.lang.Object ref = format_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
format_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int STOREURIS_FIELD_NUMBER = 2;
private com.google.protobuf.LazyStringList storeUris_;
/**
* repeated string StoreUris = 2;
* @return A list containing the storeUris.
*/
public com.google.protobuf.ProtocolStringList
getStoreUrisList() {
return storeUris_;
}
/**
* repeated string StoreUris = 2;
* @return The count of storeUris.
*/
public int getStoreUrisCount() {
return storeUris_.size();
}
/**
* repeated string StoreUris = 2;
* @param index The index of the element to return.
* @return The storeUris at the given index.
*/
public java.lang.String getStoreUris(int index) {
return storeUris_.get(index);
}
/**
* repeated string StoreUris = 2;
* @param index The index of the value to return.
* @return The bytes of the storeUris at the given index.
*/
public com.google.protobuf.ByteString
getStoreUrisBytes(int index) {
return storeUris_.getByteString(index);
}
public static final int CELLWIDTH_FIELD_NUMBER = 3;
private int cellWidth_;
/**
* int32 CellWidth = 3;
* @return The cellWidth.
*/
@java.lang.Override
public int getCellWidth() {
return cellWidth_;
}
public static final int CELLHEIGHT_FIELD_NUMBER = 4;
private int cellHeight_;
/**
* int32 CellHeight = 4;
* @return The cellHeight.
*/
@java.lang.Override
public int getCellHeight() {
return cellHeight_;
}
public static final int IMGXLEN_FIELD_NUMBER = 5;
private int imgXLen_;
/**
* int32 ImgXLen = 5;
* @return The imgXLen.
*/
@java.lang.Override
public int getImgXLen() {
return imgXLen_;
}
public static final int IMGYLEN_FIELD_NUMBER = 6;
private int imgYLen_;
/**
* int32 ImgYLen = 6;
* @return The imgYLen.
*/
@java.lang.Override
public int getImgYLen() {
return imgYLen_;
}
public static final int INTERVAL_FIELD_NUMBER = 7;
private float interval_;
/**
* float Interval = 7;
* @return The interval.
*/
@java.lang.Override
public float getInterval() {
return interval_;
}
public static final int CAPTURENUM_FIELD_NUMBER = 8;
private int captureNum_;
/**
* int32 CaptureNum = 8;
* @return The captureNum.
*/
@java.lang.Override
public int getCaptureNum() {
return captureNum_;
}
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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(format_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, format_);
}
for (int i = 0; i < storeUris_.size(); i++) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 2, storeUris_.getRaw(i));
}
if (cellWidth_ != 0) {
output.writeInt32(3, cellWidth_);
}
if (cellHeight_ != 0) {
output.writeInt32(4, cellHeight_);
}
if (imgXLen_ != 0) {
output.writeInt32(5, imgXLen_);
}
if (imgYLen_ != 0) {
output.writeInt32(6, imgYLen_);
}
if (java.lang.Float.floatToRawIntBits(interval_) != 0) {
output.writeFloat(7, interval_);
}
if (captureNum_ != 0) {
output.writeInt32(8, captureNum_);
}
unknownFields.writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(format_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, format_);
}
{
int dataSize = 0;
for (int i = 0; i < storeUris_.size(); i++) {
dataSize += computeStringSizeNoTag(storeUris_.getRaw(i));
}
size += dataSize;
size += 1 * getStoreUrisList().size();
}
if (cellWidth_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, cellWidth_);
}
if (cellHeight_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, cellHeight_);
}
if (imgXLen_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, imgXLen_);
}
if (imgYLen_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, imgYLen_);
}
if (java.lang.Float.floatToRawIntBits(interval_) != 0) {
size += com.google.protobuf.CodedOutputStream
.computeFloatSize(7, interval_);
}
if (captureNum_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(8, captureNum_);
}
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.byteplus.service.vod.model.business.SnapshotParamsSprite)) {
return super.equals(obj);
}
com.byteplus.service.vod.model.business.SnapshotParamsSprite other = (com.byteplus.service.vod.model.business.SnapshotParamsSprite) obj;
if (!getFormat()
.equals(other.getFormat())) return false;
if (!getStoreUrisList()
.equals(other.getStoreUrisList())) return false;
if (getCellWidth()
!= other.getCellWidth()) return false;
if (getCellHeight()
!= other.getCellHeight()) return false;
if (getImgXLen()
!= other.getImgXLen()) return false;
if (getImgYLen()
!= other.getImgYLen()) return false;
if (java.lang.Float.floatToIntBits(getInterval())
!= java.lang.Float.floatToIntBits(
other.getInterval())) return false;
if (getCaptureNum()
!= other.getCaptureNum()) 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) + FORMAT_FIELD_NUMBER;
hash = (53 * hash) + getFormat().hashCode();
if (getStoreUrisCount() > 0) {
hash = (37 * hash) + STOREURIS_FIELD_NUMBER;
hash = (53 * hash) + getStoreUrisList().hashCode();
}
hash = (37 * hash) + CELLWIDTH_FIELD_NUMBER;
hash = (53 * hash) + getCellWidth();
hash = (37 * hash) + CELLHEIGHT_FIELD_NUMBER;
hash = (53 * hash) + getCellHeight();
hash = (37 * hash) + IMGXLEN_FIELD_NUMBER;
hash = (53 * hash) + getImgXLen();
hash = (37 * hash) + IMGYLEN_FIELD_NUMBER;
hash = (53 * hash) + getImgYLen();
hash = (37 * hash) + INTERVAL_FIELD_NUMBER;
hash = (53 * hash) + java.lang.Float.floatToIntBits(
getInterval());
hash = (37 * hash) + CAPTURENUM_FIELD_NUMBER;
hash = (53 * hash) + getCaptureNum();
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite 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.byteplus.service.vod.model.business.SnapshotParamsSprite parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite 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.byteplus.service.vod.model.business.SnapshotParamsSprite parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite 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.byteplus.service.vod.model.business.SnapshotParamsSprite 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 Byteplus.Vod.Models.Business.SnapshotParamsSprite}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:Byteplus.Vod.Models.Business.SnapshotParamsSprite)
com.byteplus.service.vod.model.business.SnapshotParamsSpriteOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.byteplus.service.vod.model.business.VodWorkflow.internal_static_Byteplus_Vod_Models_Business_SnapshotParamsSprite_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.byteplus.service.vod.model.business.VodWorkflow.internal_static_Byteplus_Vod_Models_Business_SnapshotParamsSprite_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.byteplus.service.vod.model.business.SnapshotParamsSprite.class, com.byteplus.service.vod.model.business.SnapshotParamsSprite.Builder.class);
}
// Construct using com.byteplus.service.vod.model.business.SnapshotParamsSprite.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();
format_ = "";
storeUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
cellWidth_ = 0;
cellHeight_ = 0;
imgXLen_ = 0;
imgYLen_ = 0;
interval_ = 0F;
captureNum_ = 0;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.byteplus.service.vod.model.business.VodWorkflow.internal_static_Byteplus_Vod_Models_Business_SnapshotParamsSprite_descriptor;
}
@java.lang.Override
public com.byteplus.service.vod.model.business.SnapshotParamsSprite getDefaultInstanceForType() {
return com.byteplus.service.vod.model.business.SnapshotParamsSprite.getDefaultInstance();
}
@java.lang.Override
public com.byteplus.service.vod.model.business.SnapshotParamsSprite build() {
com.byteplus.service.vod.model.business.SnapshotParamsSprite result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.byteplus.service.vod.model.business.SnapshotParamsSprite buildPartial() {
com.byteplus.service.vod.model.business.SnapshotParamsSprite result = new com.byteplus.service.vod.model.business.SnapshotParamsSprite(this);
int from_bitField0_ = bitField0_;
result.format_ = format_;
if (((bitField0_ & 0x00000001) != 0)) {
storeUris_ = storeUris_.getUnmodifiableView();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.storeUris_ = storeUris_;
result.cellWidth_ = cellWidth_;
result.cellHeight_ = cellHeight_;
result.imgXLen_ = imgXLen_;
result.imgYLen_ = imgYLen_;
result.interval_ = interval_;
result.captureNum_ = captureNum_;
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.byteplus.service.vod.model.business.SnapshotParamsSprite) {
return mergeFrom((com.byteplus.service.vod.model.business.SnapshotParamsSprite)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.byteplus.service.vod.model.business.SnapshotParamsSprite other) {
if (other == com.byteplus.service.vod.model.business.SnapshotParamsSprite.getDefaultInstance()) return this;
if (!other.getFormat().isEmpty()) {
format_ = other.format_;
onChanged();
}
if (!other.storeUris_.isEmpty()) {
if (storeUris_.isEmpty()) {
storeUris_ = other.storeUris_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureStoreUrisIsMutable();
storeUris_.addAll(other.storeUris_);
}
onChanged();
}
if (other.getCellWidth() != 0) {
setCellWidth(other.getCellWidth());
}
if (other.getCellHeight() != 0) {
setCellHeight(other.getCellHeight());
}
if (other.getImgXLen() != 0) {
setImgXLen(other.getImgXLen());
}
if (other.getImgYLen() != 0) {
setImgYLen(other.getImgYLen());
}
if (other.getInterval() != 0F) {
setInterval(other.getInterval());
}
if (other.getCaptureNum() != 0) {
setCaptureNum(other.getCaptureNum());
}
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.byteplus.service.vod.model.business.SnapshotParamsSprite parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.byteplus.service.vod.model.business.SnapshotParamsSprite) e.getUnfinishedMessage();
throw e.unwrapIOException();
} finally {
if (parsedMessage != null) {
mergeFrom(parsedMessage);
}
}
return this;
}
private int bitField0_;
private java.lang.Object format_ = "";
/**
* string Format = 1;
* @return The format.
*/
public java.lang.String getFormat() {
java.lang.Object ref = format_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
format_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string Format = 1;
* @return The bytes for format.
*/
public com.google.protobuf.ByteString
getFormatBytes() {
java.lang.Object ref = format_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
format_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string Format = 1;
* @param value The format to set.
* @return This builder for chaining.
*/
public Builder setFormat(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
format_ = value;
onChanged();
return this;
}
/**
* string Format = 1;
* @return This builder for chaining.
*/
public Builder clearFormat() {
format_ = getDefaultInstance().getFormat();
onChanged();
return this;
}
/**
* string Format = 1;
* @param value The bytes for format to set.
* @return This builder for chaining.
*/
public Builder setFormatBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
format_ = value;
onChanged();
return this;
}
private com.google.protobuf.LazyStringList storeUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
private void ensureStoreUrisIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
storeUris_ = new com.google.protobuf.LazyStringArrayList(storeUris_);
bitField0_ |= 0x00000001;
}
}
/**
* repeated string StoreUris = 2;
* @return A list containing the storeUris.
*/
public com.google.protobuf.ProtocolStringList
getStoreUrisList() {
return storeUris_.getUnmodifiableView();
}
/**
* repeated string StoreUris = 2;
* @return The count of storeUris.
*/
public int getStoreUrisCount() {
return storeUris_.size();
}
/**
* repeated string StoreUris = 2;
* @param index The index of the element to return.
* @return The storeUris at the given index.
*/
public java.lang.String getStoreUris(int index) {
return storeUris_.get(index);
}
/**
* repeated string StoreUris = 2;
* @param index The index of the value to return.
* @return The bytes of the storeUris at the given index.
*/
public com.google.protobuf.ByteString
getStoreUrisBytes(int index) {
return storeUris_.getByteString(index);
}
/**
* repeated string StoreUris = 2;
* @param index The index to set the value at.
* @param value The storeUris to set.
* @return This builder for chaining.
*/
public Builder setStoreUris(
int index, java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureStoreUrisIsMutable();
storeUris_.set(index, value);
onChanged();
return this;
}
/**
* repeated string StoreUris = 2;
* @param value The storeUris to add.
* @return This builder for chaining.
*/
public Builder addStoreUris(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
ensureStoreUrisIsMutable();
storeUris_.add(value);
onChanged();
return this;
}
/**
* repeated string StoreUris = 2;
* @param values The storeUris to add.
* @return This builder for chaining.
*/
public Builder addAllStoreUris(
java.lang.Iterable values) {
ensureStoreUrisIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, storeUris_);
onChanged();
return this;
}
/**
* repeated string StoreUris = 2;
* @return This builder for chaining.
*/
public Builder clearStoreUris() {
storeUris_ = com.google.protobuf.LazyStringArrayList.EMPTY;
bitField0_ = (bitField0_ & ~0x00000001);
onChanged();
return this;
}
/**
* repeated string StoreUris = 2;
* @param value The bytes of the storeUris to add.
* @return This builder for chaining.
*/
public Builder addStoreUrisBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
ensureStoreUrisIsMutable();
storeUris_.add(value);
onChanged();
return this;
}
private int cellWidth_ ;
/**
* int32 CellWidth = 3;
* @return The cellWidth.
*/
@java.lang.Override
public int getCellWidth() {
return cellWidth_;
}
/**
* int32 CellWidth = 3;
* @param value The cellWidth to set.
* @return This builder for chaining.
*/
public Builder setCellWidth(int value) {
cellWidth_ = value;
onChanged();
return this;
}
/**
* int32 CellWidth = 3;
* @return This builder for chaining.
*/
public Builder clearCellWidth() {
cellWidth_ = 0;
onChanged();
return this;
}
private int cellHeight_ ;
/**
* int32 CellHeight = 4;
* @return The cellHeight.
*/
@java.lang.Override
public int getCellHeight() {
return cellHeight_;
}
/**
* int32 CellHeight = 4;
* @param value The cellHeight to set.
* @return This builder for chaining.
*/
public Builder setCellHeight(int value) {
cellHeight_ = value;
onChanged();
return this;
}
/**
* int32 CellHeight = 4;
* @return This builder for chaining.
*/
public Builder clearCellHeight() {
cellHeight_ = 0;
onChanged();
return this;
}
private int imgXLen_ ;
/**
* int32 ImgXLen = 5;
* @return The imgXLen.
*/
@java.lang.Override
public int getImgXLen() {
return imgXLen_;
}
/**
* int32 ImgXLen = 5;
* @param value The imgXLen to set.
* @return This builder for chaining.
*/
public Builder setImgXLen(int value) {
imgXLen_ = value;
onChanged();
return this;
}
/**
* int32 ImgXLen = 5;
* @return This builder for chaining.
*/
public Builder clearImgXLen() {
imgXLen_ = 0;
onChanged();
return this;
}
private int imgYLen_ ;
/**
* int32 ImgYLen = 6;
* @return The imgYLen.
*/
@java.lang.Override
public int getImgYLen() {
return imgYLen_;
}
/**
* int32 ImgYLen = 6;
* @param value The imgYLen to set.
* @return This builder for chaining.
*/
public Builder setImgYLen(int value) {
imgYLen_ = value;
onChanged();
return this;
}
/**
* int32 ImgYLen = 6;
* @return This builder for chaining.
*/
public Builder clearImgYLen() {
imgYLen_ = 0;
onChanged();
return this;
}
private float interval_ ;
/**
* float Interval = 7;
* @return The interval.
*/
@java.lang.Override
public float getInterval() {
return interval_;
}
/**
* float Interval = 7;
* @param value The interval to set.
* @return This builder for chaining.
*/
public Builder setInterval(float value) {
interval_ = value;
onChanged();
return this;
}
/**
* float Interval = 7;
* @return This builder for chaining.
*/
public Builder clearInterval() {
interval_ = 0F;
onChanged();
return this;
}
private int captureNum_ ;
/**
* int32 CaptureNum = 8;
* @return The captureNum.
*/
@java.lang.Override
public int getCaptureNum() {
return captureNum_;
}
/**
* int32 CaptureNum = 8;
* @param value The captureNum to set.
* @return This builder for chaining.
*/
public Builder setCaptureNum(int value) {
captureNum_ = value;
onChanged();
return this;
}
/**
* int32 CaptureNum = 8;
* @return This builder for chaining.
*/
public Builder clearCaptureNum() {
captureNum_ = 0;
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:Byteplus.Vod.Models.Business.SnapshotParamsSprite)
}
// @@protoc_insertion_point(class_scope:Byteplus.Vod.Models.Business.SnapshotParamsSprite)
private static final com.byteplus.service.vod.model.business.SnapshotParamsSprite DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.byteplus.service.vod.model.business.SnapshotParamsSprite();
}
public static com.byteplus.service.vod.model.business.SnapshotParamsSprite getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SnapshotParamsSprite parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SnapshotParamsSprite(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.byteplus.service.vod.model.business.SnapshotParamsSprite getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}