com.volcengine.service.vod.model.business.SampleSnapshotParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: volcengine/vod/business/vod_workflow.proto
package com.volcengine.service.vod.model.business;
/**
* Protobuf type {@code Volcengine.Vod.Models.Business.SampleSnapshotParams}
*/
public final class SampleSnapshotParams extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:Volcengine.Vod.Models.Business.SampleSnapshotParams)
SampleSnapshotParamsOrBuilder {
private static final long serialVersionUID = 0L;
// Use SampleSnapshotParams.newBuilder() to construct.
private SampleSnapshotParams(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private SampleSnapshotParams() {
format_ = "";
outMode_ = "";
fillType_ = "";
offsets_ = emptyFloatList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new SampleSnapshotParams();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private SampleSnapshotParams(
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 16: {
resAdapt_ = input.readBool();
break;
}
case 24: {
resLimit_ = input.readInt32();
break;
}
case 32: {
width_ = input.readInt32();
break;
}
case 40: {
height_ = input.readInt32();
break;
}
case 48: {
captureNum_ = input.readInt32();
break;
}
case 56: {
captureMode_ = input.readInt32();
break;
}
case 65: {
interval_ = input.readDouble();
break;
}
case 74: {
java.lang.String s = input.readStringRequireUtf8();
outMode_ = s;
break;
}
case 82: {
java.lang.String s = input.readStringRequireUtf8();
fillType_ = s;
break;
}
case 93: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
offsets_ = newFloatList();
mutable_bitField0_ |= 0x00000001;
}
offsets_.addFloat(input.readFloat());
break;
}
case 90: {
int length = input.readRawVarint32();
int limit = input.pushLimit(length);
if (!((mutable_bitField0_ & 0x00000001) != 0) && input.getBytesUntilLimit() > 0) {
offsets_ = newFloatList();
mutable_bitField0_ |= 0x00000001;
}
while (input.getBytesUntilLimit() > 0) {
offsets_.addFloat(input.readFloat());
}
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)) {
offsets_.makeImmutable(); // C
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.volcengine.service.vod.model.business.VodWorkflow.internal_static_Volcengine_Vod_Models_Business_SampleSnapshotParams_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.volcengine.service.vod.model.business.VodWorkflow.internal_static_Volcengine_Vod_Models_Business_SampleSnapshotParams_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.volcengine.service.vod.model.business.SampleSnapshotParams.class, com.volcengine.service.vod.model.business.SampleSnapshotParams.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 RESADAPT_FIELD_NUMBER = 2;
private boolean resAdapt_;
/**
* bool ResAdapt = 2;
* @return The resAdapt.
*/
@java.lang.Override
public boolean getResAdapt() {
return resAdapt_;
}
public static final int RESLIMIT_FIELD_NUMBER = 3;
private int resLimit_;
/**
* int32 ResLimit = 3;
* @return The resLimit.
*/
@java.lang.Override
public int getResLimit() {
return resLimit_;
}
public static final int WIDTH_FIELD_NUMBER = 4;
private int width_;
/**
* int32 Width = 4;
* @return The width.
*/
@java.lang.Override
public int getWidth() {
return width_;
}
public static final int HEIGHT_FIELD_NUMBER = 5;
private int height_;
/**
* int32 Height = 5;
* @return The height.
*/
@java.lang.Override
public int getHeight() {
return height_;
}
public static final int CAPTURENUM_FIELD_NUMBER = 6;
private int captureNum_;
/**
* int32 CaptureNum = 6;
* @return The captureNum.
*/
@java.lang.Override
public int getCaptureNum() {
return captureNum_;
}
public static final int CAPTUREMODE_FIELD_NUMBER = 7;
private int captureMode_;
/**
* int32 CaptureMode = 7;
* @return The captureMode.
*/
@java.lang.Override
public int getCaptureMode() {
return captureMode_;
}
public static final int INTERVAL_FIELD_NUMBER = 8;
private double interval_;
/**
* double Interval = 8;
* @return The interval.
*/
@java.lang.Override
public double getInterval() {
return interval_;
}
public static final int OUTMODE_FIELD_NUMBER = 9;
private volatile java.lang.Object outMode_;
/**
* string OutMode = 9;
* @return The outMode.
*/
@java.lang.Override
public java.lang.String getOutMode() {
java.lang.Object ref = outMode_;
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();
outMode_ = s;
return s;
}
}
/**
* string OutMode = 9;
* @return The bytes for outMode.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getOutModeBytes() {
java.lang.Object ref = outMode_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
outMode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int FILLTYPE_FIELD_NUMBER = 10;
private volatile java.lang.Object fillType_;
/**
* string FillType = 10;
* @return The fillType.
*/
@java.lang.Override
public java.lang.String getFillType() {
java.lang.Object ref = fillType_;
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();
fillType_ = s;
return s;
}
}
/**
* string FillType = 10;
* @return The bytes for fillType.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getFillTypeBytes() {
java.lang.Object ref = fillType_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
fillType_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int OFFSETS_FIELD_NUMBER = 11;
private com.google.protobuf.Internal.FloatList offsets_;
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @return A list containing the offsets.
*/
@java.lang.Override
public java.util.List
getOffsetsList() {
return offsets_;
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @return The count of offsets.
*/
public int getOffsetsCount() {
return offsets_.size();
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @param index The index of the element to return.
* @return The offsets at the given index.
*/
public float getOffsets(int index) {
return offsets_.getFloat(index);
}
private int offsetsMemoizedSerializedSize = -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 (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(format_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 1, format_);
}
if (resAdapt_ != false) {
output.writeBool(2, resAdapt_);
}
if (resLimit_ != 0) {
output.writeInt32(3, resLimit_);
}
if (width_ != 0) {
output.writeInt32(4, width_);
}
if (height_ != 0) {
output.writeInt32(5, height_);
}
if (captureNum_ != 0) {
output.writeInt32(6, captureNum_);
}
if (captureMode_ != 0) {
output.writeInt32(7, captureMode_);
}
if (java.lang.Double.doubleToRawLongBits(interval_) != 0) {
output.writeDouble(8, interval_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outMode_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 9, outMode_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(fillType_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 10, fillType_);
}
if (getOffsetsList().size() > 0) {
output.writeUInt32NoTag(90);
output.writeUInt32NoTag(offsetsMemoizedSerializedSize);
}
for (int i = 0; i < offsets_.size(); i++) {
output.writeFloatNoTag(offsets_.getFloat(i));
}
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_);
}
if (resAdapt_ != false) {
size += com.google.protobuf.CodedOutputStream
.computeBoolSize(2, resAdapt_);
}
if (resLimit_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(3, resLimit_);
}
if (width_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(4, width_);
}
if (height_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(5, height_);
}
if (captureNum_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(6, captureNum_);
}
if (captureMode_ != 0) {
size += com.google.protobuf.CodedOutputStream
.computeInt32Size(7, captureMode_);
}
if (java.lang.Double.doubleToRawLongBits(interval_) != 0) {
size += com.google.protobuf.CodedOutputStream
.computeDoubleSize(8, interval_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(outMode_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, outMode_);
}
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(fillType_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(10, fillType_);
}
{
int dataSize = 0;
dataSize = 4 * getOffsetsList().size();
size += dataSize;
if (!getOffsetsList().isEmpty()) {
size += 1;
size += com.google.protobuf.CodedOutputStream
.computeInt32SizeNoTag(dataSize);
}
offsetsMemoizedSerializedSize = 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.volcengine.service.vod.model.business.SampleSnapshotParams)) {
return super.equals(obj);
}
com.volcengine.service.vod.model.business.SampleSnapshotParams other = (com.volcengine.service.vod.model.business.SampleSnapshotParams) obj;
if (!getFormat()
.equals(other.getFormat())) return false;
if (getResAdapt()
!= other.getResAdapt()) return false;
if (getResLimit()
!= other.getResLimit()) return false;
if (getWidth()
!= other.getWidth()) return false;
if (getHeight()
!= other.getHeight()) return false;
if (getCaptureNum()
!= other.getCaptureNum()) return false;
if (getCaptureMode()
!= other.getCaptureMode()) return false;
if (java.lang.Double.doubleToLongBits(getInterval())
!= java.lang.Double.doubleToLongBits(
other.getInterval())) return false;
if (!getOutMode()
.equals(other.getOutMode())) return false;
if (!getFillType()
.equals(other.getFillType())) return false;
if (!getOffsetsList()
.equals(other.getOffsetsList())) 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();
hash = (37 * hash) + RESADAPT_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(
getResAdapt());
hash = (37 * hash) + RESLIMIT_FIELD_NUMBER;
hash = (53 * hash) + getResLimit();
hash = (37 * hash) + WIDTH_FIELD_NUMBER;
hash = (53 * hash) + getWidth();
hash = (37 * hash) + HEIGHT_FIELD_NUMBER;
hash = (53 * hash) + getHeight();
hash = (37 * hash) + CAPTURENUM_FIELD_NUMBER;
hash = (53 * hash) + getCaptureNum();
hash = (37 * hash) + CAPTUREMODE_FIELD_NUMBER;
hash = (53 * hash) + getCaptureMode();
hash = (37 * hash) + INTERVAL_FIELD_NUMBER;
hash = (53 * hash) + com.google.protobuf.Internal.hashLong(
java.lang.Double.doubleToLongBits(getInterval()));
hash = (37 * hash) + OUTMODE_FIELD_NUMBER;
hash = (53 * hash) + getOutMode().hashCode();
hash = (37 * hash) + FILLTYPE_FIELD_NUMBER;
hash = (53 * hash) + getFillType().hashCode();
if (getOffsetsCount() > 0) {
hash = (37 * hash) + OFFSETS_FIELD_NUMBER;
hash = (53 * hash) + getOffsetsList().hashCode();
}
hash = (29 * hash) + unknownFields.hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams 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.volcengine.service.vod.model.business.SampleSnapshotParams parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams 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.volcengine.service.vod.model.business.SampleSnapshotParams parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams 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.volcengine.service.vod.model.business.SampleSnapshotParams 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 Volcengine.Vod.Models.Business.SampleSnapshotParams}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:Volcengine.Vod.Models.Business.SampleSnapshotParams)
com.volcengine.service.vod.model.business.SampleSnapshotParamsOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.volcengine.service.vod.model.business.VodWorkflow.internal_static_Volcengine_Vod_Models_Business_SampleSnapshotParams_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.volcengine.service.vod.model.business.VodWorkflow.internal_static_Volcengine_Vod_Models_Business_SampleSnapshotParams_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.volcengine.service.vod.model.business.SampleSnapshotParams.class, com.volcengine.service.vod.model.business.SampleSnapshotParams.Builder.class);
}
// Construct using com.volcengine.service.vod.model.business.SampleSnapshotParams.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_ = "";
resAdapt_ = false;
resLimit_ = 0;
width_ = 0;
height_ = 0;
captureNum_ = 0;
captureMode_ = 0;
interval_ = 0D;
outMode_ = "";
fillType_ = "";
offsets_ = emptyFloatList();
bitField0_ = (bitField0_ & ~0x00000001);
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.volcengine.service.vod.model.business.VodWorkflow.internal_static_Volcengine_Vod_Models_Business_SampleSnapshotParams_descriptor;
}
@java.lang.Override
public com.volcengine.service.vod.model.business.SampleSnapshotParams getDefaultInstanceForType() {
return com.volcengine.service.vod.model.business.SampleSnapshotParams.getDefaultInstance();
}
@java.lang.Override
public com.volcengine.service.vod.model.business.SampleSnapshotParams build() {
com.volcengine.service.vod.model.business.SampleSnapshotParams result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.volcengine.service.vod.model.business.SampleSnapshotParams buildPartial() {
com.volcengine.service.vod.model.business.SampleSnapshotParams result = new com.volcengine.service.vod.model.business.SampleSnapshotParams(this);
int from_bitField0_ = bitField0_;
result.format_ = format_;
result.resAdapt_ = resAdapt_;
result.resLimit_ = resLimit_;
result.width_ = width_;
result.height_ = height_;
result.captureNum_ = captureNum_;
result.captureMode_ = captureMode_;
result.interval_ = interval_;
result.outMode_ = outMode_;
result.fillType_ = fillType_;
if (((bitField0_ & 0x00000001) != 0)) {
offsets_.makeImmutable();
bitField0_ = (bitField0_ & ~0x00000001);
}
result.offsets_ = offsets_;
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.volcengine.service.vod.model.business.SampleSnapshotParams) {
return mergeFrom((com.volcengine.service.vod.model.business.SampleSnapshotParams)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.volcengine.service.vod.model.business.SampleSnapshotParams other) {
if (other == com.volcengine.service.vod.model.business.SampleSnapshotParams.getDefaultInstance()) return this;
if (!other.getFormat().isEmpty()) {
format_ = other.format_;
onChanged();
}
if (other.getResAdapt() != false) {
setResAdapt(other.getResAdapt());
}
if (other.getResLimit() != 0) {
setResLimit(other.getResLimit());
}
if (other.getWidth() != 0) {
setWidth(other.getWidth());
}
if (other.getHeight() != 0) {
setHeight(other.getHeight());
}
if (other.getCaptureNum() != 0) {
setCaptureNum(other.getCaptureNum());
}
if (other.getCaptureMode() != 0) {
setCaptureMode(other.getCaptureMode());
}
if (other.getInterval() != 0D) {
setInterval(other.getInterval());
}
if (!other.getOutMode().isEmpty()) {
outMode_ = other.outMode_;
onChanged();
}
if (!other.getFillType().isEmpty()) {
fillType_ = other.fillType_;
onChanged();
}
if (!other.offsets_.isEmpty()) {
if (offsets_.isEmpty()) {
offsets_ = other.offsets_;
bitField0_ = (bitField0_ & ~0x00000001);
} else {
ensureOffsetsIsMutable();
offsets_.addAll(other.offsets_);
}
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.volcengine.service.vod.model.business.SampleSnapshotParams parsedMessage = null;
try {
parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry);
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
parsedMessage = (com.volcengine.service.vod.model.business.SampleSnapshotParams) 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 boolean resAdapt_ ;
/**
* bool ResAdapt = 2;
* @return The resAdapt.
*/
@java.lang.Override
public boolean getResAdapt() {
return resAdapt_;
}
/**
* bool ResAdapt = 2;
* @param value The resAdapt to set.
* @return This builder for chaining.
*/
public Builder setResAdapt(boolean value) {
resAdapt_ = value;
onChanged();
return this;
}
/**
* bool ResAdapt = 2;
* @return This builder for chaining.
*/
public Builder clearResAdapt() {
resAdapt_ = false;
onChanged();
return this;
}
private int resLimit_ ;
/**
* int32 ResLimit = 3;
* @return The resLimit.
*/
@java.lang.Override
public int getResLimit() {
return resLimit_;
}
/**
* int32 ResLimit = 3;
* @param value The resLimit to set.
* @return This builder for chaining.
*/
public Builder setResLimit(int value) {
resLimit_ = value;
onChanged();
return this;
}
/**
* int32 ResLimit = 3;
* @return This builder for chaining.
*/
public Builder clearResLimit() {
resLimit_ = 0;
onChanged();
return this;
}
private int width_ ;
/**
* int32 Width = 4;
* @return The width.
*/
@java.lang.Override
public int getWidth() {
return width_;
}
/**
* int32 Width = 4;
* @param value The width to set.
* @return This builder for chaining.
*/
public Builder setWidth(int value) {
width_ = value;
onChanged();
return this;
}
/**
* int32 Width = 4;
* @return This builder for chaining.
*/
public Builder clearWidth() {
width_ = 0;
onChanged();
return this;
}
private int height_ ;
/**
* int32 Height = 5;
* @return The height.
*/
@java.lang.Override
public int getHeight() {
return height_;
}
/**
* int32 Height = 5;
* @param value The height to set.
* @return This builder for chaining.
*/
public Builder setHeight(int value) {
height_ = value;
onChanged();
return this;
}
/**
* int32 Height = 5;
* @return This builder for chaining.
*/
public Builder clearHeight() {
height_ = 0;
onChanged();
return this;
}
private int captureNum_ ;
/**
* int32 CaptureNum = 6;
* @return The captureNum.
*/
@java.lang.Override
public int getCaptureNum() {
return captureNum_;
}
/**
* int32 CaptureNum = 6;
* @param value The captureNum to set.
* @return This builder for chaining.
*/
public Builder setCaptureNum(int value) {
captureNum_ = value;
onChanged();
return this;
}
/**
* int32 CaptureNum = 6;
* @return This builder for chaining.
*/
public Builder clearCaptureNum() {
captureNum_ = 0;
onChanged();
return this;
}
private int captureMode_ ;
/**
* int32 CaptureMode = 7;
* @return The captureMode.
*/
@java.lang.Override
public int getCaptureMode() {
return captureMode_;
}
/**
* int32 CaptureMode = 7;
* @param value The captureMode to set.
* @return This builder for chaining.
*/
public Builder setCaptureMode(int value) {
captureMode_ = value;
onChanged();
return this;
}
/**
* int32 CaptureMode = 7;
* @return This builder for chaining.
*/
public Builder clearCaptureMode() {
captureMode_ = 0;
onChanged();
return this;
}
private double interval_ ;
/**
* double Interval = 8;
* @return The interval.
*/
@java.lang.Override
public double getInterval() {
return interval_;
}
/**
* double Interval = 8;
* @param value The interval to set.
* @return This builder for chaining.
*/
public Builder setInterval(double value) {
interval_ = value;
onChanged();
return this;
}
/**
* double Interval = 8;
* @return This builder for chaining.
*/
public Builder clearInterval() {
interval_ = 0D;
onChanged();
return this;
}
private java.lang.Object outMode_ = "";
/**
* string OutMode = 9;
* @return The outMode.
*/
public java.lang.String getOutMode() {
java.lang.Object ref = outMode_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
outMode_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string OutMode = 9;
* @return The bytes for outMode.
*/
public com.google.protobuf.ByteString
getOutModeBytes() {
java.lang.Object ref = outMode_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
outMode_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string OutMode = 9;
* @param value The outMode to set.
* @return This builder for chaining.
*/
public Builder setOutMode(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
outMode_ = value;
onChanged();
return this;
}
/**
* string OutMode = 9;
* @return This builder for chaining.
*/
public Builder clearOutMode() {
outMode_ = getDefaultInstance().getOutMode();
onChanged();
return this;
}
/**
* string OutMode = 9;
* @param value The bytes for outMode to set.
* @return This builder for chaining.
*/
public Builder setOutModeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
outMode_ = value;
onChanged();
return this;
}
private java.lang.Object fillType_ = "";
/**
* string FillType = 10;
* @return The fillType.
*/
public java.lang.String getFillType() {
java.lang.Object ref = fillType_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
fillType_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
* string FillType = 10;
* @return The bytes for fillType.
*/
public com.google.protobuf.ByteString
getFillTypeBytes() {
java.lang.Object ref = fillType_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
fillType_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
* string FillType = 10;
* @param value The fillType to set.
* @return This builder for chaining.
*/
public Builder setFillType(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
fillType_ = value;
onChanged();
return this;
}
/**
* string FillType = 10;
* @return This builder for chaining.
*/
public Builder clearFillType() {
fillType_ = getDefaultInstance().getFillType();
onChanged();
return this;
}
/**
* string FillType = 10;
* @param value The bytes for fillType to set.
* @return This builder for chaining.
*/
public Builder setFillTypeBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
fillType_ = value;
onChanged();
return this;
}
private com.google.protobuf.Internal.FloatList offsets_ = emptyFloatList();
private void ensureOffsetsIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
offsets_ = mutableCopy(offsets_);
bitField0_ |= 0x00000001;
}
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @return A list containing the offsets.
*/
public java.util.List
getOffsetsList() {
return ((bitField0_ & 0x00000001) != 0) ?
java.util.Collections.unmodifiableList(offsets_) : offsets_;
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @return The count of offsets.
*/
public int getOffsetsCount() {
return offsets_.size();
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @param index The index of the element to return.
* @return The offsets at the given index.
*/
public float getOffsets(int index) {
return offsets_.getFloat(index);
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @param index The index to set the value at.
* @param value The offsets to set.
* @return This builder for chaining.
*/
public Builder setOffsets(
int index, float value) {
ensureOffsetsIsMutable();
offsets_.setFloat(index, value);
onChanged();
return this;
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @param value The offsets to add.
* @return This builder for chaining.
*/
public Builder addOffsets(float value) {
ensureOffsetsIsMutable();
offsets_.addFloat(value);
onChanged();
return this;
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @param values The offsets to add.
* @return This builder for chaining.
*/
public Builder addAllOffsets(
java.lang.Iterable extends java.lang.Float> values) {
ensureOffsetsIsMutable();
com.google.protobuf.AbstractMessageLite.Builder.addAll(
values, offsets_);
onChanged();
return this;
}
/**
*
*采样截图自定义采样时间点
*
*
* repeated float Offsets = 11;
* @return This builder for chaining.
*/
public Builder clearOffsets() {
offsets_ = emptyFloatList();
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:Volcengine.Vod.Models.Business.SampleSnapshotParams)
}
// @@protoc_insertion_point(class_scope:Volcengine.Vod.Models.Business.SampleSnapshotParams)
private static final com.volcengine.service.vod.model.business.SampleSnapshotParams DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.volcengine.service.vod.model.business.SampleSnapshotParams();
}
public static com.volcengine.service.vod.model.business.SampleSnapshotParams getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public SampleSnapshotParams parsePartialFrom(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return new SampleSnapshotParams(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.volcengine.service.vod.model.business.SampleSnapshotParams getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy