All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2024.10.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: basic.proto

package com.ironsoftware.ironpdf.internal.proto;

/**
 * 
 *this will contain a part of image data with index of the image.
 *for using this message, you must combine raw_image_chunk with another raw_image_chunk with the same index
 * 
* * Protobuf type {@code ironpdfengineproto.RawImageChunkWithIndexP} */ public final class RawImageChunkWithIndexP extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:ironpdfengineproto.RawImageChunkWithIndexP) RawImageChunkWithIndexPOrBuilder { private static final long serialVersionUID = 0L; // Use RawImageChunkWithIndexP.newBuilder() to construct. private RawImageChunkWithIndexP(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private RawImageChunkWithIndexP() { rawImageChunk_ = com.google.protobuf.ByteString.EMPTY; } @java.lang.Override @SuppressWarnings({"unused"}) protected java.lang.Object newInstance( UnusedPrivateParameter unused) { return new RawImageChunkWithIndexP(); } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.ironsoftware.ironpdf.internal.proto.Basic.internal_static_ironpdfengineproto_RawImageChunkWithIndexP_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.ironsoftware.ironpdf.internal.proto.Basic.internal_static_ironpdfengineproto_RawImageChunkWithIndexP_fieldAccessorTable .ensureFieldAccessorsInitialized( com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.class, com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.Builder.class); } public static final int IMAGE_INDEX_FIELD_NUMBER = 1; private int imageIndex_ = 0; /** * int32 image_index = 1; * @return The imageIndex. */ @java.lang.Override public int getImageIndex() { return imageIndex_; } public static final int RAW_IMAGE_CHUNK_FIELD_NUMBER = 2; private com.google.protobuf.ByteString rawImageChunk_ = com.google.protobuf.ByteString.EMPTY; /** * bytes raw_image_chunk = 2; * @return The rawImageChunk. */ @java.lang.Override public com.google.protobuf.ByteString getRawImageChunk() { return rawImageChunk_; } 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 (imageIndex_ != 0) { output.writeInt32(1, imageIndex_); } if (!rawImageChunk_.isEmpty()) { output.writeBytes(2, rawImageChunk_); } getUnknownFields().writeTo(output); } @java.lang.Override public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (imageIndex_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(1, imageIndex_); } if (!rawImageChunk_.isEmpty()) { size += com.google.protobuf.CodedOutputStream .computeBytesSize(2, rawImageChunk_); } 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.RawImageChunkWithIndexP)) { return super.equals(obj); } com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP other = (com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP) obj; if (getImageIndex() != other.getImageIndex()) return false; if (!getRawImageChunk() .equals(other.getRawImageChunk())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + IMAGE_INDEX_FIELD_NUMBER; hash = (53 * hash) + getImageIndex(); hash = (37 * hash) + RAW_IMAGE_CHUNK_FIELD_NUMBER; hash = (53 * hash) + getRawImageChunk().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP 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.RawImageChunkWithIndexP 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; } /** *
   *this will contain a part of image data with index of the image.
   *for using this message, you must combine raw_image_chunk with another raw_image_chunk with the same index
   * 
* * Protobuf type {@code ironpdfengineproto.RawImageChunkWithIndexP} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:ironpdfengineproto.RawImageChunkWithIndexP) com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexPOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return com.ironsoftware.ironpdf.internal.proto.Basic.internal_static_ironpdfengineproto_RawImageChunkWithIndexP_descriptor; } @java.lang.Override protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return com.ironsoftware.ironpdf.internal.proto.Basic.internal_static_ironpdfengineproto_RawImageChunkWithIndexP_fieldAccessorTable .ensureFieldAccessorsInitialized( com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.class, com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.Builder.class); } // Construct using com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.newBuilder() private Builder() { } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); } @java.lang.Override public Builder clear() { super.clear(); bitField0_ = 0; imageIndex_ = 0; rawImageChunk_ = com.google.protobuf.ByteString.EMPTY; return this; } @java.lang.Override public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return com.ironsoftware.ironpdf.internal.proto.Basic.internal_static_ironpdfengineproto_RawImageChunkWithIndexP_descriptor; } @java.lang.Override public com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP getDefaultInstanceForType() { return com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.getDefaultInstance(); } @java.lang.Override public com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP build() { com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } @java.lang.Override public com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP buildPartial() { com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP result = new com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP(this); if (bitField0_ != 0) { buildPartial0(result); } onBuilt(); return result; } private void buildPartial0(com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP result) { int from_bitField0_ = bitField0_; if (((from_bitField0_ & 0x00000001) != 0)) { result.imageIndex_ = imageIndex_; } if (((from_bitField0_ & 0x00000002) != 0)) { result.rawImageChunk_ = rawImageChunk_; } } @java.lang.Override public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP) { return mergeFrom((com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP other) { if (other == com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP.getDefaultInstance()) return this; if (other.getImageIndex() != 0) { setImageIndex(other.getImageIndex()); } if (other.getRawImageChunk() != com.google.protobuf.ByteString.EMPTY) { setRawImageChunk(other.getRawImageChunk()); } 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: { imageIndex_ = input.readInt32(); bitField0_ |= 0x00000001; break; } // case 8 case 18: { rawImageChunk_ = input.readBytes(); bitField0_ |= 0x00000002; 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 bitField0_; private int imageIndex_ ; /** * int32 image_index = 1; * @return The imageIndex. */ @java.lang.Override public int getImageIndex() { return imageIndex_; } /** * int32 image_index = 1; * @param value The imageIndex to set. * @return This builder for chaining. */ public Builder setImageIndex(int value) { imageIndex_ = value; bitField0_ |= 0x00000001; onChanged(); return this; } /** * int32 image_index = 1; * @return This builder for chaining. */ public Builder clearImageIndex() { bitField0_ = (bitField0_ & ~0x00000001); imageIndex_ = 0; onChanged(); return this; } private com.google.protobuf.ByteString rawImageChunk_ = com.google.protobuf.ByteString.EMPTY; /** * bytes raw_image_chunk = 2; * @return The rawImageChunk. */ @java.lang.Override public com.google.protobuf.ByteString getRawImageChunk() { return rawImageChunk_; } /** * bytes raw_image_chunk = 2; * @param value The rawImageChunk to set. * @return This builder for chaining. */ public Builder setRawImageChunk(com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } rawImageChunk_ = value; bitField0_ |= 0x00000002; onChanged(); return this; } /** * bytes raw_image_chunk = 2; * @return This builder for chaining. */ public Builder clearRawImageChunk() { bitField0_ = (bitField0_ & ~0x00000002); rawImageChunk_ = getDefaultInstance().getRawImageChunk(); 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:ironpdfengineproto.RawImageChunkWithIndexP) } // @@protoc_insertion_point(class_scope:ironpdfengineproto.RawImageChunkWithIndexP) private static final com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP(); } public static com.ironsoftware.ironpdf.internal.proto.RawImageChunkWithIndexP getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { @java.lang.Override public RawImageChunkWithIndexP 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.RawImageChunkWithIndexP getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy