Skip to content

Commit 5418c25

Browse files
committed
Javadoc
1 parent 4d402a0 commit 5418c25

12 files changed

Lines changed: 13 additions & 13 deletions

File tree

src/main/java/org/apache/commons/imaging/ImageInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
public class ImageInfo {
3030

31-
/** Color type enumeration for images. */
31+
/** Enumerates Color types for images. */
3232
public enum ColorType {
3333

3434
/** Black and white images. */
@@ -70,7 +70,7 @@ public String toString() {
7070
}
7171
}
7272

73-
/** Compression algorithm enumeration for images. */
73+
/** Enumerates compression algorithm enumeration for images. */
7474
public enum CompressionAlgorithm {
7575

7676
/** Unknown compression. */

src/main/java/org/apache/commons/imaging/formats/gif/DisposalMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.imaging.formats.gif;
1818

1919
/**
20-
* Describes the disposal of a GIF frame when rendering the animation. Frames that aren't disposed can show through transparent pixels of coming frames. This
20+
* Enumerates the disposal of a GIF frame when rendering the animation. Frames that aren't disposed can show through transparent pixels of coming frames. This
2121
* allows new layers to contain just the part of the animation that changes.
2222
*/
2323
public enum DisposalMethod {

src/main/java/org/apache/commons/imaging/formats/jpeg/iptc/IptcTypes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.imaging.formats.jpeg.iptc;
1818

1919
/**
20-
* Enumeration of IPTC (International Press Telecommunications Council) metadata record types.
20+
* Enumerates IPTC (International Press Telecommunications Council) metadata record types.
2121
*/
2222
public enum IptcTypes implements IptcType {
2323

src/main/java/org/apache/commons/imaging/formats/png/ChunkType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.apache.commons.imaging.formats.png.chunks.PngChunkZtxt;
3434

3535
/**
36-
* Type of PNG chunk.
36+
* Enumerates types of PNG chunks.
3737
*
3838
* @see <a href="https://www.w3.org/TR/png/#11Chunks">Portable Network Graphics Specification - Chunk specifications</a>
3939
*/

src/main/java/org/apache/commons/imaging/formats/png/InterlaceMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.imaging.formats.png;
1818

1919
/**
20-
* Interlace methods.
20+
* Enumerates interlace methods.
2121
*
2222
* @see <a href="https://www.w3.org/TR/png/#8Interlace">Portable Network Graphics Specification - Interlacing and pass extraction</a>
2323
*/

src/main/java/org/apache/commons/imaging/formats/png/PngColorType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import java.util.Arrays;
2121

2222
/**
23-
* PNG color type enumeration.
23+
* Enumerates PNG color types.
2424
*/
2525
public enum PngColorType {
2626

src/main/java/org/apache/commons/imaging/formats/tiff/TiffRasterDataType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.imaging.formats.tiff;
1818

1919
/**
20-
* Provides an enumeration indicating the type of data for an instance of a TiffRasterData class.
20+
* Enumerates the type of data for an instance of a TiffRasterData class.
2121
*/
2222
public enum TiffRasterDataType {
2323

src/main/java/org/apache/commons/imaging/formats/tiff/constants/TiffDirectoryType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.imaging.formats.tiff.constants;
1818

1919
/**
20-
* TIFF directory types.
20+
* Enumerates TIFF directory types.
2121
*/
2222
public enum TiffDirectoryType {
2323

src/main/java/org/apache/commons/imaging/formats/tiff/constants/TiffPlanarConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package org.apache.commons.imaging.formats.tiff.constants;
1818

1919
/**
20-
* Defines options for the organization of data in a TIFF file.
20+
* Enumerates options for the organization of data in a TIFF file.
2121
*/
2222
public enum TiffPlanarConfiguration {
2323

src/main/java/org/apache/commons/imaging/formats/webp/WebPChunkType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
import org.apache.commons.imaging.formats.webp.chunks.WebPChunkXyzw;
3434

3535
/**
36-
* WebP chunk type.
36+
* Enumerates WebP chunk types.
3737
*
3838
* @since 1.0.0-alpha4
3939
*/

0 commit comments

Comments
 (0)