com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ironpdf Show documentation
Show all versions of ironpdf Show documentation
IronPDF Java library offers an extensive compatibility range, making it a go-to solution for a wide array of developers. It fully supports JVM languages like Java, Scala, and Kotlin, making it incredibly versatile. This Java PDF library is also compatible with Java 8 and above, providing optimum performance across multiple platforms. It's been designed with a wide range of users in mind Here's a look at what it supports: JVM Languages: Java, Scala, Kotlin.Platforms: Java 8 and above.Operating Systems: Microsoft Windows, Linux, Docker, Azure, AWS.IDEs: Jetbrains IntelliJ IDEA, Eclipse. You can deploy IronPDF Java across various platforms, including Microsoft Windows, Linux, Docker, Azure, and AWS. It is also fully compatible with popular IDEs like Jetbrains IntelliJ IDEA and Eclipse, facilitating smooth project development and management. Your pom.xml file is essentially the backbone of your project when you're using Maven. It's here where you introduce new dependencies that you wish to include. To make IronPDF Java package a part of your Maven project, you simply need to add the following snippets to your pom.xml: Remember to replace '20xx.xx.xxxx' with the latest version of IronPDF. IronPDF Java simplifies the process of creating PDF files. Convert HTML files, HTML strings, or URLs directly to new PDF documents in a few lines of code. The variety of file formats it handles is vast, as it can even transform images into PDF documents and vice versa. Need to use base 64 encoding, base URLs, or custom file paths? No problem! IronPDF Java has got you coveredFor more detail about installing and using IronPDF Java. When you run your project for the first time post-integration, IronPDF's engine binaries will automatically be downloaded. The engine starts its journey when you call any IronPDF function for the first time and takes a breather when your application is either closed or enters an idle state. It is not an open source java PDF library but here's the best part - IronPDF Java is offering a 30-day free trial. So, why wait? Give it a go and boost your PDF operations today.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: pdfium_font.proto
// Protobuf Java Version: 3.25.0
package com.ironsoftware.ironpdf.internal.proto;
/**
* Protobuf type {@code ironpdfengineproto.PdfiumReplaceFontViaStandardFontEnumValResultP}
*/
public final class PdfiumReplaceFontViaStandardFontEnumValResultP extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:ironpdfengineproto.PdfiumReplaceFontViaStandardFontEnumValResultP)
PdfiumReplaceFontViaStandardFontEnumValResultPOrBuilder {
private static final long serialVersionUID = 0L;
// Use PdfiumReplaceFontViaStandardFontEnumValResultP.newBuilder() to construct.
private PdfiumReplaceFontViaStandardFontEnumValResultP(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private PdfiumReplaceFontViaStandardFontEnumValResultP() {
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new PdfiumReplaceFontViaStandardFontEnumValResultP();
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.ironsoftware.ironpdf.internal.proto.PdfiumFont.internal_static_ironpdfengineproto_PdfiumReplaceFontViaStandardFontEnumValResultP_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.ironsoftware.ironpdf.internal.proto.PdfiumFont.internal_static_ironpdfengineproto_PdfiumReplaceFontViaStandardFontEnumValResultP_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.class, com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.Builder.class);
}
private int resultOrExceptionCase_ = 0;
@SuppressWarnings("serial")
private java.lang.Object resultOrException_;
public enum ResultOrExceptionCase
implements com.google.protobuf.Internal.EnumLite,
com.google.protobuf.AbstractMessage.InternalOneOfEnum {
RESULT(1),
EXCEPTION(2),
RESULTOREXCEPTION_NOT_SET(0);
private final int value;
private ResultOrExceptionCase(int value) {
this.value = value;
}
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static ResultOrExceptionCase valueOf(int value) {
return forNumber(value);
}
public static ResultOrExceptionCase forNumber(int value) {
switch (value) {
case 1: return RESULT;
case 2: return EXCEPTION;
case 0: return RESULTOREXCEPTION_NOT_SET;
default: return null;
}
}
public int getNumber() {
return this.value;
}
};
public ResultOrExceptionCase
getResultOrExceptionCase() {
return ResultOrExceptionCase.forNumber(
resultOrExceptionCase_);
}
public static final int RESULT_FIELD_NUMBER = 1;
/**
* uint32 result = 1;
* @return Whether the result field is set.
*/
@java.lang.Override
public boolean hasResult() {
return resultOrExceptionCase_ == 1;
}
/**
* uint32 result = 1;
* @return The result.
*/
@java.lang.Override
public int getResult() {
if (resultOrExceptionCase_ == 1) {
return (java.lang.Integer) resultOrException_;
}
return 0;
}
public static final int EXCEPTION_FIELD_NUMBER = 2;
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
* @return Whether the exception field is set.
*/
@java.lang.Override
public boolean hasException() {
return resultOrExceptionCase_ == 2;
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
* @return The exception.
*/
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP getException() {
if (resultOrExceptionCase_ == 2) {
return (com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_;
}
return com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance();
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.RemoteExceptionPOrBuilder getExceptionOrBuilder() {
if (resultOrExceptionCase_ == 2) {
return (com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_;
}
return com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance();
}
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 (resultOrExceptionCase_ == 1) {
output.writeUInt32(
1, (int)((java.lang.Integer) resultOrException_));
}
if (resultOrExceptionCase_ == 2) {
output.writeMessage(2, (com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_);
}
getUnknownFields().writeTo(output);
}
@java.lang.Override
public int getSerializedSize() {
int size = memoizedSize;
if (size != -1) return size;
size = 0;
if (resultOrExceptionCase_ == 1) {
size += com.google.protobuf.CodedOutputStream
.computeUInt32Size(
1, (int)((java.lang.Integer) resultOrException_));
}
if (resultOrExceptionCase_ == 2) {
size += com.google.protobuf.CodedOutputStream
.computeMessageSize(2, (com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_);
}
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 com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP)) {
return super.equals(obj);
}
com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP other = (com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP) obj;
if (!getResultOrExceptionCase().equals(other.getResultOrExceptionCase())) return false;
switch (resultOrExceptionCase_) {
case 1:
if (getResult()
!= other.getResult()) return false;
break;
case 2:
if (!getException()
.equals(other.getException())) return false;
break;
case 0:
default:
}
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();
switch (resultOrExceptionCase_) {
case 1:
hash = (37 * hash) + RESULT_FIELD_NUMBER;
hash = (53 * hash) + getResult();
break;
case 2:
hash = (37 * hash) + EXCEPTION_FIELD_NUMBER;
hash = (53 * hash) + getException().hashCode();
break;
case 0:
default:
}
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(
java.nio.ByteBuffer data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(
java.nio.ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(
com.google.protobuf.ByteString data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(
com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(byte[] data)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(
byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
return PARSER.parseFrom(data, extensionRegistry);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP 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.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseDelimitedFrom(java.io.InputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseDelimitedWithIOException(PARSER, input);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP 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.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP parseFrom(
com.google.protobuf.CodedInputStream input)
throws java.io.IOException {
return com.google.protobuf.GeneratedMessageV3
.parseWithIOException(PARSER, input);
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP 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.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP 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 ironpdfengineproto.PdfiumReplaceFontViaStandardFontEnumValResultP}
*/
public static final class Builder extends
com.google.protobuf.GeneratedMessageV3.Builder implements
// @@protoc_insertion_point(builder_implements:ironpdfengineproto.PdfiumReplaceFontViaStandardFontEnumValResultP)
com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultPOrBuilder {
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return com.ironsoftware.ironpdf.internal.proto.PdfiumFont.internal_static_ironpdfengineproto_PdfiumReplaceFontViaStandardFontEnumValResultP_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return com.ironsoftware.ironpdf.internal.proto.PdfiumFont.internal_static_ironpdfengineproto_PdfiumReplaceFontViaStandardFontEnumValResultP_fieldAccessorTable
.ensureFieldAccessorsInitialized(
com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.class, com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.Builder.class);
}
// Construct using com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.newBuilder()
private Builder() {
}
private Builder(
com.google.protobuf.GeneratedMessageV3.BuilderParent parent) {
super(parent);
}
@java.lang.Override
public Builder clear() {
super.clear();
bitField0_ = 0;
if (exceptionBuilder_ != null) {
exceptionBuilder_.clear();
}
resultOrExceptionCase_ = 0;
resultOrException_ = null;
return this;
}
@java.lang.Override
public com.google.protobuf.Descriptors.Descriptor
getDescriptorForType() {
return com.ironsoftware.ironpdf.internal.proto.PdfiumFont.internal_static_ironpdfengineproto_PdfiumReplaceFontViaStandardFontEnumValResultP_descriptor;
}
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP getDefaultInstanceForType() {
return com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.getDefaultInstance();
}
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP build() {
com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP result = buildPartial();
if (!result.isInitialized()) {
throw newUninitializedMessageException(result);
}
return result;
}
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP buildPartial() {
com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP result = new com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP(this);
if (bitField0_ != 0) { buildPartial0(result); }
buildPartialOneofs(result);
onBuilt();
return result;
}
private void buildPartial0(com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP result) {
int from_bitField0_ = bitField0_;
}
private void buildPartialOneofs(com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP result) {
result.resultOrExceptionCase_ = resultOrExceptionCase_;
result.resultOrException_ = this.resultOrException_;
if (resultOrExceptionCase_ == 2 &&
exceptionBuilder_ != null) {
result.resultOrException_ = exceptionBuilder_.build();
}
}
@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.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP) {
return mergeFrom((com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP)other);
} else {
super.mergeFrom(other);
return this;
}
}
public Builder mergeFrom(com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP other) {
if (other == com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP.getDefaultInstance()) return this;
switch (other.getResultOrExceptionCase()) {
case RESULT: {
setResult(other.getResult());
break;
}
case EXCEPTION: {
mergeException(other.getException());
break;
}
case RESULTOREXCEPTION_NOT_SET: {
break;
}
}
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 8: {
resultOrException_ = input.readUInt32();
resultOrExceptionCase_ = 1;
break;
} // case 8
case 18: {
input.readMessage(
getExceptionFieldBuilder().getBuilder(),
extensionRegistry);
resultOrExceptionCase_ = 2;
break;
} // case 18
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 resultOrExceptionCase_ = 0;
private java.lang.Object resultOrException_;
public ResultOrExceptionCase
getResultOrExceptionCase() {
return ResultOrExceptionCase.forNumber(
resultOrExceptionCase_);
}
public Builder clearResultOrException() {
resultOrExceptionCase_ = 0;
resultOrException_ = null;
onChanged();
return this;
}
private int bitField0_;
/**
* uint32 result = 1;
* @return Whether the result field is set.
*/
public boolean hasResult() {
return resultOrExceptionCase_ == 1;
}
/**
* uint32 result = 1;
* @return The result.
*/
public int getResult() {
if (resultOrExceptionCase_ == 1) {
return (java.lang.Integer) resultOrException_;
}
return 0;
}
/**
* uint32 result = 1;
* @param value The result to set.
* @return This builder for chaining.
*/
public Builder setResult(int value) {
resultOrExceptionCase_ = 1;
resultOrException_ = value;
onChanged();
return this;
}
/**
* uint32 result = 1;
* @return This builder for chaining.
*/
public Builder clearResult() {
if (resultOrExceptionCase_ == 1) {
resultOrExceptionCase_ = 0;
resultOrException_ = null;
onChanged();
}
return this;
}
private com.google.protobuf.SingleFieldBuilderV3<
com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP, com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.Builder, com.ironsoftware.ironpdf.internal.proto.RemoteExceptionPOrBuilder> exceptionBuilder_;
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
* @return Whether the exception field is set.
*/
@java.lang.Override
public boolean hasException() {
return resultOrExceptionCase_ == 2;
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
* @return The exception.
*/
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP getException() {
if (exceptionBuilder_ == null) {
if (resultOrExceptionCase_ == 2) {
return (com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_;
}
return com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance();
} else {
if (resultOrExceptionCase_ == 2) {
return exceptionBuilder_.getMessage();
}
return com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance();
}
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
public Builder setException(com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP value) {
if (exceptionBuilder_ == null) {
if (value == null) {
throw new NullPointerException();
}
resultOrException_ = value;
onChanged();
} else {
exceptionBuilder_.setMessage(value);
}
resultOrExceptionCase_ = 2;
return this;
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
public Builder setException(
com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.Builder builderForValue) {
if (exceptionBuilder_ == null) {
resultOrException_ = builderForValue.build();
onChanged();
} else {
exceptionBuilder_.setMessage(builderForValue.build());
}
resultOrExceptionCase_ = 2;
return this;
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
public Builder mergeException(com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP value) {
if (exceptionBuilder_ == null) {
if (resultOrExceptionCase_ == 2 &&
resultOrException_ != com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance()) {
resultOrException_ = com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.newBuilder((com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_)
.mergeFrom(value).buildPartial();
} else {
resultOrException_ = value;
}
onChanged();
} else {
if (resultOrExceptionCase_ == 2) {
exceptionBuilder_.mergeFrom(value);
} else {
exceptionBuilder_.setMessage(value);
}
}
resultOrExceptionCase_ = 2;
return this;
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
public Builder clearException() {
if (exceptionBuilder_ == null) {
if (resultOrExceptionCase_ == 2) {
resultOrExceptionCase_ = 0;
resultOrException_ = null;
onChanged();
}
} else {
if (resultOrExceptionCase_ == 2) {
resultOrExceptionCase_ = 0;
resultOrException_ = null;
}
exceptionBuilder_.clear();
}
return this;
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
public com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.Builder getExceptionBuilder() {
return getExceptionFieldBuilder().getBuilder();
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
@java.lang.Override
public com.ironsoftware.ironpdf.internal.proto.RemoteExceptionPOrBuilder getExceptionOrBuilder() {
if ((resultOrExceptionCase_ == 2) && (exceptionBuilder_ != null)) {
return exceptionBuilder_.getMessageOrBuilder();
} else {
if (resultOrExceptionCase_ == 2) {
return (com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_;
}
return com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance();
}
}
/**
* .ironpdfengineproto.RemoteExceptionP exception = 2;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP, com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.Builder, com.ironsoftware.ironpdf.internal.proto.RemoteExceptionPOrBuilder>
getExceptionFieldBuilder() {
if (exceptionBuilder_ == null) {
if (!(resultOrExceptionCase_ == 2)) {
resultOrException_ = com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.getDefaultInstance();
}
exceptionBuilder_ = new com.google.protobuf.SingleFieldBuilderV3<
com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP, com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP.Builder, com.ironsoftware.ironpdf.internal.proto.RemoteExceptionPOrBuilder>(
(com.ironsoftware.ironpdf.internal.proto.RemoteExceptionP) resultOrException_,
getParentForChildren(),
isClean());
resultOrException_ = null;
}
resultOrExceptionCase_ = 2;
onChanged();
return exceptionBuilder_;
}
@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:ironpdfengineproto.PdfiumReplaceFontViaStandardFontEnumValResultP)
}
// @@protoc_insertion_point(class_scope:ironpdfengineproto.PdfiumReplaceFontViaStandardFontEnumValResultP)
private static final com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP DEFAULT_INSTANCE;
static {
DEFAULT_INSTANCE = new com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP();
}
public static com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP getDefaultInstance() {
return DEFAULT_INSTANCE;
}
private static final com.google.protobuf.Parser
PARSER = new com.google.protobuf.AbstractParser() {
@java.lang.Override
public PdfiumReplaceFontViaStandardFontEnumValResultP 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 com.ironsoftware.ironpdf.internal.proto.PdfiumReplaceFontViaStandardFontEnumValResultP getDefaultInstanceForType() {
return DEFAULT_INSTANCE;
}
}