diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 037936b7ca..a84dab171f 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,35 +1,31 @@
-# This is a basic workflow to help you get started with Actions
+name: SyncToReferenceSite
-name: CopyChangesToMainRepo
-
-# Controls when the action will run.
+# Copies this repo's tree into reference.groupdocs.com at
+# content/sites/groupdocs/metadata/ on `main` — the site's single deploy branch.
+#
+# The commit message carries [deploy-qa], so the site deploys it to STAGING only
+# (reference2.groupdocs.com). To publish it live, run the PromoteToProduction workflow.
on:
- # Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
- pull_request:
- branches: [ main ]
-
- # Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
- # This workflow contains a single job called "build"
build:
- # The type of runner that the job will run on
runs-on: ubuntu-latest
-
- # Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Copycat
- uses: andstor/copycat-action@v3
+ uses: andstor/copycat-action@c2b0316e9ab883478a4a7d40a4fcb03d17f281aa # v3
with:
personal_token: ${{ secrets.REPO_TOKEN }}
src_path: /.
+ # ⚠️ The trailing slash is load-bearing. copycat empties `${DST_PATH%/*}`, which is
+ # `.../metadata` only while the trailing slash is present — drop it and that becomes
+ # `.../groupdocs`, wiping EVERY product's content from the site repo.
dst_path: /content/sites/groupdocs/metadata/
dst_owner: groupdocs
dst_repo_name: reference.groupdocs.com
dst_branch: main
src_branch: main
clean: true
+ commit_message: 'Update file(s) from ${{ github.repository }} [deploy-qa]'
diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml
index 0159af7f2e..1e3166cf0e 100644
--- a/.github/workflows/production.yml
+++ b/.github/workflows/production.yml
@@ -1,35 +1,24 @@
-# This is a basic workflow to help you get started with Actions
+name: PromoteToProduction
-name: CopyChangesToProductionRepo
-
-# Controls when the action will run.
+# Publishes this product's API reference to the LIVE site (reference.groupdocs.com).
+#
+# Copies NO files. Content reaches the site only through `main` (see SyncToReferenceSite);
+# this just asks the site to deploy the metadata content currently on `main` to production.
+# That is what keeps the two branches from ever holding different trees.
on:
- # Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ production ]
- pull_request:
- branches: [ production ]
-
- # Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
-# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
- # This workflow contains a single job called "build"
- build:
- # The type of runner that the job will run on
+ promote:
runs-on: ubuntu-latest
-
- # Steps represent a sequence of tasks that will be executed as part of the job
steps:
- - name: Copycat
- uses: andstor/copycat-action@v3
- with:
- personal_token: ${{ secrets.REPO_TOKEN }}
- src_path: /.
- dst_path: /content/sites/groupdocs/metadata/
- dst_owner: groupdocs
- dst_repo_name: reference.groupdocs.com
- dst_branch: production
- src_branch: production
- clean: true
+ - name: Deploy the current site `main` content for metadata to production
+ env:
+ GH_TOKEN: ${{ secrets.REPO_TOKEN }}
+ run: |
+ gh workflow run deploy_metadata.yml \
+ --repo groupdocs/reference.groupdocs.com \
+ --ref main \
+ -f environment=production
diff --git a/english/_index.md b/english/_index.md
index 08ade38513..c827c04028 100644
--- a/english/_index.md
+++ b/english/_index.md
@@ -12,7 +12,7 @@ lead: "Read, edit, and remove metadata across 110+ documents, images, audio, and
platforms:
- name: ".NET"
- version: "26.6.0"
+ version: "26.8.0"
versionUrl: "https://www.nuget.org/packages/groupdocs.metadata/26.6.0"
key: net
ref: "/net/"
@@ -36,7 +36,7 @@ platforms:
install: "pip install groupdocs-metadata-net"
formats: ["Documents", "Images", "Audio", "Video", "PDF"]
-formatsCount: "110+"
+formatsCount: "115+"
formatsNote: "…with 110+ across documents, images, audio, and video."
capabilities:
@@ -45,7 +45,7 @@ capabilities:
- "Built-in & custom properties"
- "Search & clean metadata"
- "Inspect file structure"
- - "110+ supported formats"
+ - "115+ supported formats"
popular:
- name: "Metadata"
kind: "Class"
diff --git a/english/java/_index.md b/english/java/_index.md
index c58ef27493..e9652e7a07 100644
--- a/english/java/_index.md
+++ b/english/java/_index.md
@@ -1,21 +1,29 @@
---
title: GroupDocs.Metadata for Java
type: docs
-weight: 20
+weight: 11
url: /java/
description: GroupDocs.Metadata for Java API References contain examples, code snippets, and API documentation. It provides packages, classes, interfaces, and other API details.
is_root: true
-version: 26.1
+version: 26.7
---
## Packages
| Package | Description |
| --- | --- |
-| [com.groupdocs.metadata](./com.groupdocs.metadata) | The **com.groupdocs.metadata** namespace is the entry point to all features of the library. |
-| [com.groupdocs.metadata.core](./com.groupdocs.metadata.core) | The **com.groupdocs.metadata.core** namespace provides main classes allowing working with metadata in all supported formats. |
-| [com.groupdocs.metadata.export](./com.groupdocs.metadata.export) | The **com.groupdocs.metadata.export** namespace contains classes that allow users to export metadata properties to different representations. |
-| [com.groupdocs.metadata.imports](./com.groupdocs.metadata.imports) | The **com.groupdocs.metadata.imports** namespace contains classes that allow users to import metadata properties to different representations. |
-| [com.groupdocs.metadata.licensing](./com.groupdocs.metadata.licensing) | The **com.groupdocs.metadata.licensing** namespace provides classes for licensing the Metadata library. |
-| [com.groupdocs.metadata.options](./com.groupdocs.metadata.options) | The **com.groupdocs.metadata.options** namespace contains all classes representing settings that allow users to control file and metadata processing. |
-| [com.groupdocs.metadata.search](./com.groupdocs.metadata.search) | The **com.groupdocs.metadata.search** namespace contains base classes, utility classes and interfaces used across all formats and metadata standards. |
-| [com.groupdocs.metadata.tagging](./com.groupdocs.metadata.tagging) | The **com.groupdocs.metadata.tagging** namespace contains various sets of tags with which most important metadata properties are marked.The tags allow users to find and update metadata properties in different packages regardless of the metadata standard and file format. |
+| [com.groupdocs.metadata](./com.groupdocs.metadata) | The **com.groupdocs.metadata** namespace is the entry point to all features of the library.
+ |
+| [com.groupdocs.metadata.core](./com.groupdocs.metadata.core) | The **com.groupdocs.metadata.core** namespace provides main classes allowing working with metadata in all supported formats.
+ |
+| [com.groupdocs.metadata.export](./com.groupdocs.metadata.export) | The **com.groupdocs.metadata.export** namespace contains classes that allow users to export metadata properties to different representations.
+ |
+| [com.groupdocs.metadata.imports](./com.groupdocs.metadata.imports) | The **com.groupdocs.metadata.imports** namespace contains classes that allow users to import metadata properties to different representations.
+ |
+| [com.groupdocs.metadata.licensing](./com.groupdocs.metadata.licensing) | The **com.groupdocs.metadata.licensing** namespace provides classes for licensing the Metadata library.
+ |
+| [com.groupdocs.metadata.options](./com.groupdocs.metadata.options) | The **com.groupdocs.metadata.options** namespace contains all classes representing settings that allow users to control file and metadata processing.
+ |
+| [com.groupdocs.metadata.search](./com.groupdocs.metadata.search) | The **com.groupdocs.metadata.search** namespace contains base classes, utility classes and interfaces used across all formats and metadata standards.
+ |
+| [com.groupdocs.metadata.tagging](./com.groupdocs.metadata.tagging) | The **com.groupdocs.metadata.tagging** namespace contains various sets of tags with which most important metadata properties are marked.The tags allow users to find and update metadata properties in different packages regardless of the metadata standard and file format.
+ |
diff --git a/english/java/allclasses-frame.html b/english/java/allclasses-frame.html
index de332974b2..c5c311999e 100644
--- a/english/java/allclasses-frame.html
+++ b/english/java/allclasses-frame.html
@@ -2,10 +2,10 @@
-
+
-All Classes (GroupDocs.Metadata (26.1) API Reference)
-
+All Classes (GroupDocs.Metadata (26.7) API Reference)
+
diff --git a/english/java/allclasses-noframe.html b/english/java/allclasses-noframe.html
index 591c2ae89b..c9486f33cb 100644
--- a/english/java/allclasses-noframe.html
+++ b/english/java/allclasses-noframe.html
@@ -2,10 +2,10 @@
-
+
-All Classes (GroupDocs.Metadata (26.1) API Reference)
-
+All Classes (GroupDocs.Metadata (26.7) API Reference)
+
diff --git a/english/java/com.groupdocs.metadata.core/_index.md b/english/java/com.groupdocs.metadata.core/_index.md
index 302cb77249..047fa50c8f 100644
--- a/english/java/com.groupdocs.metadata.core/_index.md
+++ b/english/java/com.groupdocs.metadata.core/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.core/
The **com.groupdocs.metadata.core** namespace provides main classes allowing working with metadata in all supported formats.
+
## Classes
| Class | Description |
@@ -116,20 +117,20 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [ID3Tag](../com.groupdocs.metadata.core/id3tag) | Represents a base abstract class for the ID3(v1) and ID3(v2) audio tags. |
| [ID3V1Genre](../com.groupdocs.metadata.core/id3v1genre) | Specifies genres used in an Id3v1 tag. |
| [ID3V1Tag](../com.groupdocs.metadata.core/id3v1tag) | Represents an ID3v1 tag. |
-| [ID3V2AttachedPictureFrame](../com.groupdocs.metadata.core/id3v2attachedpictureframe) | Represents an APIC frame in an ID3V2Tag . |
+| [ID3V2AttachedPictureFrame](../com.groupdocs.metadata.core/id3v2attachedpictureframe) | Represents an APIC frame in an ID3V2Tag. |
| [ID3V2AttachedPictureType](../com.groupdocs.metadata.core/id3v2attachedpicturetype) | Represents the type of an attached picture. |
-| [ID3V2CommentFrame](../com.groupdocs.metadata.core/id3v2commentframe) | Represents a COMM frame in an ID3V2Tag . |
-| [ID3V2MlltFrame](../com.groupdocs.metadata.core/id3v2mlltframe) | Represents an MLLT frame in an ID3V2Tag . |
-| [ID3V2PlayCounterFrame](../com.groupdocs.metadata.core/id3v2playcounterframe) | Represents a PCNT frame in an ID3V2Tag . |
-| [ID3V2PrivateFrame](../com.groupdocs.metadata.core/id3v2privateframe) | Represents a PRIV frame in an ID3V2Tag . |
+| [ID3V2CommentFrame](../com.groupdocs.metadata.core/id3v2commentframe) | Represents a COMM frame in an ID3V2Tag. |
+| [ID3V2MlltFrame](../com.groupdocs.metadata.core/id3v2mlltframe) | Represents an MLLT frame in an ID3V2Tag. |
+| [ID3V2PlayCounterFrame](../com.groupdocs.metadata.core/id3v2playcounterframe) | Represents a PCNT frame in an ID3V2Tag. |
+| [ID3V2PrivateFrame](../com.groupdocs.metadata.core/id3v2privateframe) | Represents a PRIV frame in an ID3V2Tag. |
| [ID3V2Tag](../com.groupdocs.metadata.core/id3v2tag) | Represents an ID3v2 tag. |
-| [ID3V2TagFrame](../com.groupdocs.metadata.core/id3v2tagframe) | Represents a generic frame in an ID3V2Tag . |
+| [ID3V2TagFrame](../com.groupdocs.metadata.core/id3v2tagframe) | Represents a generic frame in an ID3V2Tag. |
| [ID3V2TagFrameFlags](../com.groupdocs.metadata.core/id3v2tagframeflags) | Represents flags used in a ID3v2 tag frame. |
-| [ID3V2TextFrame](../com.groupdocs.metadata.core/id3v2textframe) | Represents a text frame in an ID3V2Tag . |
-| [ID3V2UrlLinkFrame](../com.groupdocs.metadata.core/id3v2urllinkframe) | Represents a URL link frame in an ID3V2Tag . |
-| [ID3V2UserDefinedFrame](../com.groupdocs.metadata.core/id3v2userdefinedframe) | Represents a TXXX frame in an ID3V2Tag . |
-| [ID3V2UserDefinedUrlLinkFrame](../com.groupdocs.metadata.core/id3v2userdefinedurllinkframe) | Represents a WXXX frame in an ID3V2Tag . |
-| [ImageResourceBlock](../com.groupdocs.metadata.core/imageresourceblock) | |
+| [ID3V2TextFrame](../com.groupdocs.metadata.core/id3v2textframe) | Represents a text frame in an ID3V2Tag. |
+| [ID3V2UrlLinkFrame](../com.groupdocs.metadata.core/id3v2urllinkframe) | Represents a URL link frame in an ID3V2Tag. |
+| [ID3V2UserDefinedFrame](../com.groupdocs.metadata.core/id3v2userdefinedframe) | Represents a TXXX frame in an ID3V2Tag. |
+| [ID3V2UserDefinedUrlLinkFrame](../com.groupdocs.metadata.core/id3v2userdefinedurllinkframe) | Represents a WXXX frame in an ID3V2Tag. |
+| [ImageResourceBlock](../com.groupdocs.metadata.core/imageresourceblock) | |
| [ImageResourceID](../com.groupdocs.metadata.core/imageresourceid) | Image resources standard ID numbers. |
| [ImageResourcePackage](../com.groupdocs.metadata.core/imageresourcepackage) | Represents a metadata package containing Photoshop Image Resources. |
| [ImageRootPackage](../com.groupdocs.metadata.core/imagerootpackage) | Provides a base abstract class for all image root packages. |
@@ -146,7 +147,7 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [Jpeg2000Package](../com.groupdocs.metadata.core/jpeg2000package) | Represents native JPEG2000 metadata. |
| [Jpeg2000RootPackage](../com.groupdocs.metadata.core/jpeg2000rootpackage) | Represents the root package intended to work with metadata in a JPEG2000 image. |
| [JpegRootPackage](../com.groupdocs.metadata.core/jpegrootpackage) | Represents the root package allowing working with metadata in a JPEG image. |
-| [LyricsField](../com.groupdocs.metadata.core/lyricsfield) | Represents a LyricsTag field. |
+| [LyricsField](../com.groupdocs.metadata.core/lyricsfield) | Represents a LyricsTag field. |
| [LyricsTag](../com.groupdocs.metadata.core/lyricstag) | Represents Lyrics3 v2.00 metadata. |
| [MP3RootPackage](../com.groupdocs.metadata.core/mp3rootpackage) | Represents the root package allowing working with metadata in an MP3 audio. |
| [MakerNotePackage](../com.groupdocs.metadata.core/makernotepackage) | Provides an abstract base class for MakerNote metadata packages. |
@@ -180,12 +181,12 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [OpenTypeFlags](../com.groupdocs.metadata.core/opentypeflags) | Represents OpenType font header flags. |
| [OpenTypeFont](../com.groupdocs.metadata.core/opentypefont) | Represents a single font extracted from a file. |
| [OpenTypeLicensingRights](../com.groupdocs.metadata.core/opentypelicensingrights) | Indicates font embedding licensing rights for the font. |
-| [OpenTypeMacintoshNameRecord](../com.groupdocs.metadata.core/opentypemacintoshnamerecord) | Represents the Name record table value for the OpenTypePlatform.Macintosh platform. |
+| [OpenTypeMacintoshNameRecord](../com.groupdocs.metadata.core/opentypemacintoshnamerecord) | Represents the Name record table value for the OpenTypePlatform.Macintosh platform. |
| [OpenTypePackage](../com.groupdocs.metadata.core/opentypepackage) | Represents an OpenType font metadata package. |
| [OpenTypeRootPackage](../com.groupdocs.metadata.core/opentyperootpackage) | Represents the root package allowing working with metadata in an OpenType font file. |
| [OpenTypeStyles](../com.groupdocs.metadata.core/opentypestyles) | Represents the OpenType font style. |
-| [OpenTypeUnicodeNameRecord](../com.groupdocs.metadata.core/opentypeunicodenamerecord) | Represents the Name record table value for the OpenTypePlatform.Unicode platform. |
-| [OpenTypeWindowsNameRecord](../com.groupdocs.metadata.core/opentypewindowsnamerecord) | Represents the Name record table value for OpenTypePlatform.Windows platform. |
+| [OpenTypeUnicodeNameRecord](../com.groupdocs.metadata.core/opentypeunicodenamerecord) | Represents the Name record table value for the OpenTypePlatform.Unicode platform. |
+| [OpenTypeWindowsNameRecord](../com.groupdocs.metadata.core/opentypewindowsnamerecord) | Represents the Name record table value for OpenTypePlatform.Windows platform. |
| [PageInfo](../com.groupdocs.metadata.core/pageinfo) | Provides common information about a document page (slide, worksheet, etc). |
| [PanasonicMakerNotePackage](../com.groupdocs.metadata.core/panasonicmakernotepackage) | Represents PANASONIC MakerNote metadata. |
| [PdfAnnotation](../com.groupdocs.metadata.core/pdfannotation) | Represents an annotation in a PDF document. |
@@ -287,7 +288,7 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [VCardRootPackage](../com.groupdocs.metadata.core/vcardrootpackage) | Represents the root package allowing working with metadata in a VCard file. |
| [VCardSecurityRecordset](../com.groupdocs.metadata.core/vcardsecurityrecordset) | Represents a set of Security vCard records. |
| [VCardTextRecord](../com.groupdocs.metadata.core/vcardtextrecord) | Represents vCard text record metadata class. |
-| [ValueAcceptor](../com.groupdocs.metadata.core/valueacceptor) | Provides a base abstract class that allows extracting all supported types of values from a PropertyValue instance. |
+| [ValueAcceptor](../com.groupdocs.metadata.core/valueacceptor) | Provides a base abstract class that allows extracting all supported types of values from a PropertyValue instance. |
| [ValueInterpreter](../com.groupdocs.metadata.core/valueinterpreter) | Defines operations required to interpret metadata property values. |
| [WavPackage](../com.groupdocs.metadata.core/wavpackage) | Represents a native metadata package in a WAV audio file. |
| [WavRootPackage](../com.groupdocs.metadata.core/wavrootpackage) | Represents the root package allowing working with metadata in a WAV audio. |
@@ -302,7 +303,7 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [WordProcessingTypePackage](../com.groupdocs.metadata.core/wordprocessingtypepackage) | Represents a metadata package containing document-specific file format information. |
| [XmpArray](../com.groupdocs.metadata.core/xmparray) | Represents base abstraction for XMP array. |
| [XmpAudioChannelType](../com.groupdocs.metadata.core/xmpaudiochanneltype) | Represents audio channel type. |
-| [XmpAudioSampleType](../com.groupdocs.metadata.core/xmpaudiosampletype) | Represents Audio sample type in XmpDynamicMediaPackage . |
+| [XmpAudioSampleType](../com.groupdocs.metadata.core/xmpaudiosampletype) | Represents Audio sample type in XmpDynamicMediaPackage. |
| [XmpBasicJobTicketPackage](../com.groupdocs.metadata.core/xmpbasicjobticketpackage) | Represents Basic Job-Ticket namespace. |
| [XmpBasicPackage](../com.groupdocs.metadata.core/xmpbasicpackage) | Represents the XMP basic namespace. |
| [XmpBoolean](../com.groupdocs.metadata.core/xmpboolean) | Represents XMP Boolean basic type. |
@@ -328,11 +329,11 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [XmpIptcExtensionPackage](../com.groupdocs.metadata.core/xmpiptcextensionpackage) | Represents the IPTC Extension XMP package. |
| [XmpIptcIimPackage](../com.groupdocs.metadata.core/xmpiptciimpackage) | Represents the IPTC-IIM XMP package. |
| [XmpJob](../com.groupdocs.metadata.core/xmpjob) | Represents Job. |
-| [XmpLangAlt](../com.groupdocs.metadata.core/xmplangalt) | |
+| [XmpLangAlt](../com.groupdocs.metadata.core/xmplangalt) | |
| [XmpMediaManagementPackage](../com.groupdocs.metadata.core/xmpmediamanagementpackage) | Represents the XMP Media Management namespace. |
| [XmpMeta](../com.groupdocs.metadata.core/xmpmeta) | Represents xmpmeta. |
| [XmpMetadataContainer](../com.groupdocs.metadata.core/xmpmetadatacontainer) | Represents a container for XMP metadata properties. |
-| [XmpNamespaces](../com.groupdocs.metadata.core/xmpnamespaces) | Contains namespaces used in XmpPackage and XmpComplexType . |
+| [XmpNamespaces](../com.groupdocs.metadata.core/xmpnamespaces) | Contains namespaces used in XmpPackage and XmpComplexType. |
| [XmpPackage](../com.groupdocs.metadata.core/xmppackage) | Represents base abstraction for XMP package. |
| [XmpPacketWrapper](../com.groupdocs.metadata.core/xmppacketwrapper) | Contains serialized XMP package including header and trailer. |
| [XmpPagedTextPackage](../com.groupdocs.metadata.core/xmppagedtextpackage) | Represents the XMP Paged-Text package. |
@@ -342,18 +343,18 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [XmpReal](../com.groupdocs.metadata.core/xmpreal) | Represents XMP Real. |
| [XmpRenditionClass](../com.groupdocs.metadata.core/xmprenditionclass) | Represents XMP RenditionClass. |
| [XmpResourceEvent](../com.groupdocs.metadata.core/xmpresourceevent) | Represents a high-level event that occurred in the processing of a resource. |
-| [XmpResourceRef](../com.groupdocs.metadata.core/xmpresourceref) | |
+| [XmpResourceRef](../com.groupdocs.metadata.core/xmpresourceref) | |
| [XmpRightsManagementPackage](../com.groupdocs.metadata.core/xmprightsmanagementpackage) | Represents XMP Rights Management namespace. |
| [XmpSchemes](../com.groupdocs.metadata.core/xmpschemes) | Provides access to known XMP schemes. |
| [XmpText](../com.groupdocs.metadata.core/xmptext) | Represents XMP Text basic type. |
| [XmpThumbnail](../com.groupdocs.metadata.core/xmpthumbnail) | Represents a thumbnail image for a file. |
| [XmpTime](../com.groupdocs.metadata.core/xmptime) | Representation of a time value in seconds. |
-| [XmpTimeFormat](../com.groupdocs.metadata.core/xmptimeformat) | Represents time format in XmpTimecode . |
+| [XmpTimeFormat](../com.groupdocs.metadata.core/xmptimeformat) | Represents time format in XmpTimecode. |
| [XmpTimecode](../com.groupdocs.metadata.core/xmptimecode) | Represents a timecode value in a video. |
| [XmpTrailerPI](../com.groupdocs.metadata.core/xmptrailerpi) | Represents XMP trailer processing instruction. |
| [XmpValueBase](../com.groupdocs.metadata.core/xmpvaluebase) | Represents base XMP value. |
| [XmpVersion](../com.groupdocs.metadata.core/xmpversion) | Represents a version of a document. |
-| [XmpWhiteBalance](../com.groupdocs.metadata.core/xmpwhitebalance) | Represents the White Balance setting in XmpCameraRawPackage . |
+| [XmpWhiteBalance](../com.groupdocs.metadata.core/xmpwhitebalance) | Represents the White Balance setting in XmpCameraRawPackage. |
| [ZipFile](../com.groupdocs.metadata.core/zipfile) | Represents metadata associated with an archived file or directory. |
| [ZipPackage](../com.groupdocs.metadata.core/zippackage) | Represents ZIP archive metadata. |
| [ZipRootPackage](../com.groupdocs.metadata.core/ziprootpackage) | Represents the root package allowing working with metadata in a ZIP archive. |
@@ -390,7 +391,7 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [MatroskaTrackType](../com.groupdocs.metadata.core/matroskatracktype) | Represents Matroska track types coded in 8 bits. |
| [MatroskaVideoDisplayUnit](../com.groupdocs.metadata.core/matroskavideodisplayunit) | Defines how Matroska DisplayWidth and DisplayHeight are interpreted. |
| [MatroskaVideoFieldOrder](../com.groupdocs.metadata.core/matroskavideofieldorder) | Represents the field ordering of the Matroska video. |
-| [MatroskaVideoFlagInterlaced](../com.groupdocs.metadata.core/matroskavideoflaginterlaced) | Represents a flag to declare if the Matroska video is known to be progressive or interlaced and if applicable to declare details about the interlacement. |
+| [MatroskaVideoFlagInterlaced](../com.groupdocs.metadata.core/matroskavideoflaginterlaced) | Represents a flag to declare if the Matroska video is known to be progressive or interlacedand if applicable to declare details about the interlacement. |
| [MatroskaVideoStereoMode](../com.groupdocs.metadata.core/matroskavideostereomode) | Represents Matroska Stereo-3D video modes. |
| [MetadataPropertyType](../com.groupdocs.metadata.core/metadatapropertytype) | Defines metadata property types. |
| [MetadataType](../com.groupdocs.metadata.core/metadatatype) | Specifies the type of a metadata package. |
@@ -399,17 +400,17 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [MpegEmphasis](../com.groupdocs.metadata.core/mpegemphasis) | Defines MPEG emphasis types. |
| [OpenTypeDigitalSignatureFlags](../com.groupdocs.metadata.core/opentypedigitalsignatureflags) | Represents OpenType font digital signature flags. |
| [OpenTypeDirectionHint](../com.groupdocs.metadata.core/opentypedirectionhint) | Represents the OpenType font direction. |
-| [OpenTypeIsoEncoding](../com.groupdocs.metadata.core/opentypeisoencoding) | Represents encoding for the OpenTypePlatform.Iso platform. |
-| [OpenTypeMacintoshEncoding](../com.groupdocs.metadata.core/opentypemacintoshencoding) | Represents encoding for the OpenTypePlatform.Macintosh platform. |
-| [OpenTypeMacintoshLanguage](../com.groupdocs.metadata.core/opentypemacintoshlanguage) | Represents language enum for the OpenTypePlatform.Macintosh platform. |
+| [OpenTypeIsoEncoding](../com.groupdocs.metadata.core/opentypeisoencoding) | Represents encoding for the OpenTypePlatform.Iso platform. |
+| [OpenTypeMacintoshEncoding](../com.groupdocs.metadata.core/opentypemacintoshencoding) | Represents encoding for the OpenTypePlatform.Macintosh platform. |
+| [OpenTypeMacintoshLanguage](../com.groupdocs.metadata.core/opentypemacintoshlanguage) | Represents language enum for the OpenTypePlatform.Macintosh platform. |
| [OpenTypeName](../com.groupdocs.metadata.core/opentypename) | Defines pre-defined IDs, they apply to all platforms unless indicated otherwise. |
| [OpenTypePlatform](../com.groupdocs.metadata.core/opentypeplatform) | Represents OpenType platform for Name table. |
-| [OpenTypeUnicodeEncoding](../com.groupdocs.metadata.core/opentypeunicodeencoding) | Represents encoding for OpenTypePlatform.Unicode platform. |
+| [OpenTypeUnicodeEncoding](../com.groupdocs.metadata.core/opentypeunicodeencoding) | Represents encoding for OpenTypePlatform.Unicode platform. |
| [OpenTypeVersion](../com.groupdocs.metadata.core/opentypeversion) | Represents the OpenType version. |
| [OpenTypeWeight](../com.groupdocs.metadata.core/opentypeweight) | Represents the OpenType font weight. |
| [OpenTypeWidth](../com.groupdocs.metadata.core/opentypewidth) | Represents the OpenType font width. |
-| [OpenTypeWindowsEncoding](../com.groupdocs.metadata.core/opentypewindowsencoding) | Represents encoding for the OpenTypePlatform.Windows platform. |
-| [OpenTypeWindowsLanguage](../com.groupdocs.metadata.core/opentypewindowslanguage) | Represents language for OpenTypePlatform.Windows platform. |
+| [OpenTypeWindowsEncoding](../com.groupdocs.metadata.core/opentypewindowsencoding) | Represents encoding for the OpenTypePlatform.Windows platform. |
+| [OpenTypeWindowsLanguage](../com.groupdocs.metadata.core/opentypewindowslanguage) | Represents language for OpenTypePlatform.Windows platform. |
| [PngCompressionMethod](../com.groupdocs.metadata.core/pngcompressionmethod) | Defines compression methods used in the PNG format. |
| [PresentationFormat](../com.groupdocs.metadata.core/presentationformat) | Defines various presentation subformats. |
| [PsdColorMode](../com.groupdocs.metadata.core/psdcolormode) | Represents the psd file format color mode. |
@@ -420,9 +421,9 @@ The **com.groupdocs.metadata.core** namespace provides main classes allowing wor
| [VCardContentType](../com.groupdocs.metadata.core/vcardcontenttype) | Defines vCard record content types. |
| [WordProcessingFormat](../com.groupdocs.metadata.core/wordprocessingformat) | Defines various word processing document subformats. |
| [WordProcessingRevisionType](../com.groupdocs.metadata.core/wordprocessingrevisiontype) | Specifies the type of the change being tracked by a revision. |
-| [XmpArrayType](../com.groupdocs.metadata.core/xmparraytype) | Represents array type in XmpArray . |
-| [XmpColorType](../com.groupdocs.metadata.core/xmpcolortype) | Type of color in XmpColorantBase . |
-| [XmpColorantColorMode](../com.groupdocs.metadata.core/xmpcolorantcolormode) | Represents color mode in XmpColorantBase . |
-| [XmpCropUnit](../com.groupdocs.metadata.core/xmpcropunit) | Represent a unit for CropWidth and CropHeight in XmpCameraRawPackage . |
-| [XmpPhotoshopColorMode](../com.groupdocs.metadata.core/xmpphotoshopcolormode) | Represents a color mode in XmpPhotoshopPackage . |
+| [XmpArrayType](../com.groupdocs.metadata.core/xmparraytype) | Represents array type in XmpArray. |
+| [XmpColorType](../com.groupdocs.metadata.core/xmpcolortype) | Type of color in XmpColorantBase. |
+| [XmpColorantColorMode](../com.groupdocs.metadata.core/xmpcolorantcolormode) | Represents color mode in XmpColorantBase. |
+| [XmpCropUnit](../com.groupdocs.metadata.core/xmpcropunit) | Represent a unit for CropWidth and CropHeight in XmpCameraRawPackage. |
+| [XmpPhotoshopColorMode](../com.groupdocs.metadata.core/xmpphotoshopcolormode) | Represents a color mode in XmpPhotoshopPackage. |
| [ZipCompressionMethod](../com.groupdocs.metadata.core/zipcompressionmethod) | Defines ZIP compression methods. |
diff --git a/english/java/com.groupdocs.metadata.core/apepackage/_index.md b/english/java/com.groupdocs.metadata.core/apepackage/_index.md
index 947badc0e9..031e56bd88 100644
--- a/english/java/com.groupdocs.metadata.core/apepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/apepackage/_index.md
@@ -12,17 +12,23 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ApePackage extends CustomPackage
```
-Represents an APE v2 metadata package. Please find more information at [http://wiki.hydrogenaud.io/index.php?title=APE\_key][http_wiki.hydrogenaud.io_index.php_title_APE_key] .
+Represents an APE v2 metadata package.
+Please find more information at
+
+.
+
**Learn more**
- * [Handling the APEv2 tag][]
+* [Handling the APEv2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+APEv2+tag)
-This example demonstrates how to read the APEv2 tag in an MP3 file.
+
+This example demonstrates how to read the APEv2 tag in an MP3 file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.MP3WithApe)) {
> MP3RootPackage root = metadata.getRootPackageGeneric();
> if (root.getApeV2() != null) {
@@ -38,35 +44,53 @@ This example demonstrates how to read the APEv2 tag in an MP3 file.
> }
>
> ```
-> ```
+> ````
-[http_wiki.hydrogenaud.io_index.php_title_APE_key]: http://wiki.hydrogenaud.io/index.php?title=APE_key
-[Handling the APEv2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+APEv2+tag
## Methods
| Method | Description |
| --- | --- |
-| [getTitle()](#getTitle--) | Gets the title. |
-| [getSubtitle()](#getSubtitle--) | Gets the subtitle. |
-| [getArtist()](#getArtist--) | Gets the artist. |
-| [getAlbum()](#getAlbum--) | Gets the album. |
-| [getDebutAlbum()](#getDebutAlbum--) | Gets the debut album. |
-| [getPublisher()](#getPublisher--) | Gets the publisher. |
-| [getConductor()](#getConductor--) | Gets the conductor. |
-| [getTrack()](#getTrack--) | Gets the track number. |
-| [getComposer()](#getComposer--) | Gets the composer. |
-| [getComment()](#getComment--) | Gets the comment. |
-| [getCopyright()](#getCopyright--) | Gets the copyright. |
-| [getPublicationRight()](#getPublicationRight--) | Gets the publication right. |
-| [getFile()](#getFile--) | Gets the file. |
-| [getIsbn()](#getIsbn--) | Gets the ISBN number with check digit. |
-| [getRecordLocation()](#getRecordLocation--) | Gets the record location. |
-| [getGenre()](#getGenre--) | Gets the genre. |
-| [getIsrc()](#getIsrc--) | Gets the International Standard Recording Number. |
-| [getAbstract()](#getAbstract--) | Gets the abstract link. |
-| [getLanguage()](#getLanguage--) | Gets the language. |
-| [getBibliography()](#getBibliography--) | Gets the bibliography. |
+| [getTitle()](#getTitle--) | Gets the title.
+ |
+| [getSubtitle()](#getSubtitle--) | Gets the subtitle.
+ |
+| [getArtist()](#getArtist--) | Gets the artist.
+ |
+| [getAlbum()](#getAlbum--) | Gets the album.
+ |
+| [getDebutAlbum()](#getDebutAlbum--) | Gets the debut album.
+ |
+| [getPublisher()](#getPublisher--) | Gets the publisher.
+ |
+| [getConductor()](#getConductor--) | Gets the conductor.
+ |
+| [getTrack()](#getTrack--) | Gets the track number.
+ |
+| [getComposer()](#getComposer--) | Gets the composer.
+ |
+| [getComment()](#getComment--) | Gets the comment.
+ |
+| [getCopyright()](#getCopyright--) | Gets the copyright.
+ |
+| [getPublicationRight()](#getPublicationRight--) | Gets the publication right.
+ |
+| [getFile()](#getFile--) | Gets the file.
+ |
+| [getIsbn()](#getIsbn--) | Gets the ISBN number with check digit.
+ |
+| [getRecordLocation()](#getRecordLocation--) | Gets the record location.
+ |
+| [getGenre()](#getGenre--) | Gets the genre.
+ |
+| [getIsrc()](#getIsrc--) | Gets the International Standard Recording Number.
+ |
+| [getAbstract()](#getAbstract--) | Gets the abstract link.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language.
+ |
+| [getBibliography()](#getBibliography--) | Gets the bibliography.
+ |
### getTitle() {#getTitle--}
```
public final String getTitle()
@@ -75,8 +99,10 @@ public final String getTitle()
Gets the title.
+
**Returns:**
java.lang.String - The title.
+
### getSubtitle() {#getSubtitle--}
```
public final String getSubtitle()
@@ -85,8 +111,10 @@ public final String getSubtitle()
Gets the subtitle.
+
**Returns:**
java.lang.String - The subtitle.
+
### getArtist() {#getArtist--}
```
public final String getArtist()
@@ -95,8 +123,10 @@ public final String getArtist()
Gets the artist.
+
**Returns:**
java.lang.String - The artist.
+
### getAlbum() {#getAlbum--}
```
public final String getAlbum()
@@ -105,8 +135,10 @@ public final String getAlbum()
Gets the album.
+
**Returns:**
java.lang.String - The album.
+
### getDebutAlbum() {#getDebutAlbum--}
```
public final String getDebutAlbum()
@@ -115,8 +147,10 @@ public final String getDebutAlbum()
Gets the debut album.
+
**Returns:**
java.lang.String - The debut album.
+
### getPublisher() {#getPublisher--}
```
public final String getPublisher()
@@ -125,8 +159,10 @@ public final String getPublisher()
Gets the publisher.
+
**Returns:**
java.lang.String - The publisher.
+
### getConductor() {#getConductor--}
```
public final String getConductor()
@@ -135,8 +171,10 @@ public final String getConductor()
Gets the conductor.
+
**Returns:**
java.lang.String - The conductor.
+
### getTrack() {#getTrack--}
```
public final Integer getTrack()
@@ -145,8 +183,10 @@ public final Integer getTrack()
Gets the track number.
+
**Returns:**
java.lang.Integer - The track number.
+
### getComposer() {#getComposer--}
```
public final String getComposer()
@@ -155,8 +195,10 @@ public final String getComposer()
Gets the composer.
+
**Returns:**
java.lang.String - The composer.
+
### getComment() {#getComment--}
```
public final String getComment()
@@ -165,8 +207,10 @@ public final String getComment()
Gets the comment.
+
**Returns:**
java.lang.String - The comment.
+
### getCopyright() {#getCopyright--}
```
public final String getCopyright()
@@ -175,8 +219,10 @@ public final String getCopyright()
Gets the copyright.
+
**Returns:**
java.lang.String - The copyright.
+
### getPublicationRight() {#getPublicationRight--}
```
public final String getPublicationRight()
@@ -185,8 +231,10 @@ public final String getPublicationRight()
Gets the publication right.
+
**Returns:**
java.lang.String - The publication right.
+
### getFile() {#getFile--}
```
public final String getFile()
@@ -195,18 +243,22 @@ public final String getFile()
Gets the file.
+
**Returns:**
java.lang.String - The file.
+
### getIsbn() {#getIsbn--}
```
public final String getIsbn()
```
-Gets the ISBN number with check digit. See more: https://en.wikipedia.org/wiki/International\_Standard\_Book\_Number.
+Gets the ISBN number with check digit. See more: https://en.wikipedia.org/wiki/International_Standard_Book_Number.
+
**Returns:**
java.lang.String - The ISBN number.
+
### getRecordLocation() {#getRecordLocation--}
```
public final String getRecordLocation()
@@ -215,8 +267,10 @@ public final String getRecordLocation()
Gets the record location.
+
**Returns:**
java.lang.String - The record location.
+
### getGenre() {#getGenre--}
```
public final String getGenre()
@@ -225,8 +279,10 @@ public final String getGenre()
Gets the genre.
+
**Returns:**
java.lang.String - The genre.
+
### getIsrc() {#getIsrc--}
```
public final String getIsrc()
@@ -235,8 +291,10 @@ public final String getIsrc()
Gets the International Standard Recording Number.
+
**Returns:**
java.lang.String - The International Standard Recording Number.
+
### getAbstract() {#getAbstract--}
```
public final String getAbstract()
@@ -245,8 +303,10 @@ public final String getAbstract()
Gets the abstract link.
+
**Returns:**
java.lang.String - The abstract link.
+
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -255,8 +315,10 @@ public final String getLanguage()
Gets the language.
+
**Returns:**
java.lang.String - The language.
+
### getBibliography() {#getBibliography--}
```
public final String getBibliography()
@@ -265,5 +327,7 @@ public final String getBibliography()
Gets the bibliography.
+
**Returns:**
java.lang.String - The bibliography.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfaudiostreamproperty/_index.md b/english/java/com.groupdocs.metadata.core/asfaudiostreamproperty/_index.md
index 8cc2ddc006..bf7266cb54 100644
--- a/english/java/com.groupdocs.metadata.core/asfaudiostreamproperty/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfaudiostreamproperty/_index.md
@@ -14,20 +14,26 @@ public class AsfAudioStreamProperty extends AsfBaseStreamProperty
Represents Audio stream property metadata in the ASF media container.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getFormatTag()](#getFormatTag--) | Gets the unique ID of the codec used to encode the audio data. |
-| [getChannels()](#getChannels--) | Gets the number of audio channels. |
-| [getSamplesPerSecond()](#getSamplesPerSecond--) | Gets a value in Hertz (cycles per second) that represents the sampling rate of the audio stream. |
-| [getBitsPerSample()](#getBitsPerSample--) | Gets the number of bits per sample of monaural data. |
+| [getFormatTag()](#getFormatTag--) | Gets the unique ID of the codec used to encode the audio data.
+ |
+| [getChannels()](#getChannels--) | Gets the number of audio channels.
+ |
+| [getSamplesPerSecond()](#getSamplesPerSecond--) | Gets a value in Hertz (cycles per second) that represents the sampling rate of the audio stream.
+ |
+| [getBitsPerSample()](#getBitsPerSample--) | Gets the number of bits per sample of monaural data.
+ |
### getFormatTag() {#getFormatTag--}
```
public final int getFormatTag()
@@ -36,8 +42,10 @@ public final int getFormatTag()
Gets the unique ID of the codec used to encode the audio data.
+
**Returns:**
int - The unique ID of the codec used to encode the audio data.
+
### getChannels() {#getChannels--}
```
public final int getChannels()
@@ -46,8 +54,10 @@ public final int getChannels()
Gets the number of audio channels.
+
**Returns:**
int - The number of audio channels.
+
### getSamplesPerSecond() {#getSamplesPerSecond--}
```
public final long getSamplesPerSecond()
@@ -56,8 +66,10 @@ public final long getSamplesPerSecond()
Gets a value in Hertz (cycles per second) that represents the sampling rate of the audio stream.
+
**Returns:**
long - The a value in Hertz (cycles per second) that represents the sampling rate of the audio stream.
+
### getBitsPerSample() {#getBitsPerSample--}
```
public final int getBitsPerSample()
@@ -66,5 +78,7 @@ public final int getBitsPerSample()
Gets the number of bits per sample of monaural data.
+
**Returns:**
int - The number of bits per sample of monaural data.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfbasedescriptor/_index.md b/english/java/com.groupdocs.metadata.core/asfbasedescriptor/_index.md
index 29b6e487dd..ff967fffc3 100644
--- a/english/java/com.groupdocs.metadata.core/asfbasedescriptor/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfbasedescriptor/_index.md
@@ -14,17 +14,20 @@ public abstract class AsfBaseDescriptor extends MetadataProperty
Represents an ASF base metadata descriptor object.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getAsfContentType()](#getAsfContentType--) | Gets the type of the content. |
+| [getAsfContentType()](#getAsfContentType--) | Gets the type of the content.
+ |
### getAsfContentType() {#getAsfContentType--}
```
public final AsfDescriptorType getAsfContentType()
@@ -33,5 +36,7 @@ public final AsfDescriptorType getAsfContentType()
Gets the type of the content.
+
**Returns:**
[AsfDescriptorType](../../com.groupdocs.metadata.core/asfdescriptortype) - The type of the content.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfbasestreamproperty/_index.md b/english/java/com.groupdocs.metadata.core/asfbasestreamproperty/_index.md
index 3c93923a5d..3e5cbefbf9 100644
--- a/english/java/com.groupdocs.metadata.core/asfbasestreamproperty/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfbasestreamproperty/_index.md
@@ -14,26 +14,42 @@ public abstract class AsfBaseStreamProperty extends CustomPackage
Represents base stream property metadata in the ASF media container.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getStreamType()](#getStreamType--) | Gets the type of this stream. |
-| [getStreamNumber()](#getStreamNumber--) | Gets the number of this stream. |
-| [getStartTime()](#getStartTime--) | Gets the presentation time of the first object, indicating where this digital media stream starts within the context of the timeline of the ASF file as a whole. |
-| [getEndTime()](#getEndTime--) | Gets the presentation time of the last object plus the duration of play, indicating where this digital media stream ends within the context of the timeline of the ASF file as a whole. |
-| [getBitrate()](#getBitrate--) | Gets the leak rate R, in bits per second, of a leaky bucket that contains the data portion of the stream without overflowing, excluding all ASF Data Packet overhead. |
-| [getAlternateBitrate()](#getAlternateBitrate--) | Gets the leak rate RAlt, in bits per second, of a leaky bucket that contains the data portion of the stream without overflowing, excluding all ASF Data Packet overhead. |
-| [getFlags()](#getFlags--) | Gets the flags. |
-| [getLanguage()](#getLanguage--) | Gets the stream language. |
-| [getAverageTimePerFrame()](#getAverageTimePerFrame--) | Gets the average time duration, measured in 100-nanosecond units, of each frame. |
-| [getAverageBitrate()](#getAverageBitrate--) | Gets the average bitrate. |
+| [getStreamType()](#getStreamType--) | Gets the type of this stream.
+ |
+| [getStreamNumber()](#getStreamNumber--) | Gets the number of this stream.
+ |
+| [getStartTime()](#getStartTime--) | Gets the presentation time of the first object, indicating where this digital media stream
+starts within the context of the timeline of the ASF file as a whole.
+ |
+| [getEndTime()](#getEndTime--) | Gets the presentation time of the last object plus the duration of play, indicating where
+this digital media stream ends within the context of the timeline of the ASF file as a whole.
+ |
+| [getBitrate()](#getBitrate--) | Gets the leak rate R, in bits per second, of a leaky bucket that contains the data portion
+of the stream without overflowing, excluding all ASF Data Packet overhead.
+ |
+| [getAlternateBitrate()](#getAlternateBitrate--) | Gets the leak rate RAlt, in bits per second, of a leaky bucket that contains the data portion
+of the stream without overflowing, excluding all ASF Data Packet overhead.
+ |
+| [getFlags()](#getFlags--) | Gets the flags.
+ |
+| [getLanguage()](#getLanguage--) | Gets the stream language.
+ |
+| [getAverageTimePerFrame()](#getAverageTimePerFrame--) | Gets the average time duration, measured in 100-nanosecond units, of each frame.
+ |
+| [getAverageBitrate()](#getAverageBitrate--) | Gets the average bitrate.
+ |
### getStreamType() {#getStreamType--}
```
public final AsfStreamType getStreamType()
@@ -42,8 +58,10 @@ public final AsfStreamType getStreamType()
Gets the type of this stream.
+
**Returns:**
[AsfStreamType](../../com.groupdocs.metadata.core/asfstreamtype) - The type of this stream.
+
### getStreamNumber() {#getStreamNumber--}
```
public final byte getStreamNumber()
@@ -52,48 +70,62 @@ public final byte getStreamNumber()
Gets the number of this stream.
+
**Returns:**
byte - The number of this stream.
+
### getStartTime() {#getStartTime--}
```
public final Long getStartTime()
```
-Gets the presentation time of the first object, indicating where this digital media stream starts within the context of the timeline of the ASF file as a whole.
+Gets the presentation time of the first object, indicating where this digital media stream
+starts within the context of the timeline of the ASF file as a whole.
+
**Returns:**
java.lang.Long - The presentation time of the first object.
+
### getEndTime() {#getEndTime--}
```
public final Long getEndTime()
```
-Gets the presentation time of the last object plus the duration of play, indicating where this digital media stream ends within the context of the timeline of the ASF file as a whole.
+Gets the presentation time of the last object plus the duration of play, indicating where
+this digital media stream ends within the context of the timeline of the ASF file as a whole.
+
**Returns:**
java.lang.Long - The presentation time of the last object plus the duration of play.
+
### getBitrate() {#getBitrate--}
```
public final Long getBitrate()
```
-Gets the leak rate R, in bits per second, of a leaky bucket that contains the data portion of the stream without overflowing, excluding all ASF Data Packet overhead.
+Gets the leak rate R, in bits per second, of a leaky bucket that contains the data portion
+of the stream without overflowing, excluding all ASF Data Packet overhead.
+
**Returns:**
java.lang.Long - The bleak rate R, in bits per second.
+
### getAlternateBitrate() {#getAlternateBitrate--}
```
public final Long getAlternateBitrate()
```
-Gets the leak rate RAlt, in bits per second, of a leaky bucket that contains the data portion of the stream without overflowing, excluding all ASF Data Packet overhead.
+Gets the leak rate RAlt, in bits per second, of a leaky bucket that contains the data portion
+of the stream without overflowing, excluding all ASF Data Packet overhead.
+
**Returns:**
java.lang.Long - The leak rate RAlt, in bits per second.
+
### getFlags() {#getFlags--}
```
public final AsfExtendedStreamPropertyFlags getFlags()
@@ -102,8 +134,10 @@ public final AsfExtendedStreamPropertyFlags getFlags()
Gets the flags.
+
**Returns:**
[AsfExtendedStreamPropertyFlags](../../com.groupdocs.metadata.core/asfextendedstreampropertyflags) - The flags.
+
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -112,8 +146,10 @@ public final String getLanguage()
Gets the stream language.
+
**Returns:**
java.lang.String - The stream language.
+
### getAverageTimePerFrame() {#getAverageTimePerFrame--}
```
public final Long getAverageTimePerFrame()
@@ -122,8 +158,10 @@ public final Long getAverageTimePerFrame()
Gets the average time duration, measured in 100-nanosecond units, of each frame.
+
**Returns:**
java.lang.Long - The average time duration, measured in 100-nanosecond units, of each frame.
+
### getAverageBitrate() {#getAverageBitrate--}
```
public final Long getAverageBitrate()
@@ -132,5 +170,7 @@ public final Long getAverageBitrate()
Gets the average bitrate.
+
**Returns:**
java.lang.Long - The average bitrate.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfcodec/_index.md b/english/java/com.groupdocs.metadata.core/asfcodec/_index.md
index 61033896b9..0c5f9ffb28 100644
--- a/english/java/com.groupdocs.metadata.core/asfcodec/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfcodec/_index.md
@@ -14,20 +14,26 @@ public class AsfCodec extends CustomPackage
Represents ASF codec metadata.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the property name. |
-| [getCodecType()](#getCodecType--) | Gets the type of the codec. |
-| [getDescription()](#getDescription--) | Gets the description. |
-| [getInformation()](#getInformation--) | Gets the information string. |
+| [getName()](#getName--) | Gets the property name.
+ |
+| [getCodecType()](#getCodecType--) | Gets the type of the codec.
+ |
+| [getDescription()](#getDescription--) | Gets the description.
+ |
+| [getInformation()](#getInformation--) | Gets the information string.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -36,8 +42,10 @@ public final String getName()
Gets the property name.
+
**Returns:**
java.lang.String - The property name.
+
### getCodecType() {#getCodecType--}
```
public final AsfCodecType getCodecType()
@@ -46,8 +54,10 @@ public final AsfCodecType getCodecType()
Gets the type of the codec.
+
**Returns:**
[AsfCodecType](../../com.groupdocs.metadata.core/asfcodectype) - The type of the codec.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -56,8 +66,10 @@ public final String getDescription()
Gets the description.
+
**Returns:**
java.lang.String - The description.
+
### getInformation() {#getInformation--}
```
public final String getInformation()
@@ -66,5 +78,7 @@ public final String getInformation()
Gets the information string.
+
**Returns:**
java.lang.String - The information string.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfcodectype/_index.md b/english/java/com.groupdocs.metadata.core/asfcodectype/_index.md
index c12fb2f167..9ed59a24a0 100644
--- a/english/java/com.groupdocs.metadata.core/asfcodectype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfcodectype/_index.md
@@ -16,14 +16,19 @@ public enum AsfCodecType extends Enum implements IEnumValue
```
Defines ASF codec types.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | Undefined codec. |
-| [Video](#Video) | Video codec. |
-| [Audio](#Audio) | Audio codec. |
-| [Unknown](#Unknown) | Unknown codec. |
+| [Undefined](#Undefined) | Undefined codec.
+ |
+| [Video](#Video) | Video codec.
+ |
+| [Audio](#Audio) | Audio codec.
+ |
+| [Unknown](#Unknown) | Unknown codec.
+ |
## Methods
| Method | Description |
@@ -45,6 +50,7 @@ public static final AsfCodecType Undefined
Undefined codec.
+
### Video {#Video}
```
public static final AsfCodecType Video
@@ -53,6 +59,7 @@ public static final AsfCodecType Video
Video codec.
+
### Audio {#Audio}
```
public static final AsfCodecType Audio
@@ -61,6 +68,7 @@ public static final AsfCodecType Audio
Audio codec.
+
### Unknown {#Unknown}
```
public static final AsfCodecType Unknown
@@ -69,6 +77,7 @@ public static final AsfCodecType Unknown
Unknown codec.
+
### values() {#values--}
```
public static AsfCodecType[] values()
@@ -127,6 +136,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +147,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +163,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +179,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +190,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/asfcontentdescriptor/_index.md b/english/java/com.groupdocs.metadata.core/asfcontentdescriptor/_index.md
index c740b6adda..e70890d421 100644
--- a/english/java/com.groupdocs.metadata.core/asfcontentdescriptor/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfcontentdescriptor/_index.md
@@ -14,9 +14,11 @@ public final class AsfContentDescriptor extends AsfBaseDescriptor
Represents an ASF content descriptor object.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
diff --git a/english/java/com.groupdocs.metadata.core/asfdescriptortype/_index.md b/english/java/com.groupdocs.metadata.core/asfdescriptortype/_index.md
index 131b81378e..9ef3dc10a9 100644
--- a/english/java/com.groupdocs.metadata.core/asfdescriptortype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfdescriptortype/_index.md
@@ -16,17 +16,25 @@ public final class AsfDescriptorType implements IEnumValue
```
Defines ASF descriptor types.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unicode](#Unicode) | The unicode string type. |
-| [ByteArray](#ByteArray) | The byte array type. |
-| [Bool](#Bool) | The 32-bit bool type. |
-| [DWord](#DWord) | The 32-bit unsigned integer type. |
-| [QWord](#QWord) | The 64-bit unsigned integer type. |
-| [Word](#Word) | The 16-bit unsigned integer type. |
-| [Guid](#Guid) | The 128-bit (16 byte) GUID type. |
+| [Unicode](#Unicode) | The unicode string type.
+ |
+| [ByteArray](#ByteArray) | The byte array type.
+ |
+| [Bool](#Bool) | The 32-bit bool type.
+ |
+| [DWord](#DWord) | The 32-bit unsigned integer type.
+ |
+| [QWord](#QWord) | The 64-bit unsigned integer type.
+ |
+| [Word](#Word) | The 16-bit unsigned integer type.
+ |
+| [Guid](#Guid) | The 128-bit (16 byte) GUID type.
+ |
## Methods
| Method | Description |
@@ -49,6 +57,7 @@ public static final AsfDescriptorType Unicode
The unicode string type.
+
### ByteArray {#ByteArray}
```
public static final AsfDescriptorType ByteArray
@@ -57,6 +66,7 @@ public static final AsfDescriptorType ByteArray
The byte array type.
+
### Bool {#Bool}
```
public static final AsfDescriptorType Bool
@@ -65,6 +75,7 @@ public static final AsfDescriptorType Bool
The 32-bit bool type.
+
### DWord {#DWord}
```
public static final AsfDescriptorType DWord
@@ -73,6 +84,7 @@ public static final AsfDescriptorType DWord
The 32-bit unsigned integer type.
+
### QWord {#QWord}
```
public static final AsfDescriptorType QWord
@@ -81,6 +93,7 @@ public static final AsfDescriptorType QWord
The 64-bit unsigned integer type.
+
### Word {#Word}
```
public static final AsfDescriptorType Word
@@ -89,6 +102,7 @@ public static final AsfDescriptorType Word
The 16-bit unsigned integer type.
+
### Guid {#Guid}
```
public static final AsfDescriptorType Guid
@@ -97,6 +111,7 @@ public static final AsfDescriptorType Guid
The 128-bit (16 byte) GUID type.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static AsfDescriptorType getByRawValue(int rawValue)
@@ -130,6 +145,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -140,6 +156,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -155,6 +172,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -170,6 +188,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -180,6 +199,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -190,6 +210,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/asfextendedstreampropertyflags/_index.md b/english/java/com.groupdocs.metadata.core/asfextendedstreampropertyflags/_index.md
index 828fbd8363..3e1d8bf86b 100644
--- a/english/java/com.groupdocs.metadata.core/asfextendedstreampropertyflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfextendedstreampropertyflags/_index.md
@@ -16,14 +16,20 @@ public final class AsfExtendedStreamPropertyFlags implements IEnumValue
```
Defines ASF extended stream property flags.
+
## Fields
| Field | Description |
| --- | --- |
-| [Reliable](#Reliable) | This digital media stream, if sent over a network, must be carried over a reliable data communications transport mechanism. |
-| [Seekable](#Seekable) | This flag should be set only if the stream is seekable. |
-| [NoCleanpoints](#NoCleanpoints) | The stream does not contain any cleanpoints. |
-| [ResendLiveCleanpoints](#ResendLiveCleanpoints) | A stream is joined in mid-transmission, all information from the most recent cleanpoint up to the current time should be sent before normal streaming begins at the current time. |
+| [Reliable](#Reliable) | This digital media stream, if sent over a network, must be carried over a reliable data communications transport mechanism.
+ |
+| [Seekable](#Seekable) | This flag should be set only if the stream is seekable.
+ |
+| [NoCleanpoints](#NoCleanpoints) | The stream does not contain any cleanpoints.
+ |
+| [ResendLiveCleanpoints](#ResendLiveCleanpoints) | A stream is joined in mid-transmission, all information from the most recent
+cleanpoint up to the current time should be sent before normal streaming begins at the current time.
+ |
## Methods
| Method | Description |
@@ -46,6 +52,7 @@ public static final AsfExtendedStreamPropertyFlags Reliable
This digital media stream, if sent over a network, must be carried over a reliable data communications transport mechanism.
+
### Seekable {#Seekable}
```
public static final AsfExtendedStreamPropertyFlags Seekable
@@ -54,6 +61,7 @@ public static final AsfExtendedStreamPropertyFlags Seekable
This flag should be set only if the stream is seekable.
+
### NoCleanpoints {#NoCleanpoints}
```
public static final AsfExtendedStreamPropertyFlags NoCleanpoints
@@ -62,13 +70,16 @@ public static final AsfExtendedStreamPropertyFlags NoCleanpoints
The stream does not contain any cleanpoints.
+
### ResendLiveCleanpoints {#ResendLiveCleanpoints}
```
public static final AsfExtendedStreamPropertyFlags ResendLiveCleanpoints
```
-A stream is joined in mid-transmission, all information from the most recent cleanpoint up to the current time should be sent before normal streaming begins at the current time.
+A stream is joined in mid-transmission, all information from the most recent
+cleanpoint up to the current time should be sent before normal streaming begins at the current time.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
@@ -103,6 +114,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -113,6 +125,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -128,6 +141,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +157,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -153,6 +168,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -163,6 +179,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/asffilepropertyflags/_index.md b/english/java/com.groupdocs.metadata.core/asffilepropertyflags/_index.md
index 59cfe1aa9e..33edcb8565 100644
--- a/english/java/com.groupdocs.metadata.core/asffilepropertyflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asffilepropertyflags/_index.md
@@ -16,13 +16,18 @@ public final class AsfFilePropertyFlags implements IEnumValue
```
Defines ASF file property flags.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | The undefined flag. |
-| [Broadcast](#Broadcast) | Specifies, that a file is in the process of being created, and thus that various values stored in the header objects are invalid. |
-| [Seekable](#Seekable) | Specifies, that a file is seekable. |
+| [Undefined](#Undefined) | The undefined flag.
+ |
+| [Broadcast](#Broadcast) | Specifies, that a file is in the process of being created,
+and thus that various values stored in the header objects are invalid.
+ |
+| [Seekable](#Seekable) | Specifies, that a file is seekable.
+ |
## Methods
| Method | Description |
@@ -45,13 +50,16 @@ public static final AsfFilePropertyFlags Undefined
The undefined flag.
+
### Broadcast {#Broadcast}
```
public static final AsfFilePropertyFlags Broadcast
```
-Specifies, that a file is in the process of being created, and thus that various values stored in the header objects are invalid.
+Specifies, that a file is in the process of being created,
+and thus that various values stored in the header objects are invalid.
+
### Seekable {#Seekable}
```
@@ -61,6 +69,7 @@ public static final AsfFilePropertyFlags Seekable
Specifies, that a file is seekable.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static AsfFilePropertyFlags getByRawValue(int rawValue)
@@ -94,6 +103,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -104,6 +114,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -119,6 +130,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -134,6 +146,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -144,6 +157,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -154,6 +168,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/asfmetadatadescriptor/_index.md b/english/java/com.groupdocs.metadata.core/asfmetadatadescriptor/_index.md
index 38af43aae3..50ff872895 100644
--- a/english/java/com.groupdocs.metadata.core/asfmetadatadescriptor/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfmetadatadescriptor/_index.md
@@ -14,19 +14,24 @@ public final class AsfMetadataDescriptor extends AsfBaseDescriptor
Represents an ASF metadata descriptor.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getLanguage()](#getLanguage--) | Gets the language. |
-| [getStreamNumber()](#getStreamNumber--) | Gets the stream number. |
-| [getOriginalName()](#getOriginalName--) | Gets the original name of the descriptor. |
+| [getLanguage()](#getLanguage--) | Gets the language.
+ |
+| [getStreamNumber()](#getStreamNumber--) | Gets the stream number.
+ |
+| [getOriginalName()](#getOriginalName--) | Gets the original name of the descriptor.
+ |
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -35,8 +40,10 @@ public final String getLanguage()
Gets the language.
+
**Returns:**
java.lang.String - The language.
+
### getStreamNumber() {#getStreamNumber--}
```
public final int getStreamNumber()
@@ -45,8 +52,10 @@ public final int getStreamNumber()
Gets the stream number.
+
**Returns:**
int - The stream number.
+
### getOriginalName() {#getOriginalName--}
```
public final String getOriginalName()
@@ -55,5 +64,7 @@ public final String getOriginalName()
Gets the original name of the descriptor.
+
**Returns:**
java.lang.String - The original name of the descriptor.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfmetadatadescriptorcollection/_index.md b/english/java/com.groupdocs.metadata.core/asfmetadatadescriptorcollection/_index.md
index f38f2f25c1..4070a2b9a0 100644
--- a/english/java/com.groupdocs.metadata.core/asfmetadatadescriptorcollection/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfmetadatadescriptorcollection/_index.md
@@ -14,9 +14,11 @@ public class AsfMetadataDescriptorCollection extends CustomPackage
Represents a collection of metadata descriptors.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
diff --git a/english/java/com.groupdocs.metadata.core/asfpackage/_index.md b/english/java/com.groupdocs.metadata.core/asfpackage/_index.md
index e35dde0aab..13c5b2a304 100644
--- a/english/java/com.groupdocs.metadata.core/asfpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfpackage/_index.md
@@ -14,22 +14,30 @@ public class AsfPackage extends CustomPackage
Represents native metadata of the ASF media container.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getFileID()](#getFileID--) | Gets the unique identifier for this file. |
-| [getCreationDate()](#getCreationDate--) | Gets the date and time of the initial creation of the file. |
-| [getFlags()](#getFlags--) | Gets the header flags. |
-| [getStreamProperties()](#getStreamProperties--) | Gets the digital media stream properties. |
-| [getMetadataDescriptors()](#getMetadataDescriptors--) | Gets the metadata descriptors. |
-| [getCodecInformation()](#getCodecInformation--) | Gets the codec info entries. |
+| [getFileID()](#getFileID--) | Gets the unique identifier for this file.
+ |
+| [getCreationDate()](#getCreationDate--) | Gets the date and time of the initial creation of the file.
+ |
+| [getFlags()](#getFlags--) | Gets the header flags.
+ |
+| [getStreamProperties()](#getStreamProperties--) | Gets the digital media stream properties.
+ |
+| [getMetadataDescriptors()](#getMetadataDescriptors--) | Gets the metadata descriptors.
+ |
+| [getCodecInformation()](#getCodecInformation--) | Gets the codec info entries.
+ |
### getFileID() {#getFileID--}
```
public final UUID getFileID()
@@ -38,8 +46,10 @@ public final UUID getFileID()
Gets the unique identifier for this file.
+
**Returns:**
java.util.UUID - The unique identifier for this file.
+
### getCreationDate() {#getCreationDate--}
```
public final Date getCreationDate()
@@ -48,8 +58,10 @@ public final Date getCreationDate()
Gets the date and time of the initial creation of the file.
+
**Returns:**
java.util.Date - The date and time of the initial creation of the file.
+
### getFlags() {#getFlags--}
```
public final AsfFilePropertyFlags getFlags()
@@ -58,8 +70,10 @@ public final AsfFilePropertyFlags getFlags()
Gets the header flags.
+
**Returns:**
[AsfFilePropertyFlags](../../com.groupdocs.metadata.core/asffilepropertyflags) - The header flags.
+
### getStreamProperties() {#getStreamProperties--}
```
public final AsfBaseStreamProperty[] getStreamProperties()
@@ -68,8 +82,10 @@ public final AsfBaseStreamProperty[] getStreamProperties()
Gets the digital media stream properties.
+
**Returns:**
com.groupdocs.metadata.core.AsfBaseStreamProperty[] - The digital media stream properties.
+
### getMetadataDescriptors() {#getMetadataDescriptors--}
```
public final AsfBaseDescriptor[] getMetadataDescriptors()
@@ -78,8 +94,10 @@ public final AsfBaseDescriptor[] getMetadataDescriptors()
Gets the metadata descriptors.
+
**Returns:**
com.groupdocs.metadata.core.AsfBaseDescriptor[] - The metadata descriptors.
+
### getCodecInformation() {#getCodecInformation--}
```
public final AsfCodec[] getCodecInformation()
@@ -88,5 +106,7 @@ public final AsfCodec[] getCodecInformation()
Gets the codec info entries.
+
**Returns:**
com.groupdocs.metadata.core.AsfCodec[] - The codec info entries.
+
diff --git a/english/java/com.groupdocs.metadata.core/asfrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/asfrootpackage/_index.md
index 19d3f62890..369987b7a0 100644
--- a/english/java/com.groupdocs.metadata.core/asfrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfrootpackage/_index.md
@@ -17,16 +17,19 @@ public class AsfRootPackage extends RootMetadataPackage implements IXmp
Represents the root package allowing working with metadata in an ASF video.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
- * [Working with XMP metadata][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This code sample demonstrates how to read native ASF metadata.
+
+This code sample demonstrates how to read native ASF metadata.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputAsf)) {
> AsfRootPackage root = metadata.getRootPackageGeneric();
> AsfPackage asfPackage = root.getAsfPackage();
@@ -85,18 +88,19 @@ This code sample demonstrates how to read native ASF metadata.
> }
>
> ```
-> ```
+> ````
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getAsfPackage()](#getAsfPackage--) | Gets the ASF metadata package. |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
+| [getAsfPackage()](#getAsfPackage--) | Gets the ASF metadata package.
+ |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
| [copyTo(MetadataPackage metadata)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | |
### getAsfPackage() {#getAsfPackage--}
```
@@ -106,8 +110,10 @@ public final AsfPackage getAsfPackage()
Gets the ASF metadata package.
+
**Returns:**
[AsfPackage](../../com.groupdocs.metadata.core/asfpackage) - The ASF metadata package.
+
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -116,15 +122,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -133,17 +142,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### copyTo(MetadataPackage metadata) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-}
```
diff --git a/english/java/com.groupdocs.metadata.core/asfstreamtype/_index.md b/english/java/com.groupdocs.metadata.core/asfstreamtype/_index.md
index 69ba6a350e..6bdb254d4d 100644
--- a/english/java/com.groupdocs.metadata.core/asfstreamtype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfstreamtype/_index.md
@@ -16,20 +16,31 @@ public enum AsfStreamType extends Enum implements IEnumValue
```
Defines ASF stream types.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | Undefined stream type. |
-| [Audio](#Audio) | ASF Audio Media. |
-| [Video](#Video) | ASF Video Media. |
-| [Command](#Command) | ASF Command Media. |
-| [Jfif](#Jfif) | ASF JFIF Media. |
-| [DegradableJpeg](#DegradableJpeg) | ASF Degradable JPEG Media. |
-| [FileTransfer](#FileTransfer) | ASF File Transfer Media. |
-| [Binary](#Binary) | ASF Binary Media. |
-| [WebStreamSubtype](#WebStreamSubtype) | ASF Web Stream Media Subtype. |
-| [WebStreamFormat](#WebStreamFormat) | ASF Web Stream Format. |
+| [Undefined](#Undefined) | Undefined stream type.
+ |
+| [Audio](#Audio) | ASF Audio Media.
+ |
+| [Video](#Video) | ASF Video Media.
+ |
+| [Command](#Command) | ASF Command Media.
+ |
+| [Jfif](#Jfif) | ASF JFIF Media.
+ |
+| [DegradableJpeg](#DegradableJpeg) | ASF Degradable JPEG Media.
+ |
+| [FileTransfer](#FileTransfer) | ASF File Transfer Media.
+ |
+| [Binary](#Binary) | ASF Binary Media.
+ |
+| [WebStreamSubtype](#WebStreamSubtype) | ASF Web Stream Media Subtype.
+ |
+| [WebStreamFormat](#WebStreamFormat) | ASF Web Stream Format.
+ |
## Methods
| Method | Description |
@@ -51,6 +62,7 @@ public static final AsfStreamType Undefined
Undefined stream type.
+
### Audio {#Audio}
```
public static final AsfStreamType Audio
@@ -59,6 +71,7 @@ public static final AsfStreamType Audio
ASF Audio Media.
+
### Video {#Video}
```
public static final AsfStreamType Video
@@ -67,6 +80,7 @@ public static final AsfStreamType Video
ASF Video Media.
+
### Command {#Command}
```
public static final AsfStreamType Command
@@ -75,6 +89,7 @@ public static final AsfStreamType Command
ASF Command Media.
+
### Jfif {#Jfif}
```
public static final AsfStreamType Jfif
@@ -83,6 +98,7 @@ public static final AsfStreamType Jfif
ASF JFIF Media.
+
### DegradableJpeg {#DegradableJpeg}
```
public static final AsfStreamType DegradableJpeg
@@ -91,6 +107,7 @@ public static final AsfStreamType DegradableJpeg
ASF Degradable JPEG Media.
+
### FileTransfer {#FileTransfer}
```
public static final AsfStreamType FileTransfer
@@ -99,6 +116,7 @@ public static final AsfStreamType FileTransfer
ASF File Transfer Media.
+
### Binary {#Binary}
```
public static final AsfStreamType Binary
@@ -107,6 +125,7 @@ public static final AsfStreamType Binary
ASF Binary Media.
+
### WebStreamSubtype {#WebStreamSubtype}
```
public static final AsfStreamType WebStreamSubtype
@@ -115,6 +134,7 @@ public static final AsfStreamType WebStreamSubtype
ASF Web Stream Media Subtype.
+
### WebStreamFormat {#WebStreamFormat}
```
public static final AsfStreamType WebStreamFormat
@@ -123,6 +143,7 @@ public static final AsfStreamType WebStreamFormat
ASF Web Stream Format.
+
### values() {#values--}
```
public static AsfStreamType[] values()
@@ -181,6 +202,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -191,6 +213,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -206,6 +229,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -221,6 +245,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -231,5 +256,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/asfvideostreamproperty/_index.md b/english/java/com.groupdocs.metadata.core/asfvideostreamproperty/_index.md
index 6a01f47170..98f1ba2e4e 100644
--- a/english/java/com.groupdocs.metadata.core/asfvideostreamproperty/_index.md
+++ b/english/java/com.groupdocs.metadata.core/asfvideostreamproperty/_index.md
@@ -14,20 +14,26 @@ public class AsfVideoStreamProperty extends AsfBaseStreamProperty
Represents Video stream property metadata in the ASF media container.
+
**Learn more**
- * [Working with Metadata in ASF Files][]
+* [Working with Metadata in ASF Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files)
+
+
-[Working with Metadata in ASF Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+Metadata+in+ASF+Files
## Methods
| Method | Description |
| --- | --- |
-| [getImageWidth()](#getImageWidth--) | Gets the width of the encoded image in pixels. |
-| [getImageHeight()](#getImageHeight--) | Gets the height of the encoded image in pixels. |
-| [getCompression()](#getCompression--) | Gets the video compression Id. |
-| [getBitsPerPixels()](#getBitsPerPixels--) | Gets the bits per pixels. |
+| [getImageWidth()](#getImageWidth--) | Gets the width of the encoded image in pixels.
+ |
+| [getImageHeight()](#getImageHeight--) | Gets the height of the encoded image in pixels.
+ |
+| [getCompression()](#getCompression--) | Gets the video compression Id.
+ |
+| [getBitsPerPixels()](#getBitsPerPixels--) | Gets the bits per pixels.
+ |
### getImageWidth() {#getImageWidth--}
```
public final long getImageWidth()
@@ -36,8 +42,10 @@ public final long getImageWidth()
Gets the width of the encoded image in pixels.
+
**Returns:**
long - The width of the encoded image in pixels.
+
### getImageHeight() {#getImageHeight--}
```
public final long getImageHeight()
@@ -46,8 +54,10 @@ public final long getImageHeight()
Gets the height of the encoded image in pixels.
+
**Returns:**
long - The height of the encoded image in pixels.
+
### getCompression() {#getCompression--}
```
public final long getCompression()
@@ -56,8 +66,10 @@ public final long getCompression()
Gets the video compression Id.
+
**Returns:**
long - The video compression Id.
+
### getBitsPerPixels() {#getBitsPerPixels--}
```
public final long getBitsPerPixels()
@@ -66,5 +78,7 @@ public final long getBitsPerPixels()
Gets the bits per pixels.
+
**Returns:**
long - The bits per pixels.
+
diff --git a/english/java/com.groupdocs.metadata.core/aviheader/_index.md b/english/java/com.groupdocs.metadata.core/aviheader/_index.md
index b964c355b5..6a9fcc0778 100644
--- a/english/java/com.groupdocs.metadata.core/aviheader/_index.md
+++ b/english/java/com.groupdocs.metadata.core/aviheader/_index.md
@@ -14,38 +14,59 @@ public final class AviHeader extends CustomPackage
Represents the AVIMAINHEADER structure in an AVI video.
+
**Learn more**
- * [Working with metadata in AVI files][]
+* [Working with metadata in AVI files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+AVI+files)
+
+
-[Working with metadata in AVI files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+AVI+files
## Constructors
| Constructor | Description |
| --- | --- |
-| [AviHeader()](#AviHeader--) | Initializes a new instance of the AviHeader class. |
+| [AviHeader()](#AviHeader--) | Initializes a new instance of the
+AviHeader
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getMicroSecPerFrame()](#getMicroSecPerFrame--) | Gets the the number of microseconds between frames. |
-| [getMaxBytesPerSec()](#getMaxBytesPerSec--) | |
-| [getPaddingGranularity()](#getPaddingGranularity--) | Gets the alignment for data, in bytes. |
-| [getAviHeaderFlags()](#getAviHeaderFlags--) | Gets a bitwise combination of zero or more of the AVI flags. |
-| [getTotalFrames()](#getTotalFrames--) | Gets the the total number of frames of data in the file. |
-| [getInitialFrames()](#getInitialFrames--) | |
-| [getStreams()](#getStreams--) | Gets the number of streams in the file. |
-| [getSuggestedBufferSize()](#getSuggestedBufferSize--) | |
-| [getWidth()](#getWidth--) | Gets the width of the AVI file in pixels. |
-| [getHeight()](#getHeight--) | Gets the height of the AVI file in pixels. |
+| [getMicroSecPerFrame()](#getMicroSecPerFrame--) | Gets the the number of microseconds between frames.
+ |
+| [getMaxBytesPerSec()](#getMaxBytesPerSec--) |
+
+ |
+| [getPaddingGranularity()](#getPaddingGranularity--) | Gets the alignment for data, in bytes.
+ |
+| [getAviHeaderFlags()](#getAviHeaderFlags--) | Gets a bitwise combination of zero or more of the AVI flags.
+ |
+| [getTotalFrames()](#getTotalFrames--) | Gets the the total number of frames of data in the file.
+ |
+| [getInitialFrames()](#getInitialFrames--) |
+
+ |
+| [getStreams()](#getStreams--) | Gets the number of streams in the file.
+ |
+| [getSuggestedBufferSize()](#getSuggestedBufferSize--) |
+
+ |
+| [getWidth()](#getWidth--) | Gets the width of the AVI file in pixels.
+ |
+| [getHeight()](#getHeight--) | Gets the height of the AVI file in pixels.
+ |
### AviHeader() {#AviHeader--}
```
public AviHeader()
```
-Initializes a new instance of the AviHeader class.
+Initializes a new instance of the
+AviHeader
+ class.
+
### getMicroSecPerFrame() {#getMicroSecPerFrame--}
```
@@ -55,20 +76,33 @@ public final int getMicroSecPerFrame()
Gets the the number of microseconds between frames. This value indicates the overall timing for the file.
+
**Returns:**
int - The number of microseconds between frames.
+
### getMaxBytesPerSec() {#getMaxBytesPerSec--}
```
public final int getMaxBytesPerSec()
```
-Gets the approximate maximum data rate of the file.
+Gets the approximate maximum data rate of the file.
+
+
+
+
+
+
+This value indicates the number of bytes per second the system must handle to present an AVI sequence as
+specified by the other parameters contained in the main header and stream header chunks.
+
+
+
- This value indicates the number of bytes per second the system must handle to present an AVI sequence as specified by the other parameters contained in the main header and stream header chunks.
**Returns:**
int - The the approximate maximum data rate of the file.
+
### getPaddingGranularity() {#getPaddingGranularity--}
```
public final int getPaddingGranularity()
@@ -77,8 +111,10 @@ public final int getPaddingGranularity()
Gets the alignment for data, in bytes. Pad the data to multiples of this value.
+
**Returns:**
int - The the alignment for data.
+
### getAviHeaderFlags() {#getAviHeaderFlags--}
```
public final AviHeaderFlags getAviHeaderFlags()
@@ -87,8 +123,10 @@ public final AviHeaderFlags getAviHeaderFlags()
Gets a bitwise combination of zero or more of the AVI flags.
+
**Returns:**
[AviHeaderFlags](../../com.groupdocs.metadata.core/aviheaderflags) - The AVI flags.
+
### getTotalFrames() {#getTotalFrames--}
```
public final int getTotalFrames()
@@ -97,20 +135,33 @@ public final int getTotalFrames()
Gets the the total number of frames of data in the file.
+
**Returns:**
int - The total number of frames.
+
### getInitialFrames() {#getInitialFrames--}
```
public final int getInitialFrames()
```
-Gets the initial frame for interleaved files.
+Gets the initial frame for interleaved files.
+
+
+
+
+
+
+Noninterleaved files should specify zero. If you are creating interleaved files, specify the number of frames
+in the file prior to the initial frame of the AVI sequence in this member.
+
+
+
- Noninterleaved files should specify zero. If you are creating interleaved files, specify the number of frames in the file prior to the initial frame of the AVI sequence in this member.
**Returns:**
int - The initial frames.
+
### getStreams() {#getStreams--}
```
public final int getStreams()
@@ -119,20 +170,34 @@ public final int getStreams()
Gets the number of streams in the file. For example, a file with audio and video has two streams.
+
**Returns:**
int - The number of streams.
+
### getSuggestedBufferSize() {#getSuggestedBufferSize--}
```
public final int getSuggestedBufferSize()
```
-Gets the suggested buffer size for reading the file.
+Gets the suggested buffer size for reading the file.
+
+
+
+
+
+
+Generally, this size should be large enough to contain the largest chunk in the file.
+If set to zero, or if it is too small, the playback software will have to reallocate memory during playback, which will reduce performance. For an interleaved file,
+the buffer size should be large enough to read an entire record, and not just a chunk.
+
+
+
- Generally, this size should be large enough to contain the largest chunk in the file. If set to zero, or if it is too small, the playback software will have to reallocate memory during playback, which will reduce performance. For an interleaved file, the buffer size should be large enough to read an entire record, and not just a chunk.
**Returns:**
int - The suggested buffer size for reading the file.
+
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -141,8 +206,10 @@ public final int getWidth()
Gets the width of the AVI file in pixels.
+
**Returns:**
int - The width in pixels.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -151,5 +218,7 @@ public final int getHeight()
Gets the height of the AVI file in pixels.
+
**Returns:**
int - The height in pixels.
+
diff --git a/english/java/com.groupdocs.metadata.core/aviheaderflags/_index.md b/english/java/com.groupdocs.metadata.core/aviheaderflags/_index.md
index 9629f5853a..84e1b66db2 100644
--- a/english/java/com.groupdocs.metadata.core/aviheaderflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/aviheaderflags/_index.md
@@ -16,16 +16,24 @@ public final class AviHeaderFlags implements IEnumValue
```
Represents AVI Header flags.
+
## Fields
| Field | Description |
| --- | --- |
-| [HasIndex](#HasIndex) | Indicates the AVI file has an index. |
-| [MustUseIndex](#MustUseIndex) | Indicates that application should use the index, rather than the physical ordering of the chunks in the file, to determine the order of presentation of the data. |
-| [IsInterleaved](#IsInterleaved) | Indicates the AVI file is interleaved. |
-| [TrustCkType](#TrustCkType) | Use CKType to find key frames. |
-| [WasCaptureFile](#WasCaptureFile) | Indicates the AVI file is a specially allocated file used for capturing real-time video. |
-| [Copyrighted](#Copyrighted) | Indicates the AVI file contains copyrighted data and software. |
+| [HasIndex](#HasIndex) | Indicates the AVI file has an index.
+ |
+| [MustUseIndex](#MustUseIndex) | Indicates that application should use the index, rather than the physical ordering of the chunks in the file,
+to determine the order of presentation of the data.
+ |
+| [IsInterleaved](#IsInterleaved) | Indicates the AVI file is interleaved.
+ |
+| [TrustCkType](#TrustCkType) | Use CKType to find key frames.
+ |
+| [WasCaptureFile](#WasCaptureFile) | Indicates the AVI file is a specially allocated file used for capturing real-time video.
+ |
+| [Copyrighted](#Copyrighted) | Indicates the AVI file contains copyrighted data and software.
+ |
## Methods
| Method | Description |
@@ -48,13 +56,16 @@ public static final AviHeaderFlags HasIndex
Indicates the AVI file has an index.
+
### MustUseIndex {#MustUseIndex}
```
public static final AviHeaderFlags MustUseIndex
```
-Indicates that application should use the index, rather than the physical ordering of the chunks in the file, to determine the order of presentation of the data. For example, this flag could be used to create a list of frames for editing.
+Indicates that application should use the index, rather than the physical ordering of the chunks in the file,
+to determine the order of presentation of the data. For example, this flag could be used to create a list of frames for editing.
+
### IsInterleaved {#IsInterleaved}
```
@@ -64,6 +75,7 @@ public static final AviHeaderFlags IsInterleaved
Indicates the AVI file is interleaved.
+
### TrustCkType {#TrustCkType}
```
public static final AviHeaderFlags TrustCkType
@@ -72,13 +84,16 @@ public static final AviHeaderFlags TrustCkType
Use CKType to find key frames.
+
### WasCaptureFile {#WasCaptureFile}
```
public static final AviHeaderFlags WasCaptureFile
```
-Indicates the AVI file is a specially allocated file used for capturing real-time video. Applications should warn the user before writing over a file with this flag set because the user probably defragmented this file.
+Indicates the AVI file is a specially allocated file used for capturing real-time video.
+Applications should warn the user before writing over a file with this flag set because the user probably defragmented this file.
+
### Copyrighted {#Copyrighted}
```
@@ -86,7 +101,9 @@ public static final AviHeaderFlags Copyrighted
```
-Indicates the AVI file contains copyrighted data and software. When this flag is used, software should not permit the data to be duplicated.
+Indicates the AVI file contains copyrighted data and software.
+When this flag is used, software should not permit the data to be duplicated.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
@@ -121,6 +138,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -131,6 +149,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -146,6 +165,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +181,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -171,6 +192,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -181,6 +203,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/avirootpackage/_index.md b/english/java/com.groupdocs.metadata.core/avirootpackage/_index.md
index e831598848..367df50a11 100644
--- a/english/java/com.groupdocs.metadata.core/avirootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/avirootpackage/_index.md
@@ -17,16 +17,19 @@ public class AviRootPackage extends RootMetadataPackage implements IXmp
Represents the root package allowing working with metadata in an AVI video.
+
**Learn more**
- * [Working with metadata in AVI files][]
- * [Working with XMP metadata][]
+* [Working with metadata in AVI files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+AVI+files)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This code snippet shows how to read AVI header properties.
+
+This code snippet shows how to read AVI header properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputAvi)) {
> AviRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getHeader().getAviHeaderFlags());
@@ -41,19 +44,21 @@ This code snippet shows how to read AVI header properties.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in AVI files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+AVI+files
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getHeader()](#getHeader--) | Gets the AVI header package. |
-| [getRiffInfoPackage()](#getRiffInfoPackage--) | Gets the package containing RIFF Info tags. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getHeader()](#getHeader--) | Gets the AVI header package.
+ |
+| [getRiffInfoPackage()](#getRiffInfoPackage--) | Gets the package containing RIFF Info tags.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -62,15 +67,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -79,17 +87,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getHeader() {#getHeader--}
```
@@ -99,8 +110,10 @@ public final AviHeader getHeader()
Gets the AVI header package.
+
**Returns:**
[AviHeader](../../com.groupdocs.metadata.core/aviheader) - The AVI header package.
+
### getRiffInfoPackage() {#getRiffInfoPackage--}
```
public final RiffInfoPackage getRiffInfoPackage()
@@ -109,5 +122,7 @@ public final RiffInfoPackage getRiffInfoPackage()
Gets the package containing RIFF Info tags.
+
**Returns:**
[RiffInfoPackage](../../com.groupdocs.metadata.core/riffinfopackage) - The package containing RIFF Info tags.
+
diff --git a/english/java/com.groupdocs.metadata.core/bmpheaderpackage/_index.md b/english/java/com.groupdocs.metadata.core/bmpheaderpackage/_index.md
index bdcf92a507..06f0c0b86b 100644
--- a/english/java/com.groupdocs.metadata.core/bmpheaderpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/bmpheaderpackage/_index.md
@@ -14,21 +14,28 @@ public final class BmpHeaderPackage extends CustomPackage
Represents BMP header info.
+
**Learn more**
- * [Working with BMP metadata][]
+* [Working with BMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+BMP+metadata)
+
+
-[Working with BMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+BMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getHeaderSize()](#getHeaderSize--) | Gets the size of the header in bytes. |
-| [getBitsPerPixel()](#getBitsPerPixel--) | Gets the bits per pixel value. |
-| [getImageSize()](#getImageSize--) | Gets the bitmap raw data size in bytes. |
-| [getPlanes()](#getPlanes--) | Gets the number of planes. |
-| [getColorsImportant()](#getColorsImportant--) | Gets the number of important palette colors. |
+| [getHeaderSize()](#getHeaderSize--) | Gets the size of the header in bytes.
+ |
+| [getBitsPerPixel()](#getBitsPerPixel--) | Gets the bits per pixel value.
+ |
+| [getImageSize()](#getImageSize--) | Gets the bitmap raw data size in bytes.
+ |
+| [getPlanes()](#getPlanes--) | Gets the number of planes.
+ |
+| [getColorsImportant()](#getColorsImportant--) | Gets the number of important palette colors.
+ |
### getHeaderSize() {#getHeaderSize--}
```
public final long getHeaderSize()
@@ -37,8 +44,10 @@ public final long getHeaderSize()
Gets the size of the header in bytes.
+
**Returns:**
long - The size of the header in bytes.
+
### getBitsPerPixel() {#getBitsPerPixel--}
```
public final int getBitsPerPixel()
@@ -47,8 +56,10 @@ public final int getBitsPerPixel()
Gets the bits per pixel value.
+
**Returns:**
int - The bits per pixel value.
+
### getImageSize() {#getImageSize--}
```
public final long getImageSize()
@@ -57,8 +68,10 @@ public final long getImageSize()
Gets the bitmap raw data size in bytes.
+
**Returns:**
long - The bitmap raw data size in bytes.
+
### getPlanes() {#getPlanes--}
```
public final int getPlanes()
@@ -67,8 +80,10 @@ public final int getPlanes()
Gets the number of planes.
+
**Returns:**
int - The number of planes.
+
### getColorsImportant() {#getColorsImportant--}
```
public final long getColorsImportant()
@@ -77,5 +92,7 @@ public final long getColorsImportant()
Gets the number of important palette colors.
+
**Returns:**
long - The number of important palette colors.
+
diff --git a/english/java/com.groupdocs.metadata.core/bmprootpackage/_index.md b/english/java/com.groupdocs.metadata.core/bmprootpackage/_index.md
index 9ce34257fd..d9f7c55531 100644
--- a/english/java/com.groupdocs.metadata.core/bmprootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/bmprootpackage/_index.md
@@ -14,15 +14,18 @@ public class BmpRootPackage extends ImageRootPackage
Represents the root package intended to work with metadata in a BMP image.
+
**Learn more**
- * [Working with BMP metadata][]
+* [Working with BMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+BMP+metadata)
-This code sample shows how to read the header of a BMP file.
+
+This code sample shows how to read the header of a BMP file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputBmp)) {
> BmpRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getBmpHeader().getBitsPerPixel());
@@ -33,15 +36,15 @@ This code sample shows how to read the header of a BMP file.
> }
>
> ```
-> ```
+> ````
-[Working with BMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+BMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getBmpHeader()](#getBmpHeader--) | Gets the BMP header metadata package. |
+| [getBmpHeader()](#getBmpHeader--) | Gets the BMP header metadata package.
+ |
### getBmpHeader() {#getBmpHeader--}
```
public final BmpHeaderPackage getBmpHeader()
@@ -50,5 +53,7 @@ public final BmpHeaderPackage getBmpHeader()
Gets the BMP header metadata package.
+
**Returns:**
[BmpHeaderPackage](../../com.groupdocs.metadata.core/bmpheaderpackage) - The BMP header metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/byteorder/_index.md b/english/java/com.groupdocs.metadata.core/byteorder/_index.md
index f27628dee6..69493cfa28 100644
--- a/english/java/com.groupdocs.metadata.core/byteorder/_index.md
+++ b/english/java/com.groupdocs.metadata.core/byteorder/_index.md
@@ -16,13 +16,17 @@ public enum ByteOrder extends Enum implements IEnumValue
```
Defines various byte orders.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The byte order is unknown. |
-| [BigEndian](#BigEndian) | Big endian. |
-| [LittleEndian](#LittleEndian) | Little endian. |
+| [Unknown](#Unknown) | The byte order is unknown.
+ |
+| [BigEndian](#BigEndian) | Big endian.
+ |
+| [LittleEndian](#LittleEndian) | Little endian.
+ |
## Methods
| Method | Description |
@@ -44,6 +48,7 @@ public static final ByteOrder Unknown
The byte order is unknown.
+
### BigEndian {#BigEndian}
```
public static final ByteOrder BigEndian
@@ -52,6 +57,7 @@ public static final ByteOrder BigEndian
Big endian.
+
### LittleEndian {#LittleEndian}
```
public static final ByteOrder LittleEndian
@@ -60,6 +66,7 @@ public static final ByteOrder LittleEndian
Little endian.
+
### values() {#values--}
```
public static ByteOrder[] values()
@@ -118,6 +125,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +136,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +152,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +168,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +179,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/cadacadversion/_index.md b/english/java/com.groupdocs.metadata.core/cadacadversion/_index.md
index ddee15e1e4..dcfb228e0e 100644
--- a/english/java/com.groupdocs.metadata.core/cadacadversion/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cadacadversion/_index.md
@@ -16,21 +16,33 @@ public enum CadAcadVersion extends Enum implements IEnumValue
```
Defines AutoCAD drawing database version numbers.
+
## Fields
| Field | Description |
| --- | --- |
-| [None](#None) | Non-versioned. |
-| [Ac1006](#Ac1006) | AutoCAD drawing database R10. |
-| [Ac1009](#Ac1009) | AutoCAD drawing database R11 and R12. |
-| [Ac1012](#Ac1012) | AutoCAD drawing database R13. |
-| [Ac1014](#Ac1014) | AutoCAD drawing database R14. |
-| [Ac1015](#Ac1015) | AutoCAD drawing database AutoCAD 2000. |
-| [Ac1018](#Ac1018) | AutoCAD drawing database AutoCAD 2004. |
-| [Ac1021](#Ac1021) | AutoCAD drawing database AutoCAD 2007. |
-| [Ac1024](#Ac1024) | AutoCAD drawing database AutoCAD 2010. |
-| [Ac1027](#Ac1027) | AutoCAD drawing database AutoCAD 2013. |
-| [Ac1032](#Ac1032) | AutoCAD drawing database AutoCAD 2018. |
+| [None](#None) | Non-versioned.
+ |
+| [Ac1006](#Ac1006) | AutoCAD drawing database R10.
+ |
+| [Ac1009](#Ac1009) | AutoCAD drawing database R11 and R12.
+ |
+| [Ac1012](#Ac1012) | AutoCAD drawing database R13.
+ |
+| [Ac1014](#Ac1014) | AutoCAD drawing database R14.
+ |
+| [Ac1015](#Ac1015) | AutoCAD drawing database AutoCAD 2000.
+ |
+| [Ac1018](#Ac1018) | AutoCAD drawing database AutoCAD 2004.
+ |
+| [Ac1021](#Ac1021) | AutoCAD drawing database AutoCAD 2007.
+ |
+| [Ac1024](#Ac1024) | AutoCAD drawing database AutoCAD 2010.
+ |
+| [Ac1027](#Ac1027) | AutoCAD drawing database AutoCAD 2013.
+ |
+| [Ac1032](#Ac1032) | AutoCAD drawing database AutoCAD 2018.
+ |
## Methods
| Method | Description |
@@ -52,6 +64,7 @@ public static final CadAcadVersion None
Non-versioned.
+
### Ac1006 {#Ac1006}
```
public static final CadAcadVersion Ac1006
@@ -60,6 +73,7 @@ public static final CadAcadVersion Ac1006
AutoCAD drawing database R10.
+
### Ac1009 {#Ac1009}
```
public static final CadAcadVersion Ac1009
@@ -68,6 +82,7 @@ public static final CadAcadVersion Ac1009
AutoCAD drawing database R11 and R12.
+
### Ac1012 {#Ac1012}
```
public static final CadAcadVersion Ac1012
@@ -76,6 +91,7 @@ public static final CadAcadVersion Ac1012
AutoCAD drawing database R13.
+
### Ac1014 {#Ac1014}
```
public static final CadAcadVersion Ac1014
@@ -84,6 +100,7 @@ public static final CadAcadVersion Ac1014
AutoCAD drawing database R14.
+
### Ac1015 {#Ac1015}
```
public static final CadAcadVersion Ac1015
@@ -92,6 +109,7 @@ public static final CadAcadVersion Ac1015
AutoCAD drawing database AutoCAD 2000.
+
### Ac1018 {#Ac1018}
```
public static final CadAcadVersion Ac1018
@@ -100,6 +118,7 @@ public static final CadAcadVersion Ac1018
AutoCAD drawing database AutoCAD 2004.
+
### Ac1021 {#Ac1021}
```
public static final CadAcadVersion Ac1021
@@ -108,6 +127,7 @@ public static final CadAcadVersion Ac1021
AutoCAD drawing database AutoCAD 2007.
+
### Ac1024 {#Ac1024}
```
public static final CadAcadVersion Ac1024
@@ -116,6 +136,7 @@ public static final CadAcadVersion Ac1024
AutoCAD drawing database AutoCAD 2010.
+
### Ac1027 {#Ac1027}
```
public static final CadAcadVersion Ac1027
@@ -124,6 +145,7 @@ public static final CadAcadVersion Ac1027
AutoCAD drawing database AutoCAD 2013.
+
### Ac1032 {#Ac1032}
```
public static final CadAcadVersion Ac1032
@@ -132,6 +154,7 @@ public static final CadAcadVersion Ac1032
AutoCAD drawing database AutoCAD 2018.
+
### values() {#values--}
```
public static CadAcadVersion[] values()
@@ -190,6 +213,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -200,6 +224,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -215,6 +240,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -230,6 +256,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -240,5 +267,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/cadcustompropertypackage/_index.md b/english/java/com.groupdocs.metadata.core/cadcustompropertypackage/_index.md
index 7182669a78..c94f4aedaa 100644
--- a/english/java/com.groupdocs.metadata.core/cadcustompropertypackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cadcustompropertypackage/_index.md
@@ -13,3 +13,4 @@ public class CadCustomPropertyPackage extends CustomPackage
```
Represents a collection of custom CAD metadata properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/cadpackage/_index.md b/english/java/com.groupdocs.metadata.core/cadpackage/_index.md
index 0fd6d545d6..6945753688 100644
--- a/english/java/com.groupdocs.metadata.core/cadpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cadpackage/_index.md
@@ -14,30 +14,46 @@ public final class CadPackage extends CustomPackage
Represents CAD (Computer-aided design) metadata.
+
**Learn more**
- * [Working with CAD metadata][]
+* [Working with CAD metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata)
+
+
-[Working with CAD metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getAcadVersion()](#getAcadVersion--) | Gets the AutoCAD drawing database version number. |
-| [getHeight()](#getHeight--) | Gets the drawing height. |
-| [getWidth()](#getWidth--) | Gets the drawing width. |
-| [getAuthor()](#getAuthor--) | Gets the drawing author. |
-| [getComments()](#getComments--) | Gets the user comments. |
-| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last editor. |
-| [getRevisionNumber()](#getRevisionNumber--) | Gets the revision number. |
-| [getSubject()](#getSubject--) | Gets the subject. |
-| [getTitle()](#getTitle--) | Gets the title. |
-| [getCreatedDateTime()](#getCreatedDateTime--) | Gets the date and time when the drawing was created. |
-| [getModifiedDateTime()](#getModifiedDateTime--) | Gets the date and time when the drawing was modified. |
-| [getCustomProperties()](#getCustomProperties--) | Gets the package containing custom metadata properties. |
+| [getAcadVersion()](#getAcadVersion--) | Gets the AutoCAD drawing database version number.
+ |
+| [getHeight()](#getHeight--) | Gets the drawing height.
+ |
+| [getWidth()](#getWidth--) | Gets the drawing width.
+ |
+| [getAuthor()](#getAuthor--) | Gets the drawing author.
+ |
+| [getComments()](#getComments--) | Gets the user comments.
+ |
+| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last editor.
+ |
+| [getRevisionNumber()](#getRevisionNumber--) | Gets the revision number.
+ |
+| [getSubject()](#getSubject--) | Gets the subject.
+ |
+| [getTitle()](#getTitle--) | Gets the title.
+ |
+| [getCreatedDateTime()](#getCreatedDateTime--) | Gets the date and time when the drawing was created.
+ |
+| [getModifiedDateTime()](#getModifiedDateTime--) | Gets the date and time when the drawing was modified.
+ |
+| [getCustomProperties()](#getCustomProperties--) | Gets the package containing custom metadata properties.
+ |
### getAcadVersion() {#getAcadVersion--}
```
public final CadAcadVersion getAcadVersion()
@@ -46,8 +62,10 @@ public final CadAcadVersion getAcadVersion()
Gets the AutoCAD drawing database version number.
+
**Returns:**
[CadAcadVersion](../../com.groupdocs.metadata.core/cadacadversion) - The AutoCAD drawing database version number.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -56,8 +74,10 @@ public final int getHeight()
Gets the drawing height.
+
**Returns:**
int - The drawing height.
+
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -66,8 +86,10 @@ public final int getWidth()
Gets the drawing width.
+
**Returns:**
int - The drawing width.
+
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -76,8 +98,10 @@ public final String getAuthor()
Gets the drawing author.
+
**Returns:**
java.lang.String - The drawing author.
+
### getComments() {#getComments--}
```
public final String getComments()
@@ -86,8 +110,10 @@ public final String getComments()
Gets the user comments.
+
**Returns:**
java.lang.String - The user comments.
+
### getHyperlinkBase() {#getHyperlinkBase--}
```
public final String getHyperlinkBase()
@@ -96,8 +122,10 @@ public final String getHyperlinkBase()
Gets the hyperlink base.
+
**Returns:**
java.lang.String - The hyperlink base.
+
### getKeywords() {#getKeywords--}
```
public final String getKeywords()
@@ -106,8 +134,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### getLastSavedBy() {#getLastSavedBy--}
```
public final String getLastSavedBy()
@@ -116,8 +146,10 @@ public final String getLastSavedBy()
Gets the name of the last editor.
+
**Returns:**
java.lang.String - The name of the last editor.
+
### getRevisionNumber() {#getRevisionNumber--}
```
public final String getRevisionNumber()
@@ -126,8 +158,10 @@ public final String getRevisionNumber()
Gets the revision number.
+
**Returns:**
java.lang.String - The revision number.
+
### getSubject() {#getSubject--}
```
public final String getSubject()
@@ -136,8 +170,10 @@ public final String getSubject()
Gets the subject.
+
**Returns:**
java.lang.String - The subject.
+
### getTitle() {#getTitle--}
```
public final String getTitle()
@@ -146,8 +182,10 @@ public final String getTitle()
Gets the title.
+
**Returns:**
java.lang.String - The title.
+
### getCreatedDateTime() {#getCreatedDateTime--}
```
public final Date getCreatedDateTime()
@@ -156,8 +194,10 @@ public final Date getCreatedDateTime()
Gets the date and time when the drawing was created.
+
**Returns:**
java.util.Date - The date and time when the drawing was created.
+
### getModifiedDateTime() {#getModifiedDateTime--}
```
public final Date getModifiedDateTime()
@@ -166,8 +206,10 @@ public final Date getModifiedDateTime()
Gets the date and time when the drawing was modified.
+
**Returns:**
java.util.Date - The date and time when the drawing was modified.
+
### getCustomProperties() {#getCustomProperties--}
```
public final CadCustomPropertyPackage getCustomProperties()
@@ -176,5 +218,7 @@ public final CadCustomPropertyPackage getCustomProperties()
Gets the package containing custom metadata properties.
+
**Returns:**
[CadCustomPropertyPackage](../../com.groupdocs.metadata.core/cadcustompropertypackage) - The package containing custom metadata properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/cadrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/cadrootpackage/_index.md
index 993e30705f..412252704c 100644
--- a/english/java/com.groupdocs.metadata.core/cadrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cadrootpackage/_index.md
@@ -14,15 +14,18 @@ public abstract class CadRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a CAD drawing.
+
**Learn more**
- * [Working with CAD metadata][]
+* [Working with CAD metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata)
-This code sample shows how to read metadata of a CAD drawing.
+
+This code sample shows how to read metadata of a CAD drawing.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputDxf)) {
> CadRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getCadPackage().getAcadVersion());
@@ -37,15 +40,15 @@ This code sample shows how to read metadata of a CAD drawing.
> }
>
> ```
-> ```
+> ````
-[Working with CAD metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getCadPackage()](#getCadPackage--) | Gets the CAD metadata package. |
+| [getCadPackage()](#getCadPackage--) | Gets the CAD metadata package.
+ |
### getCadPackage() {#getCadPackage--}
```
public final CadPackage getCadPackage()
@@ -54,5 +57,7 @@ public final CadPackage getCadPackage()
Gets the CAD metadata package.
+
**Returns:**
[CadPackage](../../com.groupdocs.metadata.core/cadpackage) - The CAD metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/canoncamerasettingspackage/_index.md b/english/java/com.groupdocs.metadata.core/canoncamerasettingspackage/_index.md
index ad855be8a3..5140feac8f 100644
--- a/english/java/com.groupdocs.metadata.core/canoncamerasettingspackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/canoncamerasettingspackage/_index.md
@@ -13,32 +13,55 @@ public final class CanonCameraSettingsPackage extends CustomPackage
```
Represents CANON camera settings.
+
## Methods
| Method | Description |
| --- | --- |
-| [getMacroMode()](#getMacroMode--) | Gets the macro mode. |
-| [getSelfTimer()](#getSelfTimer--) | Gets the self timer. |
-| [getQuality()](#getQuality--) | Gets the quality. |
-| [getCanonFlashMode()](#getCanonFlashMode--) | Gets the canon flash mode. |
-| [getContinuousDrive()](#getContinuousDrive--) | Gets the continuous drive. |
-| [getFocusMode()](#getFocusMode--) | Gets the focus mode. |
-| [getRecordMode()](#getRecordMode--) | Gets the record mode. |
-| [getCanonImageSize()](#getCanonImageSize--) | Gets the size of the canon image. |
-| [getEasyMode()](#getEasyMode--) | Gets the easy mode. |
-| [getDigitalZoom()](#getDigitalZoom--) | Gets the digital zoom. |
-| [getContrast()](#getContrast--) | Gets the contrast. |
-| [getSaturation()](#getSaturation--) | Gets the saturation. |
-| [getSharpness()](#getSharpness--) | Gets the sharpness. |
-| [getCameraIso()](#getCameraIso--) | Gets the camera iso. |
-| [getMeteringMode()](#getMeteringMode--) | Gets the metering mode. |
-| [getFocusRange()](#getFocusRange--) | Gets the focus range. |
-| [getAFPoint()](#getAFPoint--) | Gets the AFPoint. |
-| [getCanonExposureMode()](#getCanonExposureMode--) | Gets the canon exposure mode. |
-| [getLensType()](#getLensType--) | Gets the type of the lens. |
-| [getMaxFocalLength()](#getMaxFocalLength--) | Gets the maximum length of the focal. |
-| [getMinFocalLength()](#getMinFocalLength--) | Gets the minimum length of the focal. |
-| [getImageStabilization()](#getImageStabilization--) | Gets the image stabilization. |
+| [getMacroMode()](#getMacroMode--) | Gets the macro mode.
+ |
+| [getSelfTimer()](#getSelfTimer--) | Gets the self timer.
+ |
+| [getQuality()](#getQuality--) | Gets the quality.
+ |
+| [getCanonFlashMode()](#getCanonFlashMode--) | Gets the canon flash mode.
+ |
+| [getContinuousDrive()](#getContinuousDrive--) | Gets the continuous drive.
+ |
+| [getFocusMode()](#getFocusMode--) | Gets the focus mode.
+ |
+| [getRecordMode()](#getRecordMode--) | Gets the record mode.
+ |
+| [getCanonImageSize()](#getCanonImageSize--) | Gets the size of the canon image.
+ |
+| [getEasyMode()](#getEasyMode--) | Gets the easy mode.
+ |
+| [getDigitalZoom()](#getDigitalZoom--) | Gets the digital zoom.
+ |
+| [getContrast()](#getContrast--) | Gets the contrast.
+ |
+| [getSaturation()](#getSaturation--) | Gets the saturation.
+ |
+| [getSharpness()](#getSharpness--) | Gets the sharpness.
+ |
+| [getCameraIso()](#getCameraIso--) | Gets the camera iso.
+ |
+| [getMeteringMode()](#getMeteringMode--) | Gets the metering mode.
+ |
+| [getFocusRange()](#getFocusRange--) | Gets the focus range.
+ |
+| [getAFPoint()](#getAFPoint--) | Gets the AFPoint.
+ |
+| [getCanonExposureMode()](#getCanonExposureMode--) | Gets the canon exposure mode.
+ |
+| [getLensType()](#getLensType--) | Gets the type of the lens.
+ |
+| [getMaxFocalLength()](#getMaxFocalLength--) | Gets the maximum length of the focal.
+ |
+| [getMinFocalLength()](#getMinFocalLength--) | Gets the minimum length of the focal.
+ |
+| [getImageStabilization()](#getImageStabilization--) | Gets the image stabilization.
+ |
### getMacroMode() {#getMacroMode--}
```
public final short getMacroMode()
@@ -47,8 +70,10 @@ public final short getMacroMode()
Gets the macro mode.
+
**Returns:**
short - The macro mode.
+
### getSelfTimer() {#getSelfTimer--}
```
public final short getSelfTimer()
@@ -57,8 +82,10 @@ public final short getSelfTimer()
Gets the self timer.
+
**Returns:**
short - The self timer.
+
### getQuality() {#getQuality--}
```
public final short getQuality()
@@ -67,8 +94,10 @@ public final short getQuality()
Gets the quality.
+
**Returns:**
short - The quality.
+
### getCanonFlashMode() {#getCanonFlashMode--}
```
public final short getCanonFlashMode()
@@ -77,8 +106,10 @@ public final short getCanonFlashMode()
Gets the canon flash mode.
+
**Returns:**
short - The canon flash mode.
+
### getContinuousDrive() {#getContinuousDrive--}
```
public final short getContinuousDrive()
@@ -87,8 +118,10 @@ public final short getContinuousDrive()
Gets the continuous drive.
+
**Returns:**
short - The continuous drive.
+
### getFocusMode() {#getFocusMode--}
```
public final short getFocusMode()
@@ -97,8 +130,10 @@ public final short getFocusMode()
Gets the focus mode.
+
**Returns:**
short - The focus mode.
+
### getRecordMode() {#getRecordMode--}
```
public final short getRecordMode()
@@ -107,8 +142,10 @@ public final short getRecordMode()
Gets the record mode.
+
**Returns:**
short - The record mode.
+
### getCanonImageSize() {#getCanonImageSize--}
```
public final short getCanonImageSize()
@@ -117,8 +154,10 @@ public final short getCanonImageSize()
Gets the size of the canon image.
+
**Returns:**
short - The size of the canon image.
+
### getEasyMode() {#getEasyMode--}
```
public final short getEasyMode()
@@ -127,8 +166,10 @@ public final short getEasyMode()
Gets the easy mode.
+
**Returns:**
short - The easy mode.
+
### getDigitalZoom() {#getDigitalZoom--}
```
public final short getDigitalZoom()
@@ -137,8 +178,10 @@ public final short getDigitalZoom()
Gets the digital zoom.
+
**Returns:**
short - The digital zoom.
+
### getContrast() {#getContrast--}
```
public final short getContrast()
@@ -147,8 +190,10 @@ public final short getContrast()
Gets the contrast.
+
**Returns:**
short - The contrast.
+
### getSaturation() {#getSaturation--}
```
public final short getSaturation()
@@ -157,8 +202,10 @@ public final short getSaturation()
Gets the saturation.
+
**Returns:**
short - The saturation.
+
### getSharpness() {#getSharpness--}
```
public final short getSharpness()
@@ -167,8 +214,10 @@ public final short getSharpness()
Gets the sharpness.
+
**Returns:**
short - The sharpness.
+
### getCameraIso() {#getCameraIso--}
```
public final short getCameraIso()
@@ -177,8 +226,10 @@ public final short getCameraIso()
Gets the camera iso.
+
**Returns:**
short - The camera iso.
+
### getMeteringMode() {#getMeteringMode--}
```
public final short getMeteringMode()
@@ -187,8 +238,10 @@ public final short getMeteringMode()
Gets the metering mode.
+
**Returns:**
short - The metering mode.
+
### getFocusRange() {#getFocusRange--}
```
public final short getFocusRange()
@@ -197,8 +250,10 @@ public final short getFocusRange()
Gets the focus range.
+
**Returns:**
short - The focus range.
+
### getAFPoint() {#getAFPoint--}
```
public final short getAFPoint()
@@ -207,8 +262,10 @@ public final short getAFPoint()
Gets the AFPoint.
+
**Returns:**
short - The AFPoint.
+
### getCanonExposureMode() {#getCanonExposureMode--}
```
public final short getCanonExposureMode()
@@ -217,8 +274,10 @@ public final short getCanonExposureMode()
Gets the canon exposure mode.
+
**Returns:**
short - The canon exposure mode.
+
### getLensType() {#getLensType--}
```
public final int getLensType()
@@ -227,8 +286,10 @@ public final int getLensType()
Gets the type of the lens.
+
**Returns:**
int - The type of the lens.
+
### getMaxFocalLength() {#getMaxFocalLength--}
```
public final int getMaxFocalLength()
@@ -237,8 +298,10 @@ public final int getMaxFocalLength()
Gets the maximum length of the focal.
+
**Returns:**
int - The maximum length of the focal.
+
### getMinFocalLength() {#getMinFocalLength--}
```
public final int getMinFocalLength()
@@ -247,8 +310,10 @@ public final int getMinFocalLength()
Gets the minimum length of the focal.
+
**Returns:**
int - The minimum length of the focal.
+
### getImageStabilization() {#getImageStabilization--}
```
public final short getImageStabilization()
@@ -257,5 +322,7 @@ public final short getImageStabilization()
Gets the image stabilization.
+
**Returns:**
short - The image stabilization.
+
diff --git a/english/java/com.groupdocs.metadata.core/canonmakernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/canonmakernotepackage/_index.md
index c08c4f4118..a07e5486c7 100644
--- a/english/java/com.groupdocs.metadata.core/canonmakernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/canonmakernotepackage/_index.md
@@ -13,18 +13,27 @@ public final class CanonMakerNotePackage extends MakerNotePackage
```
Represents CANON MakerNote metadata.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCameraSettings()](#getCameraSettings--) | Gets the camera settings. |
-| [getCanonImageType()](#getCanonImageType--) | Gets the Canon image type. |
-| [getCanonFirmwareVersion()](#getCanonFirmwareVersion--) | Gets the canon firmware version. |
-| [getFileNumber()](#getFileNumber--) | Gets the file number. |
-| [getOwnerName()](#getOwnerName--) | Gets the name of the owner. |
-| [getSerialNumber()](#getSerialNumber--) | Gets the serial number. |
-| [getCanonFileLength()](#getCanonFileLength--) | Gets the length of the canon file. |
-| [getCanonModelID()](#getCanonModelID--) | Gets the canon model identifier. |
+| [getCameraSettings()](#getCameraSettings--) | Gets the camera settings.
+ |
+| [getCanonImageType()](#getCanonImageType--) | Gets the Canon image type.
+ |
+| [getCanonFirmwareVersion()](#getCanonFirmwareVersion--) | Gets the canon firmware version.
+ |
+| [getFileNumber()](#getFileNumber--) | Gets the file number.
+ |
+| [getOwnerName()](#getOwnerName--) | Gets the name of the owner.
+ |
+| [getSerialNumber()](#getSerialNumber--) | Gets the serial number.
+ |
+| [getCanonFileLength()](#getCanonFileLength--) | Gets the length of the canon file.
+ |
+| [getCanonModelID()](#getCanonModelID--) | Gets the canon model identifier.
+ |
### getCameraSettings() {#getCameraSettings--}
```
public final CanonCameraSettingsPackage getCameraSettings()
@@ -33,8 +42,10 @@ public final CanonCameraSettingsPackage getCameraSettings()
Gets the camera settings.
+
**Returns:**
[CanonCameraSettingsPackage](../../com.groupdocs.metadata.core/canoncamerasettingspackage) - The camera settings.
+
### getCanonImageType() {#getCanonImageType--}
```
public final String getCanonImageType()
@@ -43,8 +54,10 @@ public final String getCanonImageType()
Gets the Canon image type.
+
**Returns:**
java.lang.String - The Canon type of the image.
+
### getCanonFirmwareVersion() {#getCanonFirmwareVersion--}
```
public final String getCanonFirmwareVersion()
@@ -53,8 +66,10 @@ public final String getCanonFirmwareVersion()
Gets the canon firmware version.
+
**Returns:**
java.lang.String - The canon firmware version.
+
### getFileNumber() {#getFileNumber--}
```
public final Long getFileNumber()
@@ -63,8 +78,10 @@ public final Long getFileNumber()
Gets the file number.
+
**Returns:**
java.lang.Long - The file number.
+
### getOwnerName() {#getOwnerName--}
```
public final String getOwnerName()
@@ -73,8 +90,10 @@ public final String getOwnerName()
Gets the name of the owner.
+
**Returns:**
java.lang.String - The name of the owner.
+
### getSerialNumber() {#getSerialNumber--}
```
public final Long getSerialNumber()
@@ -83,8 +102,10 @@ public final Long getSerialNumber()
Gets the serial number.
+
**Returns:**
java.lang.Long - The serial number.
+
### getCanonFileLength() {#getCanonFileLength--}
```
public final Long getCanonFileLength()
@@ -93,8 +114,10 @@ public final Long getCanonFileLength()
Gets the length of the canon file.
+
**Returns:**
java.lang.Long - The length of the canon file.
+
### getCanonModelID() {#getCanonModelID--}
```
public final Long getCanonModelID()
@@ -103,5 +126,7 @@ public final Long getCanonModelID()
Gets the canon model identifier.
+
**Returns:**
java.lang.Long - The canon model identifier.
+
diff --git a/english/java/com.groupdocs.metadata.core/cms/_index.md b/english/java/com.groupdocs.metadata.core/cms/_index.md
index 878ed3fb86..1a041c5e18 100644
--- a/english/java/com.groupdocs.metadata.core/cms/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cms/_index.md
@@ -12,16 +12,26 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class Cms extends DigitalSignature
```
-Represents a digital sign created with Cryptographic Message Syntax (CMS) - IETF's standard for cryptographically protected messages. CMS is based on the syntax of PKCS \#7, specified in RFC 5652. Please see https://tools.ietf.org/html/rfc5652 for more information.
+Represents a digital sign created with Cryptographic Message Syntax (CMS) - IETF's standard for cryptographically protected messages.
+CMS is based on the syntax of PKCS #7, specified in RFC 5652.
+Please see
+
+ for more information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getDigestAlgorithms()](#getDigestAlgorithms--) | Gets the array of message-digest algorithm identifiers. |
-| [getEncapsulatedContent()](#getEncapsulatedContent--) | Gets the signed content, consisting of a content type identifier and the content itself. |
-| [getCertificates()](#getCertificates--) | Gets the collection of certificates. |
-| [getSigners()](#getSigners--) | Gets the collection of per-signer information packages. |
-| [getSignTime()](#getSignTime--) | Gets the time at which the signer (purportedly) performed the signing process. |
+| [getDigestAlgorithms()](#getDigestAlgorithms--) | Gets the array of message-digest algorithm identifiers.
+ |
+| [getEncapsulatedContent()](#getEncapsulatedContent--) | Gets the signed content, consisting of a content type identifier and the content itself.
+ |
+| [getCertificates()](#getCertificates--) | Gets the collection of certificates.
+ |
+| [getSigners()](#getSigners--) | Gets the collection of per-signer information packages.
+ |
+| [getSignTime()](#getSignTime--) | Gets the time at which the signer (purportedly) performed the signing process.
+ |
### getDigestAlgorithms() {#getDigestAlgorithms--}
```
public final Oid[] getDigestAlgorithms()
@@ -30,8 +40,10 @@ public final Oid[] getDigestAlgorithms()
Gets the array of message-digest algorithm identifiers. There may be any number of elements in the collection, including zero.
+
**Returns:**
com.groupdocs.metadata.core.Oid[] - The array of message-digest algorithm identifiers.
+
### getEncapsulatedContent() {#getEncapsulatedContent--}
```
public final CmsEncapsulatedContent getEncapsulatedContent()
@@ -40,8 +52,10 @@ public final CmsEncapsulatedContent getEncapsulatedContent()
Gets the signed content, consisting of a content type identifier and the content itself.
+
**Returns:**
[CmsEncapsulatedContent](../../com.groupdocs.metadata.core/cmsencapsulatedcontent) - The signed content, consisting of a content type identifier and the content itself.
+
### getCertificates() {#getCertificates--}
```
public final CmsCertificate[] getCertificates()
@@ -50,12 +64,19 @@ public final CmsCertificate[] getCertificates()
Gets the collection of certificates.
+
**Returns:**
com.groupdocs.metadata.core.CmsCertificate[] - The collection of certificates.
---------------------
+
+
+*** ** * ** ***
It is intended that the set of certificates be sufficient to contain certification paths from a recognized "root" or "top-level certification authority" to all of the signers in the SignerInfo field.
+
+
+
+
### getSigners() {#getSigners--}
```
public final CmsSigner[] getSigners()
@@ -64,12 +85,19 @@ public final CmsSigner[] getSigners()
Gets the collection of per-signer information packages.
+
**Returns:**
com.groupdocs.metadata.core.CmsSigner[] - The collection of per-signer information packages.
---------------------
+
+
+*** ** * ** ***
There may be any number of elements in the collection, including zero.
+
+
+
+
### getSignTime() {#getSignTime--}
```
public Date getSignTime()
@@ -78,5 +106,7 @@ public Date getSignTime()
Gets the time at which the signer (purportedly) performed the signing process.
+
**Returns:**
java.util.Date - The time at which the signer (purportedly) performed the signing process.
+
diff --git a/english/java/com.groupdocs.metadata.core/cmsattribute/_index.md b/english/java/com.groupdocs.metadata.core/cmsattribute/_index.md
index 75d1734633..786504dca0 100644
--- a/english/java/com.groupdocs.metadata.core/cmsattribute/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cmsattribute/_index.md
@@ -13,12 +13,15 @@ public class CmsAttribute extends CustomPackage
```
Represents a CMS signer info attribute.
+
## Methods
| Method | Description |
| --- | --- |
-| [getOid()](#getOid--) | Gets the attribute OID. |
-| [getValue()](#getValue--) | Gets the attribute value represented as a string. |
+| [getOid()](#getOid--) | Gets the attribute OID.
+ |
+| [getValue()](#getValue--) | Gets the attribute value represented as a string.
+ |
### getOid() {#getOid--}
```
public final Oid getOid()
@@ -27,8 +30,10 @@ public final Oid getOid()
Gets the attribute OID.
+
**Returns:**
[Oid](../../com.groupdocs.metadata.core/oid) - The attribute OID.
+
### getValue() {#getValue--}
```
public final String getValue()
@@ -37,5 +42,7 @@ public final String getValue()
Gets the attribute value represented as a string.
+
**Returns:**
java.lang.String - The attribute value represented as a string.
+
diff --git a/english/java/com.groupdocs.metadata.core/cmscertificate/_index.md b/english/java/com.groupdocs.metadata.core/cmscertificate/_index.md
index cb09bc3dce..4f3344b1e1 100644
--- a/english/java/com.groupdocs.metadata.core/cmscertificate/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cmscertificate/_index.md
@@ -13,13 +13,17 @@ public class CmsCertificate extends CustomPackage
```
Represents a CMS certificate.
+
## Methods
| Method | Description |
| --- | --- |
-| [getNotAfter()](#getNotAfter--) | Gets the date in local time after which a certificate is no longer valid. |
-| [getNotBefore()](#getNotBefore--) | Gets the date in local time on which a certificate becomes valid. |
-| [getRawData()](#getRawData--) | Gets the raw data of this certificate. |
+| [getNotAfter()](#getNotAfter--) | Gets the date in local time after which a certificate is no longer valid.
+ |
+| [getNotBefore()](#getNotBefore--) | Gets the date in local time on which a certificate becomes valid.
+ |
+| [getRawData()](#getRawData--) | Gets the raw data of this certificate.
+ |
### getNotAfter() {#getNotAfter--}
```
public final Date getNotAfter()
@@ -28,8 +32,10 @@ public final Date getNotAfter()
Gets the date in local time after which a certificate is no longer valid.
+
**Returns:**
java.util.Date - The date in local time after which a certificate is no longer valid.
+
### getNotBefore() {#getNotBefore--}
```
public final Date getNotBefore()
@@ -38,8 +44,10 @@ public final Date getNotBefore()
Gets the date in local time on which a certificate becomes valid.
+
**Returns:**
java.util.Date - The date in local time on which a certificate becomes valid.
+
### getRawData() {#getRawData--}
```
public final byte[] getRawData()
@@ -48,5 +56,7 @@ public final byte[] getRawData()
Gets the raw data of this certificate.
+
**Returns:**
byte[] - The raw data of this certificate.
+
diff --git a/english/java/com.groupdocs.metadata.core/cmsencapsulatedcontent/_index.md b/english/java/com.groupdocs.metadata.core/cmsencapsulatedcontent/_index.md
index f2680d0c73..f5e1f6a26f 100644
--- a/english/java/com.groupdocs.metadata.core/cmsencapsulatedcontent/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cmsencapsulatedcontent/_index.md
@@ -13,12 +13,15 @@ public class CmsEncapsulatedContent extends CustomPackage
```
Represents a signed content container, consisting of a content type identifier and the content itself.
+
## Methods
| Method | Description |
| --- | --- |
-| [getContentType()](#getContentType--) | Gets the object identifier uniquely specifies the content type. |
-| [getContentRawData()](#getContentRawData--) | Gets the raw data of content info. |
+| [getContentType()](#getContentType--) | Gets the object identifier uniquely specifies the content type.
+ |
+| [getContentRawData()](#getContentRawData--) | Gets the raw data of content info.
+ |
### getContentType() {#getContentType--}
```
public final Oid getContentType()
@@ -27,8 +30,10 @@ public final Oid getContentType()
Gets the object identifier uniquely specifies the content type.
+
**Returns:**
[Oid](../../com.groupdocs.metadata.core/oid) - The object identifier uniquely specifies the content type.
+
### getContentRawData() {#getContentRawData--}
```
public final byte[] getContentRawData()
@@ -37,5 +42,7 @@ public final byte[] getContentRawData()
Gets the raw data of content info.
+
**Returns:**
byte[] - The raw data of content info.
+
diff --git a/english/java/com.groupdocs.metadata.core/cmspackage/_index.md b/english/java/com.groupdocs.metadata.core/cmspackage/_index.md
index b632339e50..0ad919aaaa 100644
--- a/english/java/com.groupdocs.metadata.core/cmspackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cmspackage/_index.md
@@ -13,12 +13,15 @@ public final class CmsPackage extends CustomPackage
```
Represents a CMS digital signature metadata package.
+
## Methods
| Method | Description |
| --- | --- |
-| [getSignatures()](#getSignatures--) | Gets an array of the signatures extracted from the file. |
-| [getFlags()](#getFlags--) | Gets the digital signature flags. |
+| [getSignatures()](#getSignatures--) | Gets an array of the signatures extracted from the file.
+ |
+| [getFlags()](#getFlags--) | Gets the digital signature flags.
+ |
### getSignatures() {#getSignatures--}
```
public final Cms[] getSignatures()
@@ -27,8 +30,10 @@ public final Cms[] getSignatures()
Gets an array of the signatures extracted from the file.
+
**Returns:**
com.groupdocs.metadata.core.Cms[] - An array of the signatures extracted from the file.
+
### getFlags() {#getFlags--}
```
public final Integer getFlags()
@@ -37,5 +42,7 @@ public final Integer getFlags()
Gets the digital signature flags.
+
**Returns:**
java.lang.Integer - The digital signature flags.
+
diff --git a/english/java/com.groupdocs.metadata.core/cmssigner/_index.md b/english/java/com.groupdocs.metadata.core/cmssigner/_index.md
index 169c0cfa14..d7ea7df28f 100644
--- a/english/java/com.groupdocs.metadata.core/cmssigner/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cmssigner/_index.md
@@ -13,17 +13,25 @@ public class CmsSigner extends CustomPackage
```
Represents CMS per-signer information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getSignerIdentifier()](#getSignerIdentifier--) | Gets the signer's certificate (and thereby the signer's public key) raw data. |
-| [getDigestAlgorithm()](#getDigestAlgorithm--) | Gets the message digest algorithm, and any associated parameters, used by the signer. |
-| [getSignedAttributes()](#getSignedAttributes--) | Gets the collection of attributes that are signed. |
-| [getSignatureAlgorithm()](#getSignatureAlgorithm--) | Gets the signature algorithm, and any associated parameters, used by the signer to generate the digital signature. |
-| [getSignatureValue()](#getSignatureValue--) | Gets the result of digital signature generation, using the message digest and the signer's private key. |
-| [getUnsignedAttributes()](#getUnsignedAttributes--) | Gets the collection of attributes that are not signed. |
-| [getSigningTime()](#getSigningTime--) | Gets the time at which the signer (purportedly) performed the signing process. |
+| [getSignerIdentifier()](#getSignerIdentifier--) | Gets the signer's certificate (and thereby the signer's public key) raw data.
+ |
+| [getDigestAlgorithm()](#getDigestAlgorithm--) | Gets the message digest algorithm, and any associated parameters, used by the signer.
+ |
+| [getSignedAttributes()](#getSignedAttributes--) | Gets the collection of attributes that are signed.
+ |
+| [getSignatureAlgorithm()](#getSignatureAlgorithm--) | Gets the signature algorithm, and any associated parameters, used by the signer to generate the digital signature.
+ |
+| [getSignatureValue()](#getSignatureValue--) | Gets the result of digital signature generation, using the message digest and the signer's private key.
+ |
+| [getUnsignedAttributes()](#getUnsignedAttributes--) | Gets the collection of attributes that are not signed.
+ |
+| [getSigningTime()](#getSigningTime--) | Gets the time at which the signer (purportedly) performed the signing process.
+ |
### getSignerIdentifier() {#getSignerIdentifier--}
```
public final byte[] getSignerIdentifier()
@@ -32,8 +40,10 @@ public final byte[] getSignerIdentifier()
Gets the signer's certificate (and thereby the signer's public key) raw data.
+
**Returns:**
byte[] - The signer's certificate (and thereby the signer's public key) raw data.
+
### getDigestAlgorithm() {#getDigestAlgorithm--}
```
public final Oid getDigestAlgorithm()
@@ -42,8 +52,10 @@ public final Oid getDigestAlgorithm()
Gets the message digest algorithm, and any associated parameters, used by the signer.
+
**Returns:**
[Oid](../../com.groupdocs.metadata.core/oid) - The message digest algorithm, and any associated parameters, used by the signer.
+
### getSignedAttributes() {#getSignedAttributes--}
```
public final CmsAttribute[] getSignedAttributes()
@@ -52,8 +64,10 @@ public final CmsAttribute[] getSignedAttributes()
Gets the collection of attributes that are signed.
+
**Returns:**
com.groupdocs.metadata.core.CmsAttribute[] - The collection of attributes that are signed.
+
### getSignatureAlgorithm() {#getSignatureAlgorithm--}
```
public final Oid getSignatureAlgorithm()
@@ -62,8 +76,10 @@ public final Oid getSignatureAlgorithm()
Gets the signature algorithm, and any associated parameters, used by the signer to generate the digital signature.
+
**Returns:**
[Oid](../../com.groupdocs.metadata.core/oid) - The signature algorithm, and any associated parameters, used by the signer to generate the digital signature.
+
### getSignatureValue() {#getSignatureValue--}
```
public final String getSignatureValue()
@@ -72,8 +88,10 @@ public final String getSignatureValue()
Gets the result of digital signature generation, using the message digest and the signer's private key.
+
**Returns:**
java.lang.String - The result of digital signature generation, using the message digest and the signer's private key.
+
### getUnsignedAttributes() {#getUnsignedAttributes--}
```
public final CmsAttribute[] getUnsignedAttributes()
@@ -82,8 +100,10 @@ public final CmsAttribute[] getUnsignedAttributes()
Gets the collection of attributes that are not signed.
+
**Returns:**
com.groupdocs.metadata.core.CmsAttribute[] - The collection of attributes that are not signed.
+
### getSigningTime() {#getSigningTime--}
```
public final Date getSigningTime()
@@ -92,5 +112,7 @@ public final Date getSigningTime()
Gets the time at which the signer (purportedly) performed the signing process.
+
**Returns:**
java.util.Date - The time at which the signer (purportedly) performed the signing process.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2afconfigpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2afconfigpackage/_index.md
index fe64579521..77d31eac58 100644
--- a/english/java/com.groupdocs.metadata.core/cr2afconfigpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2afconfigpackage/_index.md
@@ -13,41 +13,67 @@ public final class Cr2AFConfigPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2AFConfigPackage()](#Cr2AFConfigPackage--) | Initializes a new instance of the Cr2AFConfigPackage class. |
+| [Cr2AFConfigPackage()](#Cr2AFConfigPackage--) | Initializes a new instance of the
+Cr2AFConfigPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAFConfigTool()](#getAFConfigTool--) | Gets the AFConfigTool. |
-| [getAFTrackingSensitivity()](#getAFTrackingSensitivity--) | Gets the AFTrackingSensitivity. |
-| [getAFAccelDecelTracking()](#getAFAccelDecelTracking--) | Gets the AFAccelDecelTracking. |
-| [getAFPointSwitching()](#getAFPointSwitching--) | Gets the AFPointSwitching. |
-| [getAIServoFirstImage()](#getAIServoFirstImage--) | Gets the AIServoFirstImage. |
-| [getAIServoSecondImage()](#getAIServoSecondImage--) | Gets the AIServoSecondImage. |
-| [getUSMLensElectronicMF()](#getUSMLensElectronicMF--) | Gets the USMLensElectronicMF. |
-| [getAFAssistBeam()](#getAFAssistBeam--) | Gets the AFAssistBeam. |
-| [getOneShotAFRelease()](#getOneShotAFRelease--) | Gets the OneShotAFRelease. |
-| [getAutoAFPointSelEOSiTRAF()](#getAutoAFPointSelEOSiTRAF--) | Gets the AutoAFPointSelEOSiTRAF. |
-| [getLensDriveWhenAFImpossible()](#getLensDriveWhenAFImpossible--) | Gets the LensDriveWhenAFImpossible. |
-| [getSelectAFAreaSelectionMode()](#getSelectAFAreaSelectionMode--) | Gets the SelectAFAreaSelectionMode. |
-| [getAFAreaSelectionMethod()](#getAFAreaSelectionMethod--) | Gets the AFAreaSelectionMethod. |
-| [getOrientationLinkedAF()](#getOrientationLinkedAF--) | Gets the OrientationLinkedAF. |
-| [getManualAFPointSelPattern()](#getManualAFPointSelPattern--) | Gets the ManualAFPointSelPattern. |
-| [getAFPointDisplayDuringFocus()](#getAFPointDisplayDuringFocus--) | Gets the AFPointDisplayDuringFocus. |
-| [getVFDisplayIllumination()](#getVFDisplayIllumination--) | Gets the VFDisplayIllumination. |
-| [getAFStatusViewfinder()](#getAFStatusViewfinder--) | Gets the AFStatusViewfinder. |
-| [getInitialAFPointInServo()](#getInitialAFPointInServo--) | Gets the InitialAFPointInServo. |
+| [getAFConfigTool()](#getAFConfigTool--) | Gets the AFConfigTool.
+ |
+| [getAFTrackingSensitivity()](#getAFTrackingSensitivity--) | Gets the AFTrackingSensitivity.
+ |
+| [getAFAccelDecelTracking()](#getAFAccelDecelTracking--) | Gets the AFAccelDecelTracking.
+ |
+| [getAFPointSwitching()](#getAFPointSwitching--) | Gets the AFPointSwitching.
+ |
+| [getAIServoFirstImage()](#getAIServoFirstImage--) | Gets the AIServoFirstImage.
+ |
+| [getAIServoSecondImage()](#getAIServoSecondImage--) | Gets the AIServoSecondImage.
+ |
+| [getUSMLensElectronicMF()](#getUSMLensElectronicMF--) | Gets the USMLensElectronicMF.
+ |
+| [getAFAssistBeam()](#getAFAssistBeam--) | Gets the AFAssistBeam.
+ |
+| [getOneShotAFRelease()](#getOneShotAFRelease--) | Gets the OneShotAFRelease.
+ |
+| [getAutoAFPointSelEOSiTRAF()](#getAutoAFPointSelEOSiTRAF--) | Gets the AutoAFPointSelEOSiTRAF.
+ |
+| [getLensDriveWhenAFImpossible()](#getLensDriveWhenAFImpossible--) | Gets the LensDriveWhenAFImpossible.
+ |
+| [getSelectAFAreaSelectionMode()](#getSelectAFAreaSelectionMode--) | Gets the SelectAFAreaSelectionMode.
+ |
+| [getAFAreaSelectionMethod()](#getAFAreaSelectionMethod--) | Gets the AFAreaSelectionMethod.
+ |
+| [getOrientationLinkedAF()](#getOrientationLinkedAF--) | Gets the OrientationLinkedAF.
+ |
+| [getManualAFPointSelPattern()](#getManualAFPointSelPattern--) | Gets the ManualAFPointSelPattern.
+ |
+| [getAFPointDisplayDuringFocus()](#getAFPointDisplayDuringFocus--) | Gets the AFPointDisplayDuringFocus.
+ |
+| [getVFDisplayIllumination()](#getVFDisplayIllumination--) | Gets the VFDisplayIllumination.
+ |
+| [getAFStatusViewfinder()](#getAFStatusViewfinder--) | Gets the AFStatusViewfinder.
+ |
+| [getInitialAFPointInServo()](#getInitialAFPointInServo--) | Gets the InitialAFPointInServo.
+ |
### Cr2AFConfigPackage() {#Cr2AFConfigPackage--}
```
public Cr2AFConfigPackage()
```
-Initializes a new instance of the Cr2AFConfigPackage class.
+Initializes a new instance of the
+Cr2AFConfigPackage
+ class.
+
### getAFConfigTool() {#getAFConfigTool--}
```
@@ -57,8 +83,10 @@ public final int getAFConfigTool()
Gets the AFConfigTool.
+
**Returns:**
int - The AFConfigTool.
+
### getAFTrackingSensitivity() {#getAFTrackingSensitivity--}
```
public final int getAFTrackingSensitivity()
@@ -67,8 +95,10 @@ public final int getAFTrackingSensitivity()
Gets the AFTrackingSensitivity.
+
**Returns:**
int - The AFTrackingSensitivity.
+
### getAFAccelDecelTracking() {#getAFAccelDecelTracking--}
```
public final int getAFAccelDecelTracking()
@@ -77,8 +107,10 @@ public final int getAFAccelDecelTracking()
Gets the AFAccelDecelTracking.
+
**Returns:**
int - The AFAccelDecelTracking.
+
### getAFPointSwitching() {#getAFPointSwitching--}
```
public final int getAFPointSwitching()
@@ -87,8 +119,10 @@ public final int getAFPointSwitching()
Gets the AFPointSwitching.
+
**Returns:**
int - The AFPointSwitching.
+
### getAIServoFirstImage() {#getAIServoFirstImage--}
```
public final int getAIServoFirstImage()
@@ -97,8 +131,10 @@ public final int getAIServoFirstImage()
Gets the AIServoFirstImage.
+
**Returns:**
int - The AIServoFirstImage.
+
### getAIServoSecondImage() {#getAIServoSecondImage--}
```
public final int getAIServoSecondImage()
@@ -107,8 +143,10 @@ public final int getAIServoSecondImage()
Gets the AIServoSecondImage.
+
**Returns:**
int - The AIServoSecondImage.
+
### getUSMLensElectronicMF() {#getUSMLensElectronicMF--}
```
public final int getUSMLensElectronicMF()
@@ -117,8 +155,10 @@ public final int getUSMLensElectronicMF()
Gets the USMLensElectronicMF.
+
**Returns:**
int - The USMLensElectronicMF.
+
### getAFAssistBeam() {#getAFAssistBeam--}
```
public final int getAFAssistBeam()
@@ -127,8 +167,10 @@ public final int getAFAssistBeam()
Gets the AFAssistBeam.
+
**Returns:**
int - The AFAssistBeam.
+
### getOneShotAFRelease() {#getOneShotAFRelease--}
```
public final int getOneShotAFRelease()
@@ -137,8 +179,10 @@ public final int getOneShotAFRelease()
Gets the OneShotAFRelease.
+
**Returns:**
int - The OneShotAFRelease.
+
### getAutoAFPointSelEOSiTRAF() {#getAutoAFPointSelEOSiTRAF--}
```
public final int getAutoAFPointSelEOSiTRAF()
@@ -147,8 +191,10 @@ public final int getAutoAFPointSelEOSiTRAF()
Gets the AutoAFPointSelEOSiTRAF.
+
**Returns:**
int - The AutoAFPointSelEOSiTRAF.
+
### getLensDriveWhenAFImpossible() {#getLensDriveWhenAFImpossible--}
```
public final int getLensDriveWhenAFImpossible()
@@ -157,8 +203,10 @@ public final int getLensDriveWhenAFImpossible()
Gets the LensDriveWhenAFImpossible.
+
**Returns:**
int - The LensDriveWhenAFImpossible.
+
### getSelectAFAreaSelectionMode() {#getSelectAFAreaSelectionMode--}
```
public final int getSelectAFAreaSelectionMode()
@@ -167,8 +215,10 @@ public final int getSelectAFAreaSelectionMode()
Gets the SelectAFAreaSelectionMode.
+
**Returns:**
int - The SelectAFAreaSelectionMode.
+
### getAFAreaSelectionMethod() {#getAFAreaSelectionMethod--}
```
public final int getAFAreaSelectionMethod()
@@ -177,8 +227,10 @@ public final int getAFAreaSelectionMethod()
Gets the AFAreaSelectionMethod.
+
**Returns:**
int - The AFAreaSelectionMethod.
+
### getOrientationLinkedAF() {#getOrientationLinkedAF--}
```
public final int getOrientationLinkedAF()
@@ -187,8 +239,10 @@ public final int getOrientationLinkedAF()
Gets the OrientationLinkedAF.
+
**Returns:**
int - The OrientationLinkedAF.
+
### getManualAFPointSelPattern() {#getManualAFPointSelPattern--}
```
public final int getManualAFPointSelPattern()
@@ -197,8 +251,10 @@ public final int getManualAFPointSelPattern()
Gets the ManualAFPointSelPattern.
+
**Returns:**
int - The ManualAFPointSelPattern.
+
### getAFPointDisplayDuringFocus() {#getAFPointDisplayDuringFocus--}
```
public final int getAFPointDisplayDuringFocus()
@@ -207,8 +263,10 @@ public final int getAFPointDisplayDuringFocus()
Gets the AFPointDisplayDuringFocus.
+
**Returns:**
int - The AFPointDisplayDuringFocus.
+
### getVFDisplayIllumination() {#getVFDisplayIllumination--}
```
public final int getVFDisplayIllumination()
@@ -217,8 +275,10 @@ public final int getVFDisplayIllumination()
Gets the VFDisplayIllumination.
+
**Returns:**
int - The VFDisplayIllumination.
+
### getAFStatusViewfinder() {#getAFStatusViewfinder--}
```
public final int getAFStatusViewfinder()
@@ -227,8 +287,10 @@ public final int getAFStatusViewfinder()
Gets the AFStatusViewfinder.
+
**Returns:**
int - The AFStatusViewfinder.
+
### getInitialAFPointInServo() {#getInitialAFPointInServo--}
```
public final int getInitialAFPointInServo()
@@ -237,5 +299,7 @@ public final int getInitialAFPointInServo()
Gets the InitialAFPointInServo.
+
**Returns:**
int - The InitialAFPointInServo.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2afinfo2package/_index.md b/english/java/com.groupdocs.metadata.core/cr2afinfo2package/_index.md
index a2fe40ba09..549e1ce07d 100644
--- a/english/java/com.groupdocs.metadata.core/cr2afinfo2package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2afinfo2package/_index.md
@@ -13,37 +13,59 @@ public final class Cr2AFInfo2Package extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2AFInfo2Package()](#Cr2AFInfo2Package--) | Initializes a new instance of the Cr2AFInfo2Package class. |
+| [Cr2AFInfo2Package()](#Cr2AFInfo2Package--) | Initializes a new instance of the
+Cr2AFInfo2Package
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAFInfoSize()](#getAFInfoSize--) | Gets the AFInfoSize. |
-| [getAFAreaMode()](#getAFAreaMode--) | Gets the AFAreaMode. |
-| [getNumAFPoints()](#getNumAFPoints--) | Gets the NumAFPoints. |
-| [getValidAFPoints()](#getValidAFPoints--) | Gets the ValidAFPoints. |
-| [getCanonImageWidth()](#getCanonImageWidth--) | Gets the CanonImageWidth. |
-| [getCanonImageHeight()](#getCanonImageHeight--) | Gets the CanonImageHeight. |
-| [getAFImageWidth()](#getAFImageWidth--) | Gets the AFImageWidth. |
-| [getAFImageHeight()](#getAFImageHeight--) | Gets the AFImageHeight. |
-| [getAFAreaWidths()](#getAFAreaWidths--) | Gets the AFAreaWidths. |
-| [getAFAreaHeights()](#getAFAreaHeights--) | Gets the AFAreaHeights. |
-| [getAFAreaXPositions()](#getAFAreaXPositions--) | Gets the AFAreaXPositions. |
-| [getAFAreaYPositions()](#getAFAreaYPositions--) | Gets the AFAreaYPositions. |
-| [getAFPointsInFocus()](#getAFPointsInFocus--) | Gets the AFPointsInFocus. |
-| [getAFPointsSelected()](#getAFPointsSelected--) | Gets the AFPointsSelected. |
-| [getPrimaryAFPoint()](#getPrimaryAFPoint--) | Gets the PrimaryAFPoint. |
+| [getAFInfoSize()](#getAFInfoSize--) | Gets the AFInfoSize.
+ |
+| [getAFAreaMode()](#getAFAreaMode--) | Gets the AFAreaMode.
+ |
+| [getNumAFPoints()](#getNumAFPoints--) | Gets the NumAFPoints.
+ |
+| [getValidAFPoints()](#getValidAFPoints--) | Gets the ValidAFPoints.
+ |
+| [getCanonImageWidth()](#getCanonImageWidth--) | Gets the CanonImageWidth.
+ |
+| [getCanonImageHeight()](#getCanonImageHeight--) | Gets the CanonImageHeight.
+ |
+| [getAFImageWidth()](#getAFImageWidth--) | Gets the AFImageWidth.
+ |
+| [getAFImageHeight()](#getAFImageHeight--) | Gets the AFImageHeight.
+ |
+| [getAFAreaWidths()](#getAFAreaWidths--) | Gets the AFAreaWidths.
+ |
+| [getAFAreaHeights()](#getAFAreaHeights--) | Gets the AFAreaHeights.
+ |
+| [getAFAreaXPositions()](#getAFAreaXPositions--) | Gets the AFAreaXPositions.
+ |
+| [getAFAreaYPositions()](#getAFAreaYPositions--) | Gets the AFAreaYPositions.
+ |
+| [getAFPointsInFocus()](#getAFPointsInFocus--) | Gets the AFPointsInFocus.
+ |
+| [getAFPointsSelected()](#getAFPointsSelected--) | Gets the AFPointsSelected.
+ |
+| [getPrimaryAFPoint()](#getPrimaryAFPoint--) | Gets the PrimaryAFPoint.
+ |
### Cr2AFInfo2Package() {#Cr2AFInfo2Package--}
```
public Cr2AFInfo2Package()
```
-Initializes a new instance of the Cr2AFInfo2Package class.
+Initializes a new instance of the
+Cr2AFInfo2Package
+ class.
+
### getAFInfoSize() {#getAFInfoSize--}
```
@@ -53,8 +75,10 @@ public final int getAFInfoSize()
Gets the AFInfoSize.
+
**Returns:**
int - The AFInfoSize.
+
### getAFAreaMode() {#getAFAreaMode--}
```
public final int getAFAreaMode()
@@ -63,8 +87,10 @@ public final int getAFAreaMode()
Gets the AFAreaMode.
+
**Returns:**
int - The AFAreaMode.
+
### getNumAFPoints() {#getNumAFPoints--}
```
public final int getNumAFPoints()
@@ -73,8 +99,10 @@ public final int getNumAFPoints()
Gets the NumAFPoints.
+
**Returns:**
int - The NumAFPoints.
+
### getValidAFPoints() {#getValidAFPoints--}
```
public final int getValidAFPoints()
@@ -83,8 +111,10 @@ public final int getValidAFPoints()
Gets the ValidAFPoints.
+
**Returns:**
int - The ValidAFPoints.
+
### getCanonImageWidth() {#getCanonImageWidth--}
```
public final int getCanonImageWidth()
@@ -93,8 +123,10 @@ public final int getCanonImageWidth()
Gets the CanonImageWidth.
+
**Returns:**
int - The CanonImageWidth.
+
### getCanonImageHeight() {#getCanonImageHeight--}
```
public final int getCanonImageHeight()
@@ -103,8 +135,10 @@ public final int getCanonImageHeight()
Gets the CanonImageHeight.
+
**Returns:**
int - The CanonImageHeight.
+
### getAFImageWidth() {#getAFImageWidth--}
```
public final int getAFImageWidth()
@@ -113,8 +147,10 @@ public final int getAFImageWidth()
Gets the AFImageWidth.
+
**Returns:**
int - The AFImageWidth.
+
### getAFImageHeight() {#getAFImageHeight--}
```
public final int getAFImageHeight()
@@ -123,8 +159,10 @@ public final int getAFImageHeight()
Gets the AFImageHeight.
+
**Returns:**
int - The AFImageHeight.
+
### getAFAreaWidths() {#getAFAreaWidths--}
```
public final int getAFAreaWidths()
@@ -133,8 +171,10 @@ public final int getAFAreaWidths()
Gets the AFAreaWidths.
+
**Returns:**
int - The AFAreaWidths.
+
### getAFAreaHeights() {#getAFAreaHeights--}
```
public final int getAFAreaHeights()
@@ -143,8 +183,10 @@ public final int getAFAreaHeights()
Gets the AFAreaHeights.
+
**Returns:**
int - The AFAreaHeights.
+
### getAFAreaXPositions() {#getAFAreaXPositions--}
```
public final int getAFAreaXPositions()
@@ -153,8 +195,10 @@ public final int getAFAreaXPositions()
Gets the AFAreaXPositions.
+
**Returns:**
int - The AFAreaXPositions.
+
### getAFAreaYPositions() {#getAFAreaYPositions--}
```
public final int getAFAreaYPositions()
@@ -163,8 +207,10 @@ public final int getAFAreaYPositions()
Gets the AFAreaYPositions.
+
**Returns:**
int - The AFAreaYPositions.
+
### getAFPointsInFocus() {#getAFPointsInFocus--}
```
public final int getAFPointsInFocus()
@@ -173,8 +219,10 @@ public final int getAFPointsInFocus()
Gets the AFPointsInFocus.
+
**Returns:**
int - The AFPointsInFocus.
+
### getAFPointsSelected() {#getAFPointsSelected--}
```
public final int getAFPointsSelected()
@@ -183,8 +231,10 @@ public final int getAFPointsSelected()
Gets the AFPointsSelected.
+
**Returns:**
int - The AFPointsSelected.
+
### getPrimaryAFPoint() {#getPrimaryAFPoint--}
```
public final int getPrimaryAFPoint()
@@ -193,5 +243,7 @@ public final int getPrimaryAFPoint()
Gets the PrimaryAFPoint.
+
**Returns:**
int - The PrimaryAFPoint.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2afinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2afinfopackage/_index.md
index 6aceedf34a..d5389be134 100644
--- a/english/java/com.groupdocs.metadata.core/cr2afinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2afinfopackage/_index.md
@@ -13,35 +13,55 @@ public final class Cr2AFInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2AFInfoPackage()](#Cr2AFInfoPackage--) | Initializes a new instance of the Cr2AFInfoPackage class. |
+| [Cr2AFInfoPackage()](#Cr2AFInfoPackage--) | Initializes a new instance of the
+Cr2AFInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getNumAFPoints()](#getNumAFPoints--) | Gets the NumAFPoints. |
-| [getValidAFPoints()](#getValidAFPoints--) | Gets the ValidAFPoints. |
-| [getCanonImageWidth()](#getCanonImageWidth--) | Gets the CanonImageWidth. |
-| [getCanonImageHeight()](#getCanonImageHeight--) | Gets the CanonImageHeight. |
-| [getAFImageWidth()](#getAFImageWidth--) | Gets the AFImageWidth. |
-| [getAFImageHeight()](#getAFImageHeight--) | Gets the AFImageHeight. |
-| [getAFAreaWidth()](#getAFAreaWidth--) | Gets the AFAreaWidth. |
-| [getAFAreaHeight()](#getAFAreaHeight--) | Gets the AFAreaHeight. |
-| [getAFAreaXPositions()](#getAFAreaXPositions--) | Gets the AFAreaXPositions. |
-| [getAFAreaYPositions()](#getAFAreaYPositions--) | Gets the AFAreaYPositions. |
-| [getAFPointsInFocus()](#getAFPointsInFocus--) | Gets the AFPointsInFocus. |
-| [getPrimaryAFPointAFInfo()](#getPrimaryAFPointAFInfo--) | Gets the PrimaryAFPointAFInfo. |
-| [getPrimaryAFPoint()](#getPrimaryAFPoint--) | Gets the PrimaryAFPoint. |
+| [getNumAFPoints()](#getNumAFPoints--) | Gets the NumAFPoints.
+ |
+| [getValidAFPoints()](#getValidAFPoints--) | Gets the ValidAFPoints.
+ |
+| [getCanonImageWidth()](#getCanonImageWidth--) | Gets the CanonImageWidth.
+ |
+| [getCanonImageHeight()](#getCanonImageHeight--) | Gets the CanonImageHeight.
+ |
+| [getAFImageWidth()](#getAFImageWidth--) | Gets the AFImageWidth.
+ |
+| [getAFImageHeight()](#getAFImageHeight--) | Gets the AFImageHeight.
+ |
+| [getAFAreaWidth()](#getAFAreaWidth--) | Gets the AFAreaWidth.
+ |
+| [getAFAreaHeight()](#getAFAreaHeight--) | Gets the AFAreaHeight.
+ |
+| [getAFAreaXPositions()](#getAFAreaXPositions--) | Gets the AFAreaXPositions.
+ |
+| [getAFAreaYPositions()](#getAFAreaYPositions--) | Gets the AFAreaYPositions.
+ |
+| [getAFPointsInFocus()](#getAFPointsInFocus--) | Gets the AFPointsInFocus.
+ |
+| [getPrimaryAFPointAFInfo()](#getPrimaryAFPointAFInfo--) | Gets the PrimaryAFPointAFInfo.
+ |
+| [getPrimaryAFPoint()](#getPrimaryAFPoint--) | Gets the PrimaryAFPoint.
+ |
### Cr2AFInfoPackage() {#Cr2AFInfoPackage--}
```
public Cr2AFInfoPackage()
```
-Initializes a new instance of the Cr2AFInfoPackage class.
+Initializes a new instance of the
+Cr2AFInfoPackage
+ class.
+
### getNumAFPoints() {#getNumAFPoints--}
```
@@ -51,8 +71,10 @@ public final int getNumAFPoints()
Gets the NumAFPoints.
+
**Returns:**
int - The NumAFPoints.
+
### getValidAFPoints() {#getValidAFPoints--}
```
public final int getValidAFPoints()
@@ -61,8 +83,10 @@ public final int getValidAFPoints()
Gets the ValidAFPoints.
+
**Returns:**
int - The ValidAFPoints.
+
### getCanonImageWidth() {#getCanonImageWidth--}
```
public final int getCanonImageWidth()
@@ -71,8 +95,10 @@ public final int getCanonImageWidth()
Gets the CanonImageWidth.
+
**Returns:**
int - The CanonImageWidth.
+
### getCanonImageHeight() {#getCanonImageHeight--}
```
public final int getCanonImageHeight()
@@ -81,8 +107,10 @@ public final int getCanonImageHeight()
Gets the CanonImageHeight.
+
**Returns:**
int - The CanonImageHeight.
+
### getAFImageWidth() {#getAFImageWidth--}
```
public final int getAFImageWidth()
@@ -91,8 +119,10 @@ public final int getAFImageWidth()
Gets the AFImageWidth.
+
**Returns:**
int - The AFImageWidth.
+
### getAFImageHeight() {#getAFImageHeight--}
```
public final int getAFImageHeight()
@@ -101,8 +131,10 @@ public final int getAFImageHeight()
Gets the AFImageHeight.
+
**Returns:**
int - The AFImageHeight.
+
### getAFAreaWidth() {#getAFAreaWidth--}
```
public final int getAFAreaWidth()
@@ -111,8 +143,10 @@ public final int getAFAreaWidth()
Gets the AFAreaWidth.
+
**Returns:**
int - The AFAreaWidth.
+
### getAFAreaHeight() {#getAFAreaHeight--}
```
public final int getAFAreaHeight()
@@ -121,8 +155,10 @@ public final int getAFAreaHeight()
Gets the AFAreaHeight.
+
**Returns:**
int - The AFAreaHeight.
+
### getAFAreaXPositions() {#getAFAreaXPositions--}
```
public final int getAFAreaXPositions()
@@ -131,8 +167,10 @@ public final int getAFAreaXPositions()
Gets the AFAreaXPositions.
+
**Returns:**
int - The AFAreaXPositions.
+
### getAFAreaYPositions() {#getAFAreaYPositions--}
```
public final int getAFAreaYPositions()
@@ -141,8 +179,10 @@ public final int getAFAreaYPositions()
Gets the AFAreaYPositions.
+
**Returns:**
int - The AFAreaYPositions.
+
### getAFPointsInFocus() {#getAFPointsInFocus--}
```
public final int getAFPointsInFocus()
@@ -151,8 +191,10 @@ public final int getAFPointsInFocus()
Gets the AFPointsInFocus.
+
**Returns:**
int - The AFPointsInFocus.
+
### getPrimaryAFPointAFInfo() {#getPrimaryAFPointAFInfo--}
```
public final int getPrimaryAFPointAFInfo()
@@ -161,8 +203,10 @@ public final int getPrimaryAFPointAFInfo()
Gets the PrimaryAFPointAFInfo.
+
**Returns:**
int - The PrimaryAFPointAFInfo.
+
### getPrimaryAFPoint() {#getPrimaryAFPoint--}
```
public final int getPrimaryAFPoint()
@@ -171,5 +215,7 @@ public final int getPrimaryAFPoint()
Gets the PrimaryAFPoint.
+
**Returns:**
int - The PrimaryAFPoint.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2afmicroadjpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2afmicroadjpackage/_index.md
index aa48c80186..1741c4b567 100644
--- a/english/java/com.groupdocs.metadata.core/cr2afmicroadjpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2afmicroadjpackage/_index.md
@@ -13,24 +13,33 @@ public final class Cr2AFMicroAdjPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2AFMicroAdjPackage()](#Cr2AFMicroAdjPackage--) | Initializes a new instance of the Cr2AFMicroAdjPackage class. |
+| [Cr2AFMicroAdjPackage()](#Cr2AFMicroAdjPackage--) | Initializes a new instance of the
+Cr2AFMicroAdjPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAFMicroAdjMode()](#getAFMicroAdjMode--) | Gets the AFMicroAdjMode. |
-| [getAFMicroAdjValue()](#getAFMicroAdjValue--) | Gets the AFMicroAdjValue. |
+| [getAFMicroAdjMode()](#getAFMicroAdjMode--) | Gets the AFMicroAdjMode.
+ |
+| [getAFMicroAdjValue()](#getAFMicroAdjValue--) | Gets the AFMicroAdjValue.
+ |
### Cr2AFMicroAdjPackage() {#Cr2AFMicroAdjPackage--}
```
public Cr2AFMicroAdjPackage()
```
-Initializes a new instance of the Cr2AFMicroAdjPackage class.
+Initializes a new instance of the
+Cr2AFMicroAdjPackage
+ class.
+
### getAFMicroAdjMode() {#getAFMicroAdjMode--}
```
@@ -40,8 +49,10 @@ public final int getAFMicroAdjMode()
Gets the AFMicroAdjMode.
+
**Returns:**
int - The AFMicroAdjMode.
+
### getAFMicroAdjValue() {#getAFMicroAdjValue--}
```
public final float getAFMicroAdjValue()
@@ -50,5 +61,7 @@ public final float getAFMicroAdjValue()
Gets the AFMicroAdjValue.
+
**Returns:**
float - The AFMicroAdjValue.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2aspectinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2aspectinfopackage/_index.md
index b61f2bc172..1194baa46e 100644
--- a/english/java/com.groupdocs.metadata.core/cr2aspectinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2aspectinfopackage/_index.md
@@ -13,27 +13,39 @@ public final class Cr2AspectInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2AspectInfoPackage()](#Cr2AspectInfoPackage--) | Initializes a new instance of the Cr2AspectInfoPackage class. |
+| [Cr2AspectInfoPackage()](#Cr2AspectInfoPackage--) | Initializes a new instance of the
+Cr2AspectInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAspectRatio()](#getAspectRatio--) | Gets the AspectRatio. |
-| [getCroppedImageWidth()](#getCroppedImageWidth--) | Gets the CroppedImageWidth. |
-| [getCroppedImageHeight()](#getCroppedImageHeight--) | Gets the CroppedImageHeight. |
-| [getCroppedImageLeft()](#getCroppedImageLeft--) | Gets the CroppedImageLeft. |
-| [getCroppedImageTop()](#getCroppedImageTop--) | Gets the CroppedImageTop. |
+| [getAspectRatio()](#getAspectRatio--) | Gets the AspectRatio.
+ |
+| [getCroppedImageWidth()](#getCroppedImageWidth--) | Gets the CroppedImageWidth.
+ |
+| [getCroppedImageHeight()](#getCroppedImageHeight--) | Gets the CroppedImageHeight.
+ |
+| [getCroppedImageLeft()](#getCroppedImageLeft--) | Gets the CroppedImageLeft.
+ |
+| [getCroppedImageTop()](#getCroppedImageTop--) | Gets the CroppedImageTop.
+ |
### Cr2AspectInfoPackage() {#Cr2AspectInfoPackage--}
```
public Cr2AspectInfoPackage()
```
-Initializes a new instance of the Cr2AspectInfoPackage class.
+Initializes a new instance of the
+Cr2AspectInfoPackage
+ class.
+
### getAspectRatio() {#getAspectRatio--}
```
@@ -43,8 +55,10 @@ public final int getAspectRatio()
Gets the AspectRatio.
+
**Returns:**
int - The AspectRatio.
+
### getCroppedImageWidth() {#getCroppedImageWidth--}
```
public final int getCroppedImageWidth()
@@ -53,8 +67,10 @@ public final int getCroppedImageWidth()
Gets the CroppedImageWidth.
+
**Returns:**
int - The CroppedImageWidth.
+
### getCroppedImageHeight() {#getCroppedImageHeight--}
```
public final int getCroppedImageHeight()
@@ -63,8 +79,10 @@ public final int getCroppedImageHeight()
Gets the CroppedImageHeight.
+
**Returns:**
int - The CroppedImageHeight.
+
### getCroppedImageLeft() {#getCroppedImageLeft--}
```
public final int getCroppedImageLeft()
@@ -73,8 +91,10 @@ public final int getCroppedImageLeft()
Gets the CroppedImageLeft.
+
**Returns:**
int - The CroppedImageLeft.
+
### getCroppedImageTop() {#getCroppedImageTop--}
```
public final int getCroppedImageTop()
@@ -83,5 +103,7 @@ public final int getCroppedImageTop()
Gets the CroppedImageTop.
+
**Returns:**
int - The CroppedImageTop.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2camerasettingspackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2camerasettingspackage/_index.md
index a1f08f4860..9d2a931f06 100644
--- a/english/java/com.groupdocs.metadata.core/cr2camerasettingspackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2camerasettingspackage/_index.md
@@ -13,59 +13,103 @@ public final class Cr2CameraSettingsPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2CameraSettingsPackage()](#Cr2CameraSettingsPackage--) | Initializes a new instance of the Cr2CameraSettingsPackage class. |
+| [Cr2CameraSettingsPackage()](#Cr2CameraSettingsPackage--) | Initializes a new instance of the
+Cr2CameraSettingsPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getMacroMode()](#getMacroMode--) | Gets the MacroMode. |
-| [getSelfTimer()](#getSelfTimer--) | Gets the SelfTimer. |
-| [getQuality()](#getQuality--) | Gets the Quality. |
-| [getCanonFlashMode()](#getCanonFlashMode--) | Gets the CanonFlashMode. |
-| [getContinuousDrive()](#getContinuousDrive--) | Gets the ContinuousDrive. |
-| [getFocusMode()](#getFocusMode--) | Gets the FocusMode. |
-| [getRecordMode()](#getRecordMode--) | Gets the RecordMode. |
-| [getCanonImageSize()](#getCanonImageSize--) | Gets the CanonImageSize. |
-| [getEasyMode()](#getEasyMode--) | Gets the EasyMode. |
-| [getDigitalZoom()](#getDigitalZoom--) | Gets the DigitalZoom. |
-| [getContrast()](#getContrast--) | Gets the Contrast. |
-| [getSaturation()](#getSaturation--) | Gets the Saturation. |
-| [getSharpness()](#getSharpness--) | Gets the Sharpness. |
-| [getCameraIso()](#getCameraIso--) | Gets the CameraIso. |
-| [getMeteringMode()](#getMeteringMode--) | Gets the MeteringMode. |
-| [getFocusRange()](#getFocusRange--) | Gets the FocusRange. |
-| [getAFPoint()](#getAFPoint--) | Gets the AFPoint. |
-| [getCanonExposureMode()](#getCanonExposureMode--) | Gets the CanonExposureMode. |
-| [getLensType()](#getLensType--) | Gets the LensType. |
-| [getMaxFocalLength()](#getMaxFocalLength--) | Gets the MaxFocalLength. |
-| [getMinFocalLength()](#getMinFocalLength--) | Gets the MinFocalLength. |
-| [getFocalUnits()](#getFocalUnits--) | Gets the FocalUnits. |
-| [getMaxAperture()](#getMaxAperture--) | Gets the MaxAperture. |
-| [getMinAperture()](#getMinAperture--) | Gets the MinAperture. |
-| [getFlashActivity()](#getFlashActivity--) | Gets the FlashActivity. |
-| [getFlashBits()](#getFlashBits--) | Gets the FlashBits. |
-| [getFocusContinuous()](#getFocusContinuous--) | Gets the FocusContinuous. |
-| [getAESetting()](#getAESetting--) | Gets the AESetting. |
-| [getImageStabilization()](#getImageStabilization--) | Gets the ImageStabilization. |
-| [getDisplayAperture()](#getDisplayAperture--) | Gets the DisplayAperture. |
-| [getZoomSourceWidth()](#getZoomSourceWidth--) | Gets the ZoomSourceWidth. |
-| [getZoomTargetWidth()](#getZoomTargetWidth--) | Gets the ZoomTargetWidth. |
-| [getSpotMeteringMode()](#getSpotMeteringMode--) | Gets the SpotMeteringMode. |
-| [getPhotoEffect()](#getPhotoEffect--) | Gets the PhotoEffect. |
-| [getManualFlashOutput()](#getManualFlashOutput--) | Gets the ManualFlashOutput. |
-| [getColorTone()](#getColorTone--) | Gets the ColorTone. |
-| [getSRAWQuality()](#getSRAWQuality--) | Gets the SRAWQuality. |
+| [getMacroMode()](#getMacroMode--) | Gets the MacroMode.
+ |
+| [getSelfTimer()](#getSelfTimer--) | Gets the SelfTimer.
+ |
+| [getQuality()](#getQuality--) | Gets the Quality.
+ |
+| [getCanonFlashMode()](#getCanonFlashMode--) | Gets the CanonFlashMode.
+ |
+| [getContinuousDrive()](#getContinuousDrive--) | Gets the ContinuousDrive.
+ |
+| [getFocusMode()](#getFocusMode--) | Gets the FocusMode.
+ |
+| [getRecordMode()](#getRecordMode--) | Gets the RecordMode.
+ |
+| [getCanonImageSize()](#getCanonImageSize--) | Gets the CanonImageSize.
+ |
+| [getEasyMode()](#getEasyMode--) | Gets the EasyMode.
+ |
+| [getDigitalZoom()](#getDigitalZoom--) | Gets the DigitalZoom.
+ |
+| [getContrast()](#getContrast--) | Gets the Contrast.
+ |
+| [getSaturation()](#getSaturation--) | Gets the Saturation.
+ |
+| [getSharpness()](#getSharpness--) | Gets the Sharpness.
+ |
+| [getCameraIso()](#getCameraIso--) | Gets the CameraIso.
+ |
+| [getMeteringMode()](#getMeteringMode--) | Gets the MeteringMode.
+ |
+| [getFocusRange()](#getFocusRange--) | Gets the FocusRange.
+ |
+| [getAFPoint()](#getAFPoint--) | Gets the AFPoint.
+ |
+| [getCanonExposureMode()](#getCanonExposureMode--) | Gets the CanonExposureMode.
+ |
+| [getLensType()](#getLensType--) | Gets the LensType.
+ |
+| [getMaxFocalLength()](#getMaxFocalLength--) | Gets the MaxFocalLength.
+ |
+| [getMinFocalLength()](#getMinFocalLength--) | Gets the MinFocalLength.
+ |
+| [getFocalUnits()](#getFocalUnits--) | Gets the FocalUnits.
+ |
+| [getMaxAperture()](#getMaxAperture--) | Gets the MaxAperture.
+ |
+| [getMinAperture()](#getMinAperture--) | Gets the MinAperture.
+ |
+| [getFlashActivity()](#getFlashActivity--) | Gets the FlashActivity.
+ |
+| [getFlashBits()](#getFlashBits--) | Gets the FlashBits.
+ |
+| [getFocusContinuous()](#getFocusContinuous--) | Gets the FocusContinuous.
+ |
+| [getAESetting()](#getAESetting--) | Gets the AESetting.
+ |
+| [getImageStabilization()](#getImageStabilization--) | Gets the ImageStabilization.
+ |
+| [getDisplayAperture()](#getDisplayAperture--) | Gets the DisplayAperture.
+ |
+| [getZoomSourceWidth()](#getZoomSourceWidth--) | Gets the ZoomSourceWidth.
+ |
+| [getZoomTargetWidth()](#getZoomTargetWidth--) | Gets the ZoomTargetWidth.
+ |
+| [getSpotMeteringMode()](#getSpotMeteringMode--) | Gets the SpotMeteringMode.
+ |
+| [getPhotoEffect()](#getPhotoEffect--) | Gets the PhotoEffect.
+ |
+| [getManualFlashOutput()](#getManualFlashOutput--) | Gets the ManualFlashOutput.
+ |
+| [getColorTone()](#getColorTone--) | Gets the ColorTone.
+ |
+| [getSRAWQuality()](#getSRAWQuality--) | Gets the SRAWQuality.
+ |
### Cr2CameraSettingsPackage() {#Cr2CameraSettingsPackage--}
```
public Cr2CameraSettingsPackage()
```
-Initializes a new instance of the Cr2CameraSettingsPackage class.
+Initializes a new instance of the
+Cr2CameraSettingsPackage
+ class.
+
### getMacroMode() {#getMacroMode--}
```
@@ -75,8 +119,10 @@ public final int getMacroMode()
Gets the MacroMode.
+
**Returns:**
int - The MacroMode.
+
### getSelfTimer() {#getSelfTimer--}
```
public final int getSelfTimer()
@@ -85,8 +131,10 @@ public final int getSelfTimer()
Gets the SelfTimer.
+
**Returns:**
int - The SelfTimer.
+
### getQuality() {#getQuality--}
```
public final int getQuality()
@@ -95,8 +143,10 @@ public final int getQuality()
Gets the Quality.
+
**Returns:**
int - The Quality.
+
### getCanonFlashMode() {#getCanonFlashMode--}
```
public final int getCanonFlashMode()
@@ -105,8 +155,10 @@ public final int getCanonFlashMode()
Gets the CanonFlashMode.
+
**Returns:**
int - The CanonFlashMode.
+
### getContinuousDrive() {#getContinuousDrive--}
```
public final int getContinuousDrive()
@@ -115,8 +167,10 @@ public final int getContinuousDrive()
Gets the ContinuousDrive.
+
**Returns:**
int - The ContinuousDrive.
+
### getFocusMode() {#getFocusMode--}
```
public final int getFocusMode()
@@ -125,8 +179,10 @@ public final int getFocusMode()
Gets the FocusMode.
+
**Returns:**
int - The FocusMode.
+
### getRecordMode() {#getRecordMode--}
```
public final int getRecordMode()
@@ -135,8 +191,10 @@ public final int getRecordMode()
Gets the RecordMode.
+
**Returns:**
int - The RecordMode.
+
### getCanonImageSize() {#getCanonImageSize--}
```
public final int getCanonImageSize()
@@ -145,8 +203,10 @@ public final int getCanonImageSize()
Gets the CanonImageSize.
+
**Returns:**
int - The CanonImageSize.
+
### getEasyMode() {#getEasyMode--}
```
public final int getEasyMode()
@@ -155,8 +215,10 @@ public final int getEasyMode()
Gets the EasyMode.
+
**Returns:**
int - The EasyMode.
+
### getDigitalZoom() {#getDigitalZoom--}
```
public final int getDigitalZoom()
@@ -165,8 +227,10 @@ public final int getDigitalZoom()
Gets the DigitalZoom.
+
**Returns:**
int - The DigitalZoom.
+
### getContrast() {#getContrast--}
```
public final int getContrast()
@@ -175,8 +239,10 @@ public final int getContrast()
Gets the Contrast.
+
**Returns:**
int - The Contrast.
+
### getSaturation() {#getSaturation--}
```
public final int getSaturation()
@@ -185,8 +251,10 @@ public final int getSaturation()
Gets the Saturation.
+
**Returns:**
int - The Saturation.
+
### getSharpness() {#getSharpness--}
```
public final int getSharpness()
@@ -195,8 +263,10 @@ public final int getSharpness()
Gets the Sharpness.
+
**Returns:**
int - The Sharpness.
+
### getCameraIso() {#getCameraIso--}
```
public final int getCameraIso()
@@ -205,8 +275,10 @@ public final int getCameraIso()
Gets the CameraIso.
+
**Returns:**
int - The CameraIso.
+
### getMeteringMode() {#getMeteringMode--}
```
public final int getMeteringMode()
@@ -215,8 +287,10 @@ public final int getMeteringMode()
Gets the MeteringMode.
+
**Returns:**
int - The MeteringMode.
+
### getFocusRange() {#getFocusRange--}
```
public final int getFocusRange()
@@ -225,8 +299,10 @@ public final int getFocusRange()
Gets the FocusRange.
+
**Returns:**
int - The FocusRange.
+
### getAFPoint() {#getAFPoint--}
```
public final int getAFPoint()
@@ -235,8 +311,10 @@ public final int getAFPoint()
Gets the AFPoint.
+
**Returns:**
int - The AFPoint.
+
### getCanonExposureMode() {#getCanonExposureMode--}
```
public final int getCanonExposureMode()
@@ -245,8 +323,10 @@ public final int getCanonExposureMode()
Gets the CanonExposureMode.
+
**Returns:**
int - The CanonExposureMode.
+
### getLensType() {#getLensType--}
```
public final int getLensType()
@@ -255,8 +335,10 @@ public final int getLensType()
Gets the LensType.
+
**Returns:**
int - The LensType.
+
### getMaxFocalLength() {#getMaxFocalLength--}
```
public final int getMaxFocalLength()
@@ -265,8 +347,10 @@ public final int getMaxFocalLength()
Gets the MaxFocalLength.
+
**Returns:**
int - The MaxFocalLength.
+
### getMinFocalLength() {#getMinFocalLength--}
```
public final int getMinFocalLength()
@@ -275,8 +359,10 @@ public final int getMinFocalLength()
Gets the MinFocalLength.
+
**Returns:**
int - The MinFocalLength.
+
### getFocalUnits() {#getFocalUnits--}
```
public final int getFocalUnits()
@@ -285,8 +371,10 @@ public final int getFocalUnits()
Gets the FocalUnits.
+
**Returns:**
int - The FocalUnits.
+
### getMaxAperture() {#getMaxAperture--}
```
public final int getMaxAperture()
@@ -295,8 +383,10 @@ public final int getMaxAperture()
Gets the MaxAperture.
+
**Returns:**
int - The MaxAperture.
+
### getMinAperture() {#getMinAperture--}
```
public final int getMinAperture()
@@ -305,8 +395,10 @@ public final int getMinAperture()
Gets the MinAperture.
+
**Returns:**
int - The MinAperture.
+
### getFlashActivity() {#getFlashActivity--}
```
public final int getFlashActivity()
@@ -315,8 +407,10 @@ public final int getFlashActivity()
Gets the FlashActivity.
+
**Returns:**
int - The FlashActivity.
+
### getFlashBits() {#getFlashBits--}
```
public final int getFlashBits()
@@ -325,8 +419,10 @@ public final int getFlashBits()
Gets the FlashBits.
+
**Returns:**
int - The FlashBits.
+
### getFocusContinuous() {#getFocusContinuous--}
```
public final int getFocusContinuous()
@@ -335,8 +431,10 @@ public final int getFocusContinuous()
Gets the FocusContinuous.
+
**Returns:**
int - The FocusContinuous.
+
### getAESetting() {#getAESetting--}
```
public final int getAESetting()
@@ -345,8 +443,10 @@ public final int getAESetting()
Gets the AESetting.
+
**Returns:**
int - The AESetting.
+
### getImageStabilization() {#getImageStabilization--}
```
public final int getImageStabilization()
@@ -355,8 +455,10 @@ public final int getImageStabilization()
Gets the ImageStabilization.
+
**Returns:**
int - The ImageStabilization.
+
### getDisplayAperture() {#getDisplayAperture--}
```
public final int getDisplayAperture()
@@ -365,8 +467,10 @@ public final int getDisplayAperture()
Gets the DisplayAperture.
+
**Returns:**
int - The DisplayAperture.
+
### getZoomSourceWidth() {#getZoomSourceWidth--}
```
public final int getZoomSourceWidth()
@@ -375,8 +479,10 @@ public final int getZoomSourceWidth()
Gets the ZoomSourceWidth.
+
**Returns:**
int - The ZoomSourceWidth.
+
### getZoomTargetWidth() {#getZoomTargetWidth--}
```
public final int getZoomTargetWidth()
@@ -385,8 +491,10 @@ public final int getZoomTargetWidth()
Gets the ZoomTargetWidth.
+
**Returns:**
int - The ZoomTargetWidth.
+
### getSpotMeteringMode() {#getSpotMeteringMode--}
```
public final int getSpotMeteringMode()
@@ -395,8 +503,10 @@ public final int getSpotMeteringMode()
Gets the SpotMeteringMode.
+
**Returns:**
int - The SpotMeteringMode.
+
### getPhotoEffect() {#getPhotoEffect--}
```
public final int getPhotoEffect()
@@ -405,8 +515,10 @@ public final int getPhotoEffect()
Gets the PhotoEffect.
+
**Returns:**
int - The PhotoEffect.
+
### getManualFlashOutput() {#getManualFlashOutput--}
```
public final int getManualFlashOutput()
@@ -415,8 +527,10 @@ public final int getManualFlashOutput()
Gets the ManualFlashOutput.
+
**Returns:**
int - The ManualFlashOutput.
+
### getColorTone() {#getColorTone--}
```
public final int getColorTone()
@@ -425,8 +539,10 @@ public final int getColorTone()
Gets the ColorTone.
+
**Returns:**
int - The ColorTone.
+
### getSRAWQuality() {#getSRAWQuality--}
```
public final int getSRAWQuality()
@@ -435,5 +551,7 @@ public final int getSRAWQuality()
Gets the SRAWQuality.
+
**Returns:**
int - The SRAWQuality.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2colorbalancepackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2colorbalancepackage/_index.md
index 44374a3fc9..cd2d4246b4 100644
--- a/english/java/com.groupdocs.metadata.core/cr2colorbalancepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2colorbalancepackage/_index.md
@@ -13,31 +13,47 @@ public final class Cr2ColorBalancePackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2ColorBalancePackage()](#Cr2ColorBalancePackage--) | Initializes a new instance of the Cr2ColorBalancePackage class. |
+| [Cr2ColorBalancePackage()](#Cr2ColorBalancePackage--) | Initializes a new instance of the
+Cr2ColorBalancePackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getWB_RGGBLevelsAuto()](#getWB-RGGBLevelsAuto--) | Gets the WB\_RGGBLevelsAuto. |
-| [getWB_RGGBLevelsDaylight()](#getWB-RGGBLevelsDaylight--) | Gets the WB\_RGGBLevelsDaylight. |
-| [getWB_RGGBLevelsShade()](#getWB-RGGBLevelsShade--) | Gets the WB\_RGGBLevelsShade. |
-| [getWB_RGGBLevelsCloudy()](#getWB-RGGBLevelsCloudy--) | Gets the WB\_RGGBLevelsCloudy. |
-| [getWB_RGGBLevelsTungsten()](#getWB-RGGBLevelsTungsten--) | Gets the WB\_RGGBLevelsTungsten. |
-| [getWB_RGGBLevelsFluorescent()](#getWB-RGGBLevelsFluorescent--) | Gets the WB\_RGGBLevelsFluorescent. |
-| [getWB_RGGBLevelsFlash()](#getWB-RGGBLevelsFlash--) | Gets the WB\_RGGBLevelsFlash. |
-| [getWB_RGGBLevelsKelvin()](#getWB-RGGBLevelsKelvin--) | Gets the WB\_RGGBLevelsKelvin. |
-| [getWB_RGGBBlackLevels()](#getWB-RGGBBlackLevels--) | Gets the WB\_RGGBBlackLevels. |
+| [getWB_RGGBLevelsAuto()](#getWB-RGGBLevelsAuto--) | Gets the WB_RGGBLevelsAuto.
+ |
+| [getWB_RGGBLevelsDaylight()](#getWB-RGGBLevelsDaylight--) | Gets the WB_RGGBLevelsDaylight.
+ |
+| [getWB_RGGBLevelsShade()](#getWB-RGGBLevelsShade--) | Gets the WB_RGGBLevelsShade.
+ |
+| [getWB_RGGBLevelsCloudy()](#getWB-RGGBLevelsCloudy--) | Gets the WB_RGGBLevelsCloudy.
+ |
+| [getWB_RGGBLevelsTungsten()](#getWB-RGGBLevelsTungsten--) | Gets the WB_RGGBLevelsTungsten.
+ |
+| [getWB_RGGBLevelsFluorescent()](#getWB-RGGBLevelsFluorescent--) | Gets the WB_RGGBLevelsFluorescent.
+ |
+| [getWB_RGGBLevelsFlash()](#getWB-RGGBLevelsFlash--) | Gets the WB_RGGBLevelsFlash.
+ |
+| [getWB_RGGBLevelsKelvin()](#getWB-RGGBLevelsKelvin--) | Gets the WB_RGGBLevelsKelvin.
+ |
+| [getWB_RGGBBlackLevels()](#getWB-RGGBBlackLevels--) | Gets the WB_RGGBBlackLevels.
+ |
### Cr2ColorBalancePackage() {#Cr2ColorBalancePackage--}
```
public Cr2ColorBalancePackage()
```
-Initializes a new instance of the Cr2ColorBalancePackage class.
+Initializes a new instance of the
+Cr2ColorBalancePackage
+ class.
+
### getWB_RGGBLevelsAuto() {#getWB-RGGBLevelsAuto--}
```
@@ -45,87 +61,105 @@ public final int getWB_RGGBLevelsAuto()
```
-Gets the WB\_RGGBLevelsAuto.
+Gets the WB_RGGBLevelsAuto.
+
**Returns:**
-int - The WB\_RGGBLevelsAuto.
+int - The WB_RGGBLevelsAuto.
+
### getWB_RGGBLevelsDaylight() {#getWB-RGGBLevelsDaylight--}
```
public final int getWB_RGGBLevelsDaylight()
```
-Gets the WB\_RGGBLevelsDaylight.
+Gets the WB_RGGBLevelsDaylight.
+
**Returns:**
-int - The WB\_RGGBLevelsDaylight.
+int - The WB_RGGBLevelsDaylight.
+
### getWB_RGGBLevelsShade() {#getWB-RGGBLevelsShade--}
```
public final int getWB_RGGBLevelsShade()
```
-Gets the WB\_RGGBLevelsShade.
+Gets the WB_RGGBLevelsShade.
+
**Returns:**
-int - The WB\_RGGBLevelsShade.
+int - The WB_RGGBLevelsShade.
+
### getWB_RGGBLevelsCloudy() {#getWB-RGGBLevelsCloudy--}
```
public final int getWB_RGGBLevelsCloudy()
```
-Gets the WB\_RGGBLevelsCloudy.
+Gets the WB_RGGBLevelsCloudy.
+
**Returns:**
-int - The WB\_RGGBLevelsCloudy.
+int - The WB_RGGBLevelsCloudy.
+
### getWB_RGGBLevelsTungsten() {#getWB-RGGBLevelsTungsten--}
```
public final int getWB_RGGBLevelsTungsten()
```
-Gets the WB\_RGGBLevelsTungsten.
+Gets the WB_RGGBLevelsTungsten.
+
**Returns:**
-int - The WB\_RGGBLevelsTungsten.
+int - The WB_RGGBLevelsTungsten.
+
### getWB_RGGBLevelsFluorescent() {#getWB-RGGBLevelsFluorescent--}
```
public final int getWB_RGGBLevelsFluorescent()
```
-Gets the WB\_RGGBLevelsFluorescent.
+Gets the WB_RGGBLevelsFluorescent.
+
**Returns:**
-int - The WB\_RGGBLevelsFluorescent.
+int - The WB_RGGBLevelsFluorescent.
+
### getWB_RGGBLevelsFlash() {#getWB-RGGBLevelsFlash--}
```
public final int getWB_RGGBLevelsFlash()
```
-Gets the WB\_RGGBLevelsFlash.
+Gets the WB_RGGBLevelsFlash.
+
**Returns:**
-int - The WB\_RGGBLevelsFlash.
+int - The WB_RGGBLevelsFlash.
+
### getWB_RGGBLevelsKelvin() {#getWB-RGGBLevelsKelvin--}
```
public final int getWB_RGGBLevelsKelvin()
```
-Gets the WB\_RGGBLevelsKelvin.
+Gets the WB_RGGBLevelsKelvin.
+
**Returns:**
-int - The WB\_RGGBLevelsKelvin.
+int - The WB_RGGBLevelsKelvin.
+
### getWB_RGGBBlackLevels() {#getWB-RGGBBlackLevels--}
```
public final int getWB_RGGBBlackLevels()
```
-Gets the WB\_RGGBBlackLevels.
+Gets the WB_RGGBBlackLevels.
+
**Returns:**
-int - The WB\_RGGBBlackLevels.
+int - The WB_RGGBBlackLevels.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2colorinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2colorinfopackage/_index.md
index aa4b113553..f0bf9135d9 100644
--- a/english/java/com.groupdocs.metadata.core/cr2colorinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2colorinfopackage/_index.md
@@ -13,25 +13,35 @@ public final class Cr2ColorInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2ColorInfoPackage()](#Cr2ColorInfoPackage--) | Initializes a new instance of the Cr2ColorInfoPackage class. |
+| [Cr2ColorInfoPackage()](#Cr2ColorInfoPackage--) | Initializes a new instance of the
+Cr2ColorInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getSaturation()](#getSaturation--) | Gets the Saturation. |
-| [getColorTone()](#getColorTone--) | Gets the ColorTone. |
-| [getColorSpace()](#getColorSpace--) | Gets the ColorSpace. |
+| [getSaturation()](#getSaturation--) | Gets the Saturation.
+ |
+| [getColorTone()](#getColorTone--) | Gets the ColorTone.
+ |
+| [getColorSpace()](#getColorSpace--) | Gets the ColorSpace.
+ |
### Cr2ColorInfoPackage() {#Cr2ColorInfoPackage--}
```
public Cr2ColorInfoPackage()
```
-Initializes a new instance of the Cr2ColorInfoPackage class.
+Initializes a new instance of the
+Cr2ColorInfoPackage
+ class.
+
### getSaturation() {#getSaturation--}
```
@@ -41,8 +51,10 @@ public final int getSaturation()
Gets the Saturation.
+
**Returns:**
int - The Saturation.
+
### getColorTone() {#getColorTone--}
```
public final int getColorTone()
@@ -51,8 +63,10 @@ public final int getColorTone()
Gets the ColorTone.
+
**Returns:**
int - The ColorTone.
+
### getColorSpace() {#getColorSpace--}
```
public final int getColorSpace()
@@ -61,5 +75,7 @@ public final int getColorSpace()
Gets the ColorSpace.
+
**Returns:**
int - The ColorSpace.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2cropinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2cropinfopackage/_index.md
index db614d6d99..861c30571f 100644
--- a/english/java/com.groupdocs.metadata.core/cr2cropinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2cropinfopackage/_index.md
@@ -13,26 +13,37 @@ public final class Cr2CropInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2CropInfoPackage()](#Cr2CropInfoPackage--) | Initializes a new instance of the Cr2CropInfoPackage class. |
+| [Cr2CropInfoPackage()](#Cr2CropInfoPackage--) | Initializes a new instance of the
+Cr2CropInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCropLeftMargin()](#getCropLeftMargin--) | Gets the CropLeftMargin. |
-| [getCropRightMargin()](#getCropRightMargin--) | Gets the CropRightMargin. |
-| [getCropTopMargin()](#getCropTopMargin--) | Gets the CropTopMargin. |
-| [getCropBottomMargin()](#getCropBottomMargin--) | Gets the CropBottomMargin. |
+| [getCropLeftMargin()](#getCropLeftMargin--) | Gets the CropLeftMargin.
+ |
+| [getCropRightMargin()](#getCropRightMargin--) | Gets the CropRightMargin.
+ |
+| [getCropTopMargin()](#getCropTopMargin--) | Gets the CropTopMargin.
+ |
+| [getCropBottomMargin()](#getCropBottomMargin--) | Gets the CropBottomMargin.
+ |
### Cr2CropInfoPackage() {#Cr2CropInfoPackage--}
```
public Cr2CropInfoPackage()
```
-Initializes a new instance of the Cr2CropInfoPackage class.
+Initializes a new instance of the
+Cr2CropInfoPackage
+ class.
+
### getCropLeftMargin() {#getCropLeftMargin--}
```
@@ -42,8 +53,10 @@ public final int getCropLeftMargin()
Gets the CropLeftMargin.
+
**Returns:**
int - The CropLeftMargin.
+
### getCropRightMargin() {#getCropRightMargin--}
```
public final int getCropRightMargin()
@@ -52,8 +65,10 @@ public final int getCropRightMargin()
Gets the CropRightMargin.
+
**Returns:**
int - The CropRightMargin.
+
### getCropTopMargin() {#getCropTopMargin--}
```
public final int getCropTopMargin()
@@ -62,8 +77,10 @@ public final int getCropTopMargin()
Gets the CropTopMargin.
+
**Returns:**
int - The CropTopMargin.
+
### getCropBottomMargin() {#getCropBottomMargin--}
```
public final int getCropBottomMargin()
@@ -72,5 +89,7 @@ public final int getCropBottomMargin()
Gets the CropBottomMargin.
+
**Returns:**
int - The CropBottomMargin.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2fileinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2fileinfopackage/_index.md
index 6998990daf..c62b787b8b 100644
--- a/english/java/com.groupdocs.metadata.core/cr2fileinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2fileinfopackage/_index.md
@@ -13,43 +13,71 @@ public final class Cr2FileInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2FileInfoPackage()](#Cr2FileInfoPackage--) | Initializes a new instance of the Cr2FileInfoPackage class. |
+| [Cr2FileInfoPackage()](#Cr2FileInfoPackage--) | Initializes a new instance of the
+Cr2FileInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getSize()](#getSize--) | Gets the Size. |
-| [setSize(long value)](#setSize-long-) | Sets the Size. |
-| [getFileNumberOrShutterCount()](#getFileNumberOrShutterCount--) | Gets the FileNumberOrShutterCount. |
-| [getBracketMode()](#getBracketMode--) | Gets the BracketMode. |
-| [getBracketValue()](#getBracketValue--) | Gets the BracketValue. |
-| [getBracketShotNumber()](#getBracketShotNumber--) | Gets the BracketShotNumber. |
-| [getRawJpgQuality()](#getRawJpgQuality--) | Gets the RawJpgQuality. |
-| [getRawJpgSize()](#getRawJpgSize--) | Gets the RawJpgSize. |
-| [getLongExposureNoiseReduction2()](#getLongExposureNoiseReduction2--) | Gets the LongExposureNoiseReduction2. |
-| [getWBBracketMode()](#getWBBracketMode--) | Gets the WBBracketMode. |
-| [getWBBracketValueAB()](#getWBBracketValueAB--) | Gets the WBBracketValueAB. |
-| [getWBBracketValueGM()](#getWBBracketValueGM--) | Gets the WBBracketValueGM. |
-| [getFilterEffect()](#getFilterEffect--) | Gets the FilterEffect. |
-| [getToningEffect()](#getToningEffect--) | Gets the ToningEffect. |
-| [getMacroMagnification()](#getMacroMagnification--) | Gets the MacroMagnification. |
-| [getLiveViewShooting()](#getLiveViewShooting--) | Gets the LiveViewShooting. |
-| [getFocusDistanceUpper()](#getFocusDistanceUpper--) | Gets the FocusDistanceUpper. |
-| [getFocusDistanceLower()](#getFocusDistanceLower--) | Gets the FocusDistanceLower. |
-| [getShutterMode()](#getShutterMode--) | Gets the ShutterMode. |
-| [getFlashExposureLock()](#getFlashExposureLock--) | Gets the FlashExposureLock. |
-| [getRFLensType()](#getRFLensType--) | Gets the RFLensType. |
+| [getSize()](#getSize--) | Gets the Size.
+ |
+| [setSize(long value)](#setSize-long-) | Sets the Size.
+ |
+| [getFileNumberOrShutterCount()](#getFileNumberOrShutterCount--) | Gets the FileNumberOrShutterCount.
+ |
+| [getBracketMode()](#getBracketMode--) | Gets the BracketMode.
+ |
+| [getBracketValue()](#getBracketValue--) | Gets the BracketValue.
+ |
+| [getBracketShotNumber()](#getBracketShotNumber--) | Gets the BracketShotNumber.
+ |
+| [getRawJpgQuality()](#getRawJpgQuality--) | Gets the RawJpgQuality.
+ |
+| [getRawJpgSize()](#getRawJpgSize--) | Gets the RawJpgSize.
+ |
+| [getLongExposureNoiseReduction2()](#getLongExposureNoiseReduction2--) | Gets the LongExposureNoiseReduction2.
+ |
+| [getWBBracketMode()](#getWBBracketMode--) | Gets the WBBracketMode.
+ |
+| [getWBBracketValueAB()](#getWBBracketValueAB--) | Gets the WBBracketValueAB.
+ |
+| [getWBBracketValueGM()](#getWBBracketValueGM--) | Gets the WBBracketValueGM.
+ |
+| [getFilterEffect()](#getFilterEffect--) | Gets the FilterEffect.
+ |
+| [getToningEffect()](#getToningEffect--) | Gets the ToningEffect.
+ |
+| [getMacroMagnification()](#getMacroMagnification--) | Gets the MacroMagnification.
+ |
+| [getLiveViewShooting()](#getLiveViewShooting--) | Gets the LiveViewShooting.
+ |
+| [getFocusDistanceUpper()](#getFocusDistanceUpper--) | Gets the FocusDistanceUpper.
+ |
+| [getFocusDistanceLower()](#getFocusDistanceLower--) | Gets the FocusDistanceLower.
+ |
+| [getShutterMode()](#getShutterMode--) | Gets the ShutterMode.
+ |
+| [getFlashExposureLock()](#getFlashExposureLock--) | Gets the FlashExposureLock.
+ |
+| [getRFLensType()](#getRFLensType--) | Gets the RFLensType.
+ |
### Cr2FileInfoPackage() {#Cr2FileInfoPackage--}
```
public Cr2FileInfoPackage()
```
-Initializes a new instance of the Cr2FileInfoPackage class.
+Initializes a new instance of the
+Cr2FileInfoPackage
+ class.
+
### getSize() {#getSize--}
```
@@ -59,8 +87,10 @@ public final long getSize()
Gets the Size.
+
**Returns:**
long - The Size.
+
### setSize(long value) {#setSize-long-}
```
public final void setSize(long value)
@@ -69,10 +99,12 @@ public final void setSize(long value)
Sets the Size.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The Size. |
+| value | long | The Size.
+ |
### getFileNumberOrShutterCount() {#getFileNumberOrShutterCount--}
```
@@ -82,8 +114,10 @@ public final int getFileNumberOrShutterCount()
Gets the FileNumberOrShutterCount.
+
**Returns:**
int - The FileNumber.
+
### getBracketMode() {#getBracketMode--}
```
public final int getBracketMode()
@@ -92,8 +126,10 @@ public final int getBracketMode()
Gets the BracketMode.
+
**Returns:**
int - The BracketMode.
+
### getBracketValue() {#getBracketValue--}
```
public final int getBracketValue()
@@ -102,8 +138,10 @@ public final int getBracketValue()
Gets the BracketValue.
+
**Returns:**
int - The BracketValue.
+
### getBracketShotNumber() {#getBracketShotNumber--}
```
public final int getBracketShotNumber()
@@ -112,8 +150,10 @@ public final int getBracketShotNumber()
Gets the BracketShotNumber.
+
**Returns:**
int - The BracketShotNumber.
+
### getRawJpgQuality() {#getRawJpgQuality--}
```
public final int getRawJpgQuality()
@@ -122,8 +162,10 @@ public final int getRawJpgQuality()
Gets the RawJpgQuality.
+
**Returns:**
int - The RawJpgQuality.
+
### getRawJpgSize() {#getRawJpgSize--}
```
public final int getRawJpgSize()
@@ -132,8 +174,10 @@ public final int getRawJpgSize()
Gets the RawJpgSize.
+
**Returns:**
int - The RawJpgSize.
+
### getLongExposureNoiseReduction2() {#getLongExposureNoiseReduction2--}
```
public final int getLongExposureNoiseReduction2()
@@ -142,8 +186,10 @@ public final int getLongExposureNoiseReduction2()
Gets the LongExposureNoiseReduction2.
+
**Returns:**
int - The LongExposureNoiseReduction2.
+
### getWBBracketMode() {#getWBBracketMode--}
```
public final int getWBBracketMode()
@@ -152,8 +198,10 @@ public final int getWBBracketMode()
Gets the WBBracketMode.
+
**Returns:**
int - The WBBracketMode.
+
### getWBBracketValueAB() {#getWBBracketValueAB--}
```
public final int getWBBracketValueAB()
@@ -162,8 +210,10 @@ public final int getWBBracketValueAB()
Gets the WBBracketValueAB.
+
**Returns:**
int - The WBBracketValueAB.
+
### getWBBracketValueGM() {#getWBBracketValueGM--}
```
public final int getWBBracketValueGM()
@@ -172,8 +222,10 @@ public final int getWBBracketValueGM()
Gets the WBBracketValueGM.
+
**Returns:**
int - The WBBracketValueGM.
+
### getFilterEffect() {#getFilterEffect--}
```
public final int getFilterEffect()
@@ -182,8 +234,10 @@ public final int getFilterEffect()
Gets the FilterEffect.
+
**Returns:**
int - The FilterEffect.
+
### getToningEffect() {#getToningEffect--}
```
public final int getToningEffect()
@@ -192,8 +246,10 @@ public final int getToningEffect()
Gets the ToningEffect.
+
**Returns:**
int - The ToningEffect.
+
### getMacroMagnification() {#getMacroMagnification--}
```
public final int getMacroMagnification()
@@ -202,8 +258,10 @@ public final int getMacroMagnification()
Gets the MacroMagnification.
+
**Returns:**
int - The MacroMagnification.
+
### getLiveViewShooting() {#getLiveViewShooting--}
```
public final int getLiveViewShooting()
@@ -212,8 +270,10 @@ public final int getLiveViewShooting()
Gets the LiveViewShooting.
+
**Returns:**
int - The LiveViewShooting.
+
### getFocusDistanceUpper() {#getFocusDistanceUpper--}
```
public final int getFocusDistanceUpper()
@@ -222,8 +282,10 @@ public final int getFocusDistanceUpper()
Gets the FocusDistanceUpper.
+
**Returns:**
int - The FocusDistanceUpper.
+
### getFocusDistanceLower() {#getFocusDistanceLower--}
```
public final int getFocusDistanceLower()
@@ -232,8 +294,10 @@ public final int getFocusDistanceLower()
Gets the FocusDistanceLower.
+
**Returns:**
int - The FocusDistanceLower.
+
### getShutterMode() {#getShutterMode--}
```
public final int getShutterMode()
@@ -242,8 +306,10 @@ public final int getShutterMode()
Gets the ShutterMode.
+
**Returns:**
int - The ShutterMode.
+
### getFlashExposureLock() {#getFlashExposureLock--}
```
public final int getFlashExposureLock()
@@ -252,8 +318,10 @@ public final int getFlashExposureLock()
Gets the FlashExposureLock.
+
**Returns:**
int - The FlashExposureLock.
+
### getRFLensType() {#getRFLensType--}
```
public final int getRFLensType()
@@ -262,5 +330,7 @@ public final int getRFLensType()
Gets the RFLensType.
+
**Returns:**
int - The RFLensType.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2focallengthpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2focallengthpackage/_index.md
index 0d3406c83d..13ae32e954 100644
--- a/english/java/com.groupdocs.metadata.core/cr2focallengthpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2focallengthpackage/_index.md
@@ -13,26 +13,37 @@ public final class Cr2FocalLengthPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2FocalLengthPackage()](#Cr2FocalLengthPackage--) | Initializes a new instance of the Cr2FocalLengthPackage class. |
+| [Cr2FocalLengthPackage()](#Cr2FocalLengthPackage--) | Initializes a new instance of the
+Cr2FocalLengthPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getFocalType()](#getFocalType--) | Gets the FocalType. |
-| [getFocalLength()](#getFocalLength--) | Gets the FocalLength. |
-| [getFocalPlaneXSize()](#getFocalPlaneXSize--) | Gets the FocalPlaneXSize. |
-| [getFocalPlaneYSize()](#getFocalPlaneYSize--) | Gets the FocalPlaneYSize. |
+| [getFocalType()](#getFocalType--) | Gets the FocalType.
+ |
+| [getFocalLength()](#getFocalLength--) | Gets the FocalLength.
+ |
+| [getFocalPlaneXSize()](#getFocalPlaneXSize--) | Gets the FocalPlaneXSize.
+ |
+| [getFocalPlaneYSize()](#getFocalPlaneYSize--) | Gets the FocalPlaneYSize.
+ |
### Cr2FocalLengthPackage() {#Cr2FocalLengthPackage--}
```
public Cr2FocalLengthPackage()
```
-Initializes a new instance of the Cr2FocalLengthPackage class.
+Initializes a new instance of the
+Cr2FocalLengthPackage
+ class.
+
### getFocalType() {#getFocalType--}
```
@@ -42,8 +53,10 @@ public final int getFocalType()
Gets the FocalType.
+
**Returns:**
int - The FocalType.
+
### getFocalLength() {#getFocalLength--}
```
public final int getFocalLength()
@@ -52,8 +65,10 @@ public final int getFocalLength()
Gets the FocalLength.
+
**Returns:**
int - The FocalLength.
+
### getFocalPlaneXSize() {#getFocalPlaneXSize--}
```
public final int getFocalPlaneXSize()
@@ -62,8 +77,10 @@ public final int getFocalPlaneXSize()
Gets the FocalPlaneXSize.
+
**Returns:**
int - The FocalPlaneXSize.
+
### getFocalPlaneYSize() {#getFocalPlaneYSize--}
```
public final int getFocalPlaneYSize()
@@ -72,5 +89,7 @@ public final int getFocalPlaneYSize()
Gets the FocalPlaneYSize.
+
**Returns:**
int - The FocalPlaneYSize.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2functions1dpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2functions1dpackage/_index.md
index d70a02d8fa..e68b18a7d1 100644
--- a/english/java/com.groupdocs.metadata.core/cr2functions1dpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2functions1dpackage/_index.md
@@ -13,44 +13,73 @@ public final class Cr2Functions1DPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2Functions1DPackage()](#Cr2Functions1DPackage--) | Initializes a new instance of the Cr2Functions1DPackage class. |
+| [Cr2Functions1DPackage()](#Cr2Functions1DPackage--) | Initializes a new instance of the
+Cr2Functions1DPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getFocusingScreen()](#getFocusingScreen--) | Gets the FocusingScreen. |
-| [getFinderDisplayDuringExposure()](#getFinderDisplayDuringExposure--) | Gets the FinderDisplayDuringExposure. |
-| [getShutterReleaseNoCFCard()](#getShutterReleaseNoCFCard--) | Gets the ShutterReleaseNoCFCard. |
-| [getISOSpeedExpansion()](#getISOSpeedExpansion--) | Gets the ISOSpeedExpansion. |
-| [getShutterAELButton()](#getShutterAELButton--) | Gets the ShutterAELButton. |
-| [getManualTv()](#getManualTv--) | Gets the ManualTv. |
-| [getExposureLevelIncrements()](#getExposureLevelIncrements--) | Gets the ExposureLevelIncrements. |
-| [getUSMLensElectronicMF()](#getUSMLensElectronicMF--) | Gets the USMLensElectronicMF. |
-| [getLCDPanels()](#getLCDPanels--) | Gets the LCDPanels. |
-| [getAEBSequenceAutoCancel()](#getAEBSequenceAutoCancel--) | Gets the AEBSequenceAutoCancel. |
-| [getAFPointIllumination()](#getAFPointIllumination--) | Gets the AFPointIllumination. |
-| [getAFPointSelection()](#getAFPointSelection--) | Gets the AFPointSelection. |
-| [getMirrorLockup()](#getMirrorLockup--) | Gets the MirrorLockup. |
-| [getAFPointSpotMetering()](#getAFPointSpotMetering--) | Gets the AFPointSpotMetering. |
-| [getFillFlashAutoReduction()](#getFillFlashAutoReduction--) | Gets the FillFlashAutoReduction. |
-| [getShutterCurtainSync()](#getShutterCurtainSync--) | Gets the ShutterCurtainSync. |
-| [getSafetyShiftInAvOrTv()](#getSafetyShiftInAvOrTv--) | Gets the SafetyShiftInAvOrTv. |
-| [getAFPointActivationArea()](#getAFPointActivationArea--) | Gets the AFPointActivationArea. |
-| [getSwitchToRegisteredAFPoint()](#getSwitchToRegisteredAFPoint--) | Gets the SwitchToRegisteredAFPoint. |
-| [getLensAFStopButton()](#getLensAFStopButton--) | Gets the LensAFStopButton. |
-| [getAIServoTrackingSensitivity()](#getAIServoTrackingSensitivity--) | Gets the AIServoTrackingSensitivity. |
-| [getAIServoContinuousShooting()](#getAIServoContinuousShooting--) | Gets the AIServoContinuousShooting. |
+| [getFocusingScreen()](#getFocusingScreen--) | Gets the FocusingScreen.
+ |
+| [getFinderDisplayDuringExposure()](#getFinderDisplayDuringExposure--) | Gets the FinderDisplayDuringExposure.
+ |
+| [getShutterReleaseNoCFCard()](#getShutterReleaseNoCFCard--) | Gets the ShutterReleaseNoCFCard.
+ |
+| [getISOSpeedExpansion()](#getISOSpeedExpansion--) | Gets the ISOSpeedExpansion.
+ |
+| [getShutterAELButton()](#getShutterAELButton--) | Gets the ShutterAELButton.
+ |
+| [getManualTv()](#getManualTv--) | Gets the ManualTv.
+ |
+| [getExposureLevelIncrements()](#getExposureLevelIncrements--) | Gets the ExposureLevelIncrements.
+ |
+| [getUSMLensElectronicMF()](#getUSMLensElectronicMF--) | Gets the USMLensElectronicMF.
+ |
+| [getLCDPanels()](#getLCDPanels--) | Gets the LCDPanels.
+ |
+| [getAEBSequenceAutoCancel()](#getAEBSequenceAutoCancel--) | Gets the AEBSequenceAutoCancel.
+ |
+| [getAFPointIllumination()](#getAFPointIllumination--) | Gets the AFPointIllumination.
+ |
+| [getAFPointSelection()](#getAFPointSelection--) | Gets the AFPointSelection.
+ |
+| [getMirrorLockup()](#getMirrorLockup--) | Gets the MirrorLockup.
+ |
+| [getAFPointSpotMetering()](#getAFPointSpotMetering--) | Gets the AFPointSpotMetering.
+ |
+| [getFillFlashAutoReduction()](#getFillFlashAutoReduction--) | Gets the FillFlashAutoReduction.
+ |
+| [getShutterCurtainSync()](#getShutterCurtainSync--) | Gets the ShutterCurtainSync.
+ |
+| [getSafetyShiftInAvOrTv()](#getSafetyShiftInAvOrTv--) | Gets the SafetyShiftInAvOrTv.
+ |
+| [getAFPointActivationArea()](#getAFPointActivationArea--) | Gets the AFPointActivationArea.
+ |
+| [getSwitchToRegisteredAFPoint()](#getSwitchToRegisteredAFPoint--) | Gets the SwitchToRegisteredAFPoint.
+ |
+| [getLensAFStopButton()](#getLensAFStopButton--) | Gets the LensAFStopButton.
+ |
+| [getAIServoTrackingSensitivity()](#getAIServoTrackingSensitivity--) | Gets the AIServoTrackingSensitivity.
+ |
+| [getAIServoContinuousShooting()](#getAIServoContinuousShooting--) | Gets the AIServoContinuousShooting.
+ |
### Cr2Functions1DPackage() {#Cr2Functions1DPackage--}
```
public Cr2Functions1DPackage()
```
-Initializes a new instance of the Cr2Functions1DPackage class.
+Initializes a new instance of the
+Cr2Functions1DPackage
+ class.
+
### getFocusingScreen() {#getFocusingScreen--}
```
@@ -60,8 +89,10 @@ public final int getFocusingScreen()
Gets the FocusingScreen.
+
**Returns:**
int - The FocusingScreen.
+
### getFinderDisplayDuringExposure() {#getFinderDisplayDuringExposure--}
```
public final int getFinderDisplayDuringExposure()
@@ -70,8 +101,10 @@ public final int getFinderDisplayDuringExposure()
Gets the FinderDisplayDuringExposure.
+
**Returns:**
int - The FinderDisplayDuringExposure.
+
### getShutterReleaseNoCFCard() {#getShutterReleaseNoCFCard--}
```
public final int getShutterReleaseNoCFCard()
@@ -80,8 +113,10 @@ public final int getShutterReleaseNoCFCard()
Gets the ShutterReleaseNoCFCard.
+
**Returns:**
int - The ShutterReleaseNoCFCard.
+
### getISOSpeedExpansion() {#getISOSpeedExpansion--}
```
public final int getISOSpeedExpansion()
@@ -90,8 +125,10 @@ public final int getISOSpeedExpansion()
Gets the ISOSpeedExpansion.
+
**Returns:**
int - The ISOSpeedExpansion.
+
### getShutterAELButton() {#getShutterAELButton--}
```
public final int getShutterAELButton()
@@ -100,8 +137,10 @@ public final int getShutterAELButton()
Gets the ShutterAELButton.
+
**Returns:**
int - The ShutterAELButton.
+
### getManualTv() {#getManualTv--}
```
public final int getManualTv()
@@ -110,8 +149,10 @@ public final int getManualTv()
Gets the ManualTv.
+
**Returns:**
int - The ManualTv.
+
### getExposureLevelIncrements() {#getExposureLevelIncrements--}
```
public final int getExposureLevelIncrements()
@@ -120,8 +161,10 @@ public final int getExposureLevelIncrements()
Gets the ExposureLevelIncrements.
+
**Returns:**
int - The ExposureLevelIncrements.
+
### getUSMLensElectronicMF() {#getUSMLensElectronicMF--}
```
public final int getUSMLensElectronicMF()
@@ -130,8 +173,10 @@ public final int getUSMLensElectronicMF()
Gets the USMLensElectronicMF.
+
**Returns:**
int - The USMLensElectronicMF.
+
### getLCDPanels() {#getLCDPanels--}
```
public final int getLCDPanels()
@@ -140,8 +185,10 @@ public final int getLCDPanels()
Gets the LCDPanels.
+
**Returns:**
int - The LCDPanels.
+
### getAEBSequenceAutoCancel() {#getAEBSequenceAutoCancel--}
```
public final int getAEBSequenceAutoCancel()
@@ -150,8 +197,10 @@ public final int getAEBSequenceAutoCancel()
Gets the AEBSequenceAutoCancel.
+
**Returns:**
int - The AEBSequenceAutoCancel.
+
### getAFPointIllumination() {#getAFPointIllumination--}
```
public final int getAFPointIllumination()
@@ -160,8 +209,10 @@ public final int getAFPointIllumination()
Gets the AFPointIllumination.
+
**Returns:**
int - The AFPointIllumination.
+
### getAFPointSelection() {#getAFPointSelection--}
```
public final int getAFPointSelection()
@@ -170,8 +221,10 @@ public final int getAFPointSelection()
Gets the AFPointSelection.
+
**Returns:**
int - The AFPointSelection.
+
### getMirrorLockup() {#getMirrorLockup--}
```
public final int getMirrorLockup()
@@ -180,8 +233,10 @@ public final int getMirrorLockup()
Gets the MirrorLockup.
+
**Returns:**
int - The MirrorLockup.
+
### getAFPointSpotMetering() {#getAFPointSpotMetering--}
```
public final int getAFPointSpotMetering()
@@ -190,8 +245,10 @@ public final int getAFPointSpotMetering()
Gets the AFPointSpotMetering.
+
**Returns:**
int - The AFPointSpotMetering.
+
### getFillFlashAutoReduction() {#getFillFlashAutoReduction--}
```
public final int getFillFlashAutoReduction()
@@ -200,8 +257,10 @@ public final int getFillFlashAutoReduction()
Gets the FillFlashAutoReduction.
+
**Returns:**
int - The FillFlashAutoReduction.
+
### getShutterCurtainSync() {#getShutterCurtainSync--}
```
public final int getShutterCurtainSync()
@@ -210,8 +269,10 @@ public final int getShutterCurtainSync()
Gets the ShutterCurtainSync.
+
**Returns:**
int - The ShutterCurtainSync.
+
### getSafetyShiftInAvOrTv() {#getSafetyShiftInAvOrTv--}
```
public final int getSafetyShiftInAvOrTv()
@@ -220,8 +281,10 @@ public final int getSafetyShiftInAvOrTv()
Gets the SafetyShiftInAvOrTv.
+
**Returns:**
int - The SafetyShiftInAvOrTv.
+
### getAFPointActivationArea() {#getAFPointActivationArea--}
```
public final int getAFPointActivationArea()
@@ -230,8 +293,10 @@ public final int getAFPointActivationArea()
Gets the AFPointActivationArea.
+
**Returns:**
int - The AFPointActivationArea.
+
### getSwitchToRegisteredAFPoint() {#getSwitchToRegisteredAFPoint--}
```
public final int getSwitchToRegisteredAFPoint()
@@ -240,8 +305,10 @@ public final int getSwitchToRegisteredAFPoint()
Gets the SwitchToRegisteredAFPoint.
+
**Returns:**
int - The SwitchToRegisteredAFPoint.
+
### getLensAFStopButton() {#getLensAFStopButton--}
```
public final int getLensAFStopButton()
@@ -250,8 +317,10 @@ public final int getLensAFStopButton()
Gets the LensAFStopButton.
+
**Returns:**
int - The LensAFStopButton.
+
### getAIServoTrackingSensitivity() {#getAIServoTrackingSensitivity--}
```
public final int getAIServoTrackingSensitivity()
@@ -260,8 +329,10 @@ public final int getAIServoTrackingSensitivity()
Gets the AIServoTrackingSensitivity.
+
**Returns:**
int - The AIServoTrackingSensitivity.
+
### getAIServoContinuousShooting() {#getAIServoContinuousShooting--}
```
public final int getAIServoContinuousShooting()
@@ -270,5 +341,7 @@ public final int getAIServoContinuousShooting()
Gets the AIServoContinuousShooting.
+
**Returns:**
int - The AIServoContinuousShooting.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2lightingoptpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2lightingoptpackage/_index.md
index e20fb7d1a8..d5910d67c8 100644
--- a/english/java/com.groupdocs.metadata.core/cr2lightingoptpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2lightingoptpackage/_index.md
@@ -13,30 +13,45 @@ public final class Cr2LightingOptPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2LightingOptPackage()](#Cr2LightingOptPackage--) | Initializes a new instance of the Cr2LightingOptPackage class. |
+| [Cr2LightingOptPackage()](#Cr2LightingOptPackage--) | Initializes a new instance of the
+Cr2LightingOptPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getSize()](#getSize--) | Gets the Size. |
-| [setSize(long value)](#setSize-long-) | Sets the Size. |
-| [getPeripheralIlluminationCorr()](#getPeripheralIlluminationCorr--) | Gets the PeripheralIlluminationCorr. |
-| [getAutoLightingOptimizer()](#getAutoLightingOptimizer--) | Gets the AutoLightingOptimizer. |
-| [getHighlightTonePriority()](#getHighlightTonePriority--) | Gets the HighlightTonePriority. |
-| [getLongExposureNoiseReduction()](#getLongExposureNoiseReduction--) | Gets the LongExposureNoiseReduction. |
-| [getHighISONoiseReduction()](#getHighISONoiseReduction--) | Gets the HighISONoiseReduction. |
-| [getDigitalLensOptimizer()](#getDigitalLensOptimizer--) | Gets the DigitalLensOptimizer. |
+| [getSize()](#getSize--) | Gets the Size.
+ |
+| [setSize(long value)](#setSize-long-) | Sets the Size.
+ |
+| [getPeripheralIlluminationCorr()](#getPeripheralIlluminationCorr--) | Gets the PeripheralIlluminationCorr.
+ |
+| [getAutoLightingOptimizer()](#getAutoLightingOptimizer--) | Gets the AutoLightingOptimizer.
+ |
+| [getHighlightTonePriority()](#getHighlightTonePriority--) | Gets the HighlightTonePriority.
+ |
+| [getLongExposureNoiseReduction()](#getLongExposureNoiseReduction--) | Gets the LongExposureNoiseReduction.
+ |
+| [getHighISONoiseReduction()](#getHighISONoiseReduction--) | Gets the HighISONoiseReduction.
+ |
+| [getDigitalLensOptimizer()](#getDigitalLensOptimizer--) | Gets the DigitalLensOptimizer.
+ |
### Cr2LightingOptPackage() {#Cr2LightingOptPackage--}
```
public Cr2LightingOptPackage()
```
-Initializes a new instance of the Cr2LightingOptPackage class.
+Initializes a new instance of the
+Cr2LightingOptPackage
+ class.
+
### getSize() {#getSize--}
```
@@ -46,8 +61,10 @@ public final long getSize()
Gets the Size.
+
**Returns:**
long - The Size.
+
### setSize(long value) {#setSize-long-}
```
public final void setSize(long value)
@@ -56,10 +73,12 @@ public final void setSize(long value)
Sets the Size.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The Size. |
+| value | long | The Size.
+ |
### getPeripheralIlluminationCorr() {#getPeripheralIlluminationCorr--}
```
@@ -69,8 +88,10 @@ public final int getPeripheralIlluminationCorr()
Gets the PeripheralIlluminationCorr.
+
**Returns:**
int - The PeripheralIlluminationCorr.
+
### getAutoLightingOptimizer() {#getAutoLightingOptimizer--}
```
public final int getAutoLightingOptimizer()
@@ -79,8 +100,10 @@ public final int getAutoLightingOptimizer()
Gets the AutoLightingOptimizer.
+
**Returns:**
int - The AutoLightingOptimizer.
+
### getHighlightTonePriority() {#getHighlightTonePriority--}
```
public final int getHighlightTonePriority()
@@ -89,8 +112,10 @@ public final int getHighlightTonePriority()
Gets the HighlightTonePriority.
+
**Returns:**
int - The HighlightTonePriority.
+
### getLongExposureNoiseReduction() {#getLongExposureNoiseReduction--}
```
public final int getLongExposureNoiseReduction()
@@ -99,8 +124,10 @@ public final int getLongExposureNoiseReduction()
Gets the LongExposureNoiseReduction.
+
**Returns:**
int - The LongExposureNoiseReduction.
+
### getHighISONoiseReduction() {#getHighISONoiseReduction--}
```
public final int getHighISONoiseReduction()
@@ -109,8 +136,10 @@ public final int getHighISONoiseReduction()
Gets the HighISONoiseReduction.
+
**Returns:**
int - The HighISONoiseReduction.
+
### getDigitalLensOptimizer() {#getDigitalLensOptimizer--}
```
public final int getDigitalLensOptimizer()
@@ -119,5 +148,7 @@ public final int getDigitalLensOptimizer()
Gets the DigitalLensOptimizer.
+
**Returns:**
int - The DigitalLensOptimizer.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2loginfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2loginfopackage/_index.md
index 1516edb666..e0d9720a3b 100644
--- a/english/java/com.groupdocs.metadata.core/cr2loginfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2loginfopackage/_index.md
@@ -13,29 +13,43 @@ public final class Cr2LogInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2LogInfoPackage()](#Cr2LogInfoPackage--) | Initializes a new instance of the Cr2LogInfoPackage class. |
+| [Cr2LogInfoPackage()](#Cr2LogInfoPackage--) | Initializes a new instance of the
+Cr2LogInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCompressionFormat()](#getCompressionFormat--) | Gets the CompressionFormat. |
-| [getSharpness()](#getSharpness--) | Gets the Sharpness. |
-| [getSaturation()](#getSaturation--) | Gets the Saturation. |
-| [getColorTone()](#getColorTone--) | Gets the ColorTone. |
-| [getColorSpace2()](#getColorSpace2--) | Gets the ColorSpace2. |
-| [getColorMatrix()](#getColorMatrix--) | Gets the ColorMatrix. |
-| [getCanonLogVersion()](#getCanonLogVersion--) | Gets the CanonLogVersion. |
+| [getCompressionFormat()](#getCompressionFormat--) | Gets the CompressionFormat.
+ |
+| [getSharpness()](#getSharpness--) | Gets the Sharpness.
+ |
+| [getSaturation()](#getSaturation--) | Gets the Saturation.
+ |
+| [getColorTone()](#getColorTone--) | Gets the ColorTone.
+ |
+| [getColorSpace2()](#getColorSpace2--) | Gets the ColorSpace2.
+ |
+| [getColorMatrix()](#getColorMatrix--) | Gets the ColorMatrix.
+ |
+| [getCanonLogVersion()](#getCanonLogVersion--) | Gets the CanonLogVersion.
+ |
### Cr2LogInfoPackage() {#Cr2LogInfoPackage--}
```
public Cr2LogInfoPackage()
```
-Initializes a new instance of the Cr2LogInfoPackage class.
+Initializes a new instance of the
+Cr2LogInfoPackage
+ class.
+
### getCompressionFormat() {#getCompressionFormat--}
```
@@ -45,8 +59,10 @@ public final int getCompressionFormat()
Gets the CompressionFormat.
+
**Returns:**
int - The CompressionFormat.
+
### getSharpness() {#getSharpness--}
```
public final int getSharpness()
@@ -55,8 +71,10 @@ public final int getSharpness()
Gets the Sharpness.
+
**Returns:**
int - The Sharpness.
+
### getSaturation() {#getSaturation--}
```
public final int getSaturation()
@@ -65,8 +83,10 @@ public final int getSaturation()
Gets the Saturation.
+
**Returns:**
int - The Saturation.
+
### getColorTone() {#getColorTone--}
```
public final int getColorTone()
@@ -75,8 +95,10 @@ public final int getColorTone()
Gets the ColorTone.
+
**Returns:**
int - The ColorTone.
+
### getColorSpace2() {#getColorSpace2--}
```
public final int getColorSpace2()
@@ -85,8 +107,10 @@ public final int getColorSpace2()
Gets the ColorSpace2.
+
**Returns:**
int - The ColorSpace2.
+
### getColorMatrix() {#getColorMatrix--}
```
public final int getColorMatrix()
@@ -95,8 +119,10 @@ public final int getColorMatrix()
Gets the ColorMatrix.
+
**Returns:**
int - The ColorMatrix.
+
### getCanonLogVersion() {#getCanonLogVersion--}
```
public final int getCanonLogVersion()
@@ -105,5 +131,7 @@ public final int getCanonLogVersion()
Gets the CanonLogVersion.
+
**Returns:**
int - The CanonLogVersion.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2makernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2makernotepackage/_index.md
index a17002bf9f..43e23306b9 100644
--- a/english/java/com.groupdocs.metadata.core/cr2makernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2makernotepackage/_index.md
@@ -13,198 +13,381 @@ public final class Cr2MakerNotePackage extends RawMakerNotePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2MakerNotePackage()](#Cr2MakerNotePackage--) | Initializes a new instance of the Cr2MakerNotePackage class. |
+| [Cr2MakerNotePackage()](#Cr2MakerNotePackage--) | Initializes a new instance of the
+Cr2MakerNotePackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCr2CameraSettingsPackage()](#getCr2CameraSettingsPackage--) | Gets the CanonCameraSettings. |
-| [setCr2CameraSettingsPackage(Cr2CameraSettingsPackage value)](#setCr2CameraSettingsPackage-com.groupdocs.metadata.core.Cr2CameraSettingsPackage-) | Sets the CanonCameraSettings. |
-| [getCameraSettings()](#getCameraSettings--) | Gets the CanonCameraSettings Offset. |
-| [setCameraSettings(long value)](#setCameraSettings-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2FocalLengthPackage()](#getCr2FocalLengthPackage--) | Gets the CanonFocalLength. |
-| [setCr2FocalLengthPackage(Cr2FocalLengthPackage value)](#setCr2FocalLengthPackage-com.groupdocs.metadata.core.Cr2FocalLengthPackage-) | Sets the CanonFocalLength. |
-| [getCr2FocalLength()](#getCr2FocalLength--) | Gets the CanonCameraSettings Offset. |
-| [setCr2FocalLength(long value)](#setCr2FocalLength-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2ShotInfoPackage()](#getCr2ShotInfoPackage--) | Gets the CanonShotInfo. |
-| [setCr2ShotInfoPackage(Cr2ShotInfoPackage value)](#setCr2ShotInfoPackage-com.groupdocs.metadata.core.Cr2ShotInfoPackage-) | Sets the CanonShotInfo. |
-| [getCr2ShotInfo()](#getCr2ShotInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2ShotInfo(long value)](#setCr2ShotInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2PanoramaPackage()](#getCr2PanoramaPackage--) | Gets the CanonPanorama. |
-| [setCr2PanoramaPackage(Cr2PanoramaPackage value)](#setCr2PanoramaPackage-com.groupdocs.metadata.core.Cr2PanoramaPackage-) | Sets the CanonPanorama. |
-| [getCr2Panorama()](#getCr2Panorama--) | Gets the CanonCameraSettings Offset. |
-| [setCr2Panorama(long value)](#setCr2Panorama-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2MovieInfoPackage()](#getCr2MovieInfoPackage--) | Gets the MovieInfo (Tags written by some Canon cameras when recording video). |
-| [setCr2MovieInfoPackage(Cr2MovieInfoPackage value)](#setCr2MovieInfoPackage-com.groupdocs.metadata.core.Cr2MovieInfoPackage-) | Sets the MovieInfo (Tags written by some Canon cameras when recording video). |
-| [getCr2MovieInfo()](#getCr2MovieInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2MovieInfo(long value)](#setCr2MovieInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2AFInfo2Package()](#getCr2AFInfo2Package--) | Gets the AFInfo3 (Newer version of the AFInfo record). |
-| [setCr2AFInfo2Package(Cr2AFInfo2Package value)](#setCr2AFInfo2Package-com.groupdocs.metadata.core.Cr2AFInfo2Package-) | Sets the AFInfo3 (Newer version of the AFInfo record). |
-| [getCr2AFInfo2()](#getCr2AFInfo2--) | Gets the CanonCameraSettings Offset. |
-| [setCr2AFInfo2(long value)](#setCr2AFInfo2-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2WBInfoPackage()](#getCr2WBInfoPackage--) | Gets the WBInfo (WB tags for the Canon G9). |
-| [setCr2WBInfoPackage(Cr2WBInfoPackage value)](#setCr2WBInfoPackage-com.groupdocs.metadata.core.Cr2WBInfoPackage-) | Sets the WBInfo (WB tags for the Canon G9). |
-| [getCr2WBInfo()](#getCr2WBInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2WBInfo(long value)](#setCr2WBInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2TimeInfoPackage()](#getCr2TimeInfoPackage--) | Gets the TimeInfo. |
-| [setCr2TimeInfoPackage(Cr2TimeInfoPackage value)](#setCr2TimeInfoPackage-com.groupdocs.metadata.core.Cr2TimeInfoPackage-) | Sets the TimeInfo. |
-| [getCr2TimeInfo()](#getCr2TimeInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2TimeInfo(long value)](#setCr2TimeInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2AFInfo3Package()](#getCr2AFInfo3Package--) | Gets the AFInfo3. |
-| [setCr2AFInfo3Package(Cr2AFInfo2Package value)](#setCr2AFInfo3Package-com.groupdocs.metadata.core.Cr2AFInfo2Package-) | Sets the AFInfo3. |
-| [getCr2AFInfo3()](#getCr2AFInfo3--) | Gets the CanonCameraSettings Offset. |
-| [setCr2AFInfo3(long value)](#setCr2AFInfo3-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2Functions1DPackage()](#getCr2Functions1DPackage--) | Gets the CustomFunctions1D (These custom functions are used by all 1D models up to but not including the Mark III.). |
-| [setCr2Functions1DPackage(Cr2Functions1DPackage value)](#setCr2Functions1DPackage-com.groupdocs.metadata.core.Cr2Functions1DPackage-) | Sets the CustomFunctions1D (These custom functions are used by all 1D models up to but not including the Mark III.). |
-| [getCr2Functions1D()](#getCr2Functions1D--) | Gets the CanonCameraSettings Offset. |
-| [setCr2Functions1D(long value)](#setCr2Functions1D-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2PersonalFuncsPackage()](#getCr2PersonalFuncsPackage--) | Gets the PersonalFunctions (Personal function settings for the EOS-1D.). |
-| [setCr2PersonalFuncsPackage(Cr2PersonalFuncsPackage value)](#setCr2PersonalFuncsPackage-com.groupdocs.metadata.core.Cr2PersonalFuncsPackage-) | Sets the PersonalFunctions (Personal function settings for the EOS-1D.). |
-| [getCr2PersonalFuncs()](#getCr2PersonalFuncs--) | Gets the CanonCameraSettings Offset. |
-| [setCr2PersonalFuncs(long value)](#setCr2PersonalFuncs-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2PersonalFuncValuesPackage()](#getCr2PersonalFuncValuesPackage--) | Gets the PersonalFunctionValues. |
-| [setCr2PersonalFuncValuesPackage(Cr2PersonalFuncValuesPackage value)](#setCr2PersonalFuncValuesPackage-com.groupdocs.metadata.core.Cr2PersonalFuncValuesPackage-) | Sets the PersonalFunctionValues. |
-| [getCr2PersonalFuncValues()](#getCr2PersonalFuncValues--) | Gets the CanonCameraSettings Offset. |
-| [setCr2PersonalFuncValues(long value)](#setCr2PersonalFuncValues-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2FileInfoPackage()](#getCr2FileInfoPackage--) | Not used in this version. |
-| [setCr2FileInfoPackage(Cr2FileInfoPackage value)](#setCr2FileInfoPackage-com.groupdocs.metadata.core.Cr2FileInfoPackage-) | Not used in this version. |
-| [getCr2FileInfo()](#getCr2FileInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2FileInfo(long value)](#setCr2FileInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2CropInfoPackage()](#getCr2CropInfoPackage--) | Gets the CropInfo. |
-| [setCr2CropInfoPackage(Cr2CropInfoPackage value)](#setCr2CropInfoPackage-com.groupdocs.metadata.core.Cr2CropInfoPackage-) | Sets the CropInfo. |
-| [getCr2CropInfo()](#getCr2CropInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2CropInfo(long value)](#setCr2CropInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2AspectInfoPackage()](#getCr2AspectInfoPackage--) | Gets the AspectInfo. |
-| [setCr2AspectInfoPackage(Cr2AspectInfoPackage value)](#setCr2AspectInfoPackage-com.groupdocs.metadata.core.Cr2AspectInfoPackage-) | Sets the AspectInfo. |
-| [getCr2AspectInfo()](#getCr2AspectInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2AspectInfo(long value)](#setCr2AspectInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2ProcessingPackage()](#getCr2ProcessingPackage--) | Gets the ProcessingInfo. |
-| [setCr2ProcessingPackage(Cr2ProcessingPackage value)](#setCr2ProcessingPackage-com.groupdocs.metadata.core.Cr2ProcessingPackage-) | Sets the ProcessingInfo. |
-| [getCr2Processing()](#getCr2Processing--) | Gets the CanonCameraSettings Offset. |
-| [setCr2Processing(long value)](#setCr2Processing-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2ColorBalancePackage()](#getCr2ColorBalancePackage--) | Gets the ColorBalance (These tags are used by the 10D and 300D.). |
-| [setCr2ColorBalancePackage(Cr2ColorBalancePackage value)](#setCr2ColorBalancePackage-com.groupdocs.metadata.core.Cr2ColorBalancePackage-) | Sets the ColorBalance (These tags are used by the 10D and 300D.). |
-| [getCr2ColorBalance()](#getCr2ColorBalance--) | Gets the CanonCameraSettings Offset. |
-| [setCr2ColorBalance(long value)](#setCr2ColorBalance-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2ModifiedInfoPackage()](#getCr2ModifiedInfoPackage--) | Gets the MeasuredColor. |
-| [setCr2ModifiedInfoPackage(Cr2ModifiedInfoPackage value)](#setCr2ModifiedInfoPackage-com.groupdocs.metadata.core.Cr2ModifiedInfoPackage-) | Sets the MeasuredColor. |
-| [getCr2ModifiedInfo()](#getCr2ModifiedInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2ModifiedInfo(long value)](#setCr2ModifiedInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2SensorInfoPackage()](#getCr2SensorInfoPackage--) | Gets the SensorInfo. |
-| [setCr2SensorInfoPackage(Cr2SensorInfoPackage value)](#setCr2SensorInfoPackage-com.groupdocs.metadata.core.Cr2SensorInfoPackage-) | Sets the SensorInfo. |
-| [getCr2SensorInfo()](#getCr2SensorInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2SensorInfo(long value)](#setCr2SensorInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2ColorInfoPackage()](#getCr2ColorInfoPackage--) | Gets the ColorInfo. |
-| [setCr2ColorInfoPackage(Cr2ColorInfoPackage value)](#setCr2ColorInfoPackage-com.groupdocs.metadata.core.Cr2ColorInfoPackage-) | Sets the ColorInfo. |
-| [getCr2ColorInfo()](#getCr2ColorInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2ColorInfo(long value)](#setCr2ColorInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2AFMicroAdjPackage()](#getCr2AFMicroAdjPackage--) | Gets the AFMicroAdj. |
-| [setCr2AFMicroAdjPackage(Cr2AFMicroAdjPackage value)](#setCr2AFMicroAdjPackage-com.groupdocs.metadata.core.Cr2AFMicroAdjPackage-) | Sets the AFMicroAdj. |
-| [getCr2AFMicroAdj()](#getCr2AFMicroAdj--) | Gets the CanonCameraSettings Offset. |
-| [setCr2AFMicroAdj(long value)](#setCr2AFMicroAdj-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2LightingOptPackage()](#getCr2LightingOptPackage--) | Gets the LightingOpt (This information is new in images from the EOS 7D.). |
-| [setCr2LightingOptPackage(Cr2LightingOptPackage value)](#setCr2LightingOptPackage-com.groupdocs.metadata.core.Cr2LightingOptPackage-) | Sets the LightingOpt (This information is new in images from the EOS 7D.). |
-| [getCr2LightingOpt()](#getCr2LightingOpt--) | Gets the CanonCameraSettings Offset. |
-| [setCr2LightingOpt(long value)](#setCr2LightingOpt-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2MultiExpPackage()](#getCr2MultiExpPackage--) | Gets the MultiExp. |
-| [setCr2MultiExpPackage(Cr2MultiExpPackage value)](#setCr2MultiExpPackage-com.groupdocs.metadata.core.Cr2MultiExpPackage-) | Sets the MultiExp. |
-| [getCr2MultiExp()](#getCr2MultiExp--) | Gets the CanonCameraSettings Offset. |
-| [setCr2MultiExp(long value)](#setCr2MultiExp-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2LogInfoPackage()](#getCr2LogInfoPackage--) | Gets the LogInfo. |
-| [setCr2LogInfoPackage(Cr2LogInfoPackage value)](#setCr2LogInfoPackage-com.groupdocs.metadata.core.Cr2LogInfoPackage-) | Sets the LogInfo. |
-| [getCr2LogInfo()](#getCr2LogInfo--) | Gets the CanonCameraSettings Offset. |
-| [setCr2LogInfo(long value)](#setCr2LogInfo-long-) | Sets the CanonCameraSettings Offset. |
-| [getCr2AFConfigPackage()](#getCr2AFConfigPackage--) | Gets the AFConfig. |
-| [setCr2AFConfigPackage(Cr2AFConfigPackage value)](#setCr2AFConfigPackage-com.groupdocs.metadata.core.Cr2AFConfigPackage-) | Sets the AFConfig. |
-| [getCr2AFConfig()](#getCr2AFConfig--) | Gets the CanonCameraSettings Offset. |
-| [setCr2AFConfig(long value)](#setCr2AFConfig-long-) | Sets the CanonCameraSettings Offset. |
-| [getImageType()](#getImageType--) | Gets the ImageType. |
-| [setImageType(String value)](#setImageType-java.lang.String-) | Sets the ImageType. |
-| [getFirmwareVersion()](#getFirmwareVersion--) | Gets the FirmwareVersion. |
-| [setFirmwareVersion(String value)](#setFirmwareVersion-java.lang.String-) | Sets the FirmwareVersion. |
-| [getFileNumber()](#getFileNumber--) | Gets the FileNumber. |
-| [setFileNumber(long value)](#setFileNumber-long-) | Sets the FileNumber. |
-| [getOwnerName()](#getOwnerName--) | Gets the OwnerName. |
-| [setOwnerName(String value)](#setOwnerName-java.lang.String-) | Sets the OwnerName. |
-| [getSerialNumber()](#getSerialNumber--) | Gets the SerialNumber. |
-| [setSerialNumber(long value)](#setSerialNumber-long-) | Sets the SerialNumber. |
-| [getFileLength()](#getFileLength--) | Gets the FileLength. |
-| [setFileLength(long value)](#setFileLength-long-) | Sets the FileLength. |
-| [getModelID()](#getModelID--) | Gets the ModelID. |
-| [setModelID(long value)](#setModelID-long-) | Sets the ModelID. |
-| [getThumbnailImageValidArea()](#getThumbnailImageValidArea--) | Gets the ThumbnailImageValidArea. |
-| [setThumbnailImageValidArea(int[] value)](#setThumbnailImageValidArea-int---) | Sets the ThumbnailImageValidArea. |
-| [getSerialNumberFormat()](#getSerialNumberFormat--) | Gets the SerialNumberFormat. |
-| [setSerialNumberFormat(long value)](#setSerialNumberFormat-long-) | Sets the SerialNumberFormat. |
-| [getSuperMacro()](#getSuperMacro--) | Gets the SuperMacro. |
-| [setSuperMacro(int value)](#setSuperMacro-int-) | Sets the SuperMacro. |
-| [getDateStampMode()](#getDateStampMode--) | Gets the DateStampMode. |
-| [setDateStampMode(int value)](#setDateStampMode-int-) | Sets the DateStampMode. |
-| [getMyColors()](#getMyColors--) | Gets the MyColors. |
-| [setMyColors(int[] value)](#setMyColors-int---) | Sets the MyColors. |
-| [getContrastInfo()](#getContrastInfo--) | Gets the Categories. |
-| [setContrastInfo(int[] value)](#setContrastInfo-int---) | Sets the Categories. |
-| [getCategories()](#getCategories--) | Gets the Categories. |
-| [setCategories(long[] value)](#setCategories-long---) | Sets the Categories. |
-| [getImageUniqueID()](#getImageUniqueID--) | Gets the ImageUniqueID. |
-| [setImageUniqueID(byte[] value)](#setImageUniqueID-byte---) | Sets the ImageUniqueID. |
-| [getOriginalDecisionDataOffset()](#getOriginalDecisionDataOffset--) | Gets the OriginalDecisionDataOffset. |
-| [setOriginalDecisionDataOffset(long value)](#setOriginalDecisionDataOffset-long-) | Sets the OriginalDecisionDataOffset. |
-| [getLensModel()](#getLensModel--) | Gets the LensModel. |
-| [setLensModel(String value)](#setLensModel-java.lang.String-) | Sets the LensModel. |
-| [getInternalSerialNumber()](#getInternalSerialNumber--) | Gets the InternalSerialNumber. |
-| [setInternalSerialNumber(String value)](#setInternalSerialNumber-java.lang.String-) | Sets the InternalSerialNumber. |
-| [getColorTemperature()](#getColorTemperature--) | Gets the ColorTemperature. |
-| [setColorTemperature(int value)](#setColorTemperature-int-) | Sets the ColorTemperature. |
-| [getMeasuredColor()](#getMeasuredColor--) | Gets the MeasuredColor. |
-| [setMeasuredColor(int[] value)](#setMeasuredColor-int---) | Sets the MeasuredColor. |
-| [getColorSpace()](#getColorSpace--) | Gets the ColorSpace. |
-| [setColorSpace(int value)](#setColorSpace-int-) | Sets the ColorSpace. |
-| [getCanonFlags()](#getCanonFlags--) | Gets the CanonFlags. |
-| [setCanonFlags(int value)](#setCanonFlags-int-) | Sets the CanonFlags. |
-| [getVRDOffset()](#getVRDOffset--) | Gets the VRDOffset. |
-| [setVRDOffset(long value)](#setVRDOffset-long-) | Sets the VRDOffset. |
-| [getPictureStyleUserDef()](#getPictureStyleUserDef--) | Gets the PictureStyleUserDef. |
-| [setPictureStyleUserDef(int[] value)](#setPictureStyleUserDef-int---) | Sets the PictureStyleUserDef. |
-| [getPictureStylePC()](#getPictureStylePC--) | Gets the PictureStylePC. |
-| [setPictureStylePC(int[] value)](#setPictureStylePC-int---) | Sets the PictureStylePC. |
-| [getCustomPictureStyleFileName()](#getCustomPictureStyleFileName--) | Gets the CustomPictureStyleFileName. |
-| [setCustomPictureStyleFileName(String value)](#setCustomPictureStyleFileName-java.lang.String-) | Sets the CustomPictureStyleFileName. |
-| [getLensInfo()](#getLensInfo--) | Gets the LensInfo. |
-| [setLensInfo(byte[] value)](#setLensInfo-byte---) | Sets the LensInfo. |
-| [getAmbienceInfo()](#getAmbienceInfo--) | Gets the LensInfo. |
-| [setAmbienceInfo(long[] value)](#setAmbienceInfo-long---) | Sets the LensInfo. |
-| [getCameraInfo()](#getCameraInfo--) | Gets the CameraInfo. |
-| [setCameraInfo(long value)](#setCameraInfo-long-) | Sets the CameraInfo. |
-| [getCustomFunctions()](#getCustomFunctions--) | Gets the CustomFunctions. |
-| [setCustomFunctions(long value)](#setCustomFunctions-long-) | Sets the CustomFunctions. |
-| [getFaceDetect1()](#getFaceDetect1--) | Gets the FaceDetect1. |
-| [setFaceDetect1(long value)](#setFaceDetect1-long-) | Sets the FaceDetect1. |
-| [getFaceDetect2()](#getFaceDetect2--) | Gets the FaceDetect2. |
-| [setFaceDetect2(long value)](#setFaceDetect2-long-) | Sets the FaceDetect2. |
-| [getFaceDetect3()](#getFaceDetect3--) | Gets the FaceDetect3. |
-| [setFaceDetect3(long value)](#setFaceDetect3-long-) | Sets the FaceDetect3. |
-| [getPreviewImageInfo()](#getPreviewImageInfo--) | Gets the PreviewImageInfo. |
-| [setPreviewImageInfo(long value)](#setPreviewImageInfo-long-) | Sets the PreviewImageInfo. |
-| [getColorData1()](#getColorData1--) | Gets the ColorData1. |
-| [setColorData1(long value)](#setColorData1-long-) | Sets the ColorData1. |
-| [getVignettingCorr()](#getVignettingCorr--) | Gets the VignettingCorr. |
-| [setVignettingCorr(long value)](#setVignettingCorr-long-) | Sets the VignettingCorr. |
-| [getHDRInfo()](#getHDRInfo--) | Gets the HDRInfo. |
-| [setHDRInfo(long value)](#setHDRInfo-long-) | Sets the HDRInfo. |
-| [getRawBurstModeRoll()](#getRawBurstModeRoll--) | Gets the RawBurstModeRoll. |
-| [setRawBurstModeRoll(long value)](#setRawBurstModeRoll-long-) | Sets the RawBurstModeRoll. |
+| [getCr2CameraSettingsPackage()](#getCr2CameraSettingsPackage--) | Gets the CanonCameraSettings.
+ |
+| [setCr2CameraSettingsPackage(Cr2CameraSettingsPackage value)](#setCr2CameraSettingsPackage-com.groupdocs.metadata.core.Cr2CameraSettingsPackage-) | Sets the CanonCameraSettings.
+ |
+| [getCameraSettings()](#getCameraSettings--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCameraSettings(long value)](#setCameraSettings-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2FocalLengthPackage()](#getCr2FocalLengthPackage--) | Gets the CanonFocalLength.
+ |
+| [setCr2FocalLengthPackage(Cr2FocalLengthPackage value)](#setCr2FocalLengthPackage-com.groupdocs.metadata.core.Cr2FocalLengthPackage-) | Sets the CanonFocalLength.
+ |
+| [getCr2FocalLength()](#getCr2FocalLength--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2FocalLength(long value)](#setCr2FocalLength-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2ShotInfoPackage()](#getCr2ShotInfoPackage--) | Gets the CanonShotInfo.
+ |
+| [setCr2ShotInfoPackage(Cr2ShotInfoPackage value)](#setCr2ShotInfoPackage-com.groupdocs.metadata.core.Cr2ShotInfoPackage-) | Sets the CanonShotInfo.
+ |
+| [getCr2ShotInfo()](#getCr2ShotInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2ShotInfo(long value)](#setCr2ShotInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2PanoramaPackage()](#getCr2PanoramaPackage--) | Gets the CanonPanorama.
+ |
+| [setCr2PanoramaPackage(Cr2PanoramaPackage value)](#setCr2PanoramaPackage-com.groupdocs.metadata.core.Cr2PanoramaPackage-) | Sets the CanonPanorama.
+ |
+| [getCr2Panorama()](#getCr2Panorama--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2Panorama(long value)](#setCr2Panorama-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2MovieInfoPackage()](#getCr2MovieInfoPackage--) | Gets the MovieInfo (Tags written by some Canon cameras when recording video).
+ |
+| [setCr2MovieInfoPackage(Cr2MovieInfoPackage value)](#setCr2MovieInfoPackage-com.groupdocs.metadata.core.Cr2MovieInfoPackage-) | Sets the MovieInfo (Tags written by some Canon cameras when recording video).
+ |
+| [getCr2MovieInfo()](#getCr2MovieInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2MovieInfo(long value)](#setCr2MovieInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2AFInfo2Package()](#getCr2AFInfo2Package--) | Gets the AFInfo3 (Newer version of the AFInfo record).
+ |
+| [setCr2AFInfo2Package(Cr2AFInfo2Package value)](#setCr2AFInfo2Package-com.groupdocs.metadata.core.Cr2AFInfo2Package-) | Sets the AFInfo3 (Newer version of the AFInfo record).
+ |
+| [getCr2AFInfo2()](#getCr2AFInfo2--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2AFInfo2(long value)](#setCr2AFInfo2-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2WBInfoPackage()](#getCr2WBInfoPackage--) | Gets the WBInfo (WB tags for the Canon G9).
+ |
+| [setCr2WBInfoPackage(Cr2WBInfoPackage value)](#setCr2WBInfoPackage-com.groupdocs.metadata.core.Cr2WBInfoPackage-) | Sets the WBInfo (WB tags for the Canon G9).
+ |
+| [getCr2WBInfo()](#getCr2WBInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2WBInfo(long value)](#setCr2WBInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2TimeInfoPackage()](#getCr2TimeInfoPackage--) | Gets the TimeInfo.
+ |
+| [setCr2TimeInfoPackage(Cr2TimeInfoPackage value)](#setCr2TimeInfoPackage-com.groupdocs.metadata.core.Cr2TimeInfoPackage-) | Sets the TimeInfo.
+ |
+| [getCr2TimeInfo()](#getCr2TimeInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2TimeInfo(long value)](#setCr2TimeInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2AFInfo3Package()](#getCr2AFInfo3Package--) | Gets the AFInfo3.
+ |
+| [setCr2AFInfo3Package(Cr2AFInfo2Package value)](#setCr2AFInfo3Package-com.groupdocs.metadata.core.Cr2AFInfo2Package-) | Sets the AFInfo3.
+ |
+| [getCr2AFInfo3()](#getCr2AFInfo3--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2AFInfo3(long value)](#setCr2AFInfo3-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2Functions1DPackage()](#getCr2Functions1DPackage--) | Gets the CustomFunctions1D (These custom functions are used by all 1D models up to but not including the Mark III.).
+ |
+| [setCr2Functions1DPackage(Cr2Functions1DPackage value)](#setCr2Functions1DPackage-com.groupdocs.metadata.core.Cr2Functions1DPackage-) | Sets the CustomFunctions1D (These custom functions are used by all 1D models up to but not including the Mark III.).
+ |
+| [getCr2Functions1D()](#getCr2Functions1D--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2Functions1D(long value)](#setCr2Functions1D-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2PersonalFuncsPackage()](#getCr2PersonalFuncsPackage--) | Gets the PersonalFunctions (Personal function settings for the EOS-1D.).
+ |
+| [setCr2PersonalFuncsPackage(Cr2PersonalFuncsPackage value)](#setCr2PersonalFuncsPackage-com.groupdocs.metadata.core.Cr2PersonalFuncsPackage-) | Sets the PersonalFunctions (Personal function settings for the EOS-1D.).
+ |
+| [getCr2PersonalFuncs()](#getCr2PersonalFuncs--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2PersonalFuncs(long value)](#setCr2PersonalFuncs-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2PersonalFuncValuesPackage()](#getCr2PersonalFuncValuesPackage--) | Gets the PersonalFunctionValues.
+ |
+| [setCr2PersonalFuncValuesPackage(Cr2PersonalFuncValuesPackage value)](#setCr2PersonalFuncValuesPackage-com.groupdocs.metadata.core.Cr2PersonalFuncValuesPackage-) | Sets the PersonalFunctionValues.
+ |
+| [getCr2PersonalFuncValues()](#getCr2PersonalFuncValues--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2PersonalFuncValues(long value)](#setCr2PersonalFuncValues-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2FileInfoPackage()](#getCr2FileInfoPackage--) | Not used in this version.
+ |
+| [setCr2FileInfoPackage(Cr2FileInfoPackage value)](#setCr2FileInfoPackage-com.groupdocs.metadata.core.Cr2FileInfoPackage-) | Not used in this version.
+ |
+| [getCr2FileInfo()](#getCr2FileInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2FileInfo(long value)](#setCr2FileInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2CropInfoPackage()](#getCr2CropInfoPackage--) | Gets the CropInfo.
+ |
+| [setCr2CropInfoPackage(Cr2CropInfoPackage value)](#setCr2CropInfoPackage-com.groupdocs.metadata.core.Cr2CropInfoPackage-) | Sets the CropInfo.
+ |
+| [getCr2CropInfo()](#getCr2CropInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2CropInfo(long value)](#setCr2CropInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2AspectInfoPackage()](#getCr2AspectInfoPackage--) | Gets the AspectInfo.
+ |
+| [setCr2AspectInfoPackage(Cr2AspectInfoPackage value)](#setCr2AspectInfoPackage-com.groupdocs.metadata.core.Cr2AspectInfoPackage-) | Sets the AspectInfo.
+ |
+| [getCr2AspectInfo()](#getCr2AspectInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2AspectInfo(long value)](#setCr2AspectInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2ProcessingPackage()](#getCr2ProcessingPackage--) | Gets the ProcessingInfo.
+ |
+| [setCr2ProcessingPackage(Cr2ProcessingPackage value)](#setCr2ProcessingPackage-com.groupdocs.metadata.core.Cr2ProcessingPackage-) | Sets the ProcessingInfo.
+ |
+| [getCr2Processing()](#getCr2Processing--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2Processing(long value)](#setCr2Processing-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2ColorBalancePackage()](#getCr2ColorBalancePackage--) | Gets the ColorBalance (These tags are used by the 10D and 300D.).
+ |
+| [setCr2ColorBalancePackage(Cr2ColorBalancePackage value)](#setCr2ColorBalancePackage-com.groupdocs.metadata.core.Cr2ColorBalancePackage-) | Sets the ColorBalance (These tags are used by the 10D and 300D.).
+ |
+| [getCr2ColorBalance()](#getCr2ColorBalance--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2ColorBalance(long value)](#setCr2ColorBalance-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2ModifiedInfoPackage()](#getCr2ModifiedInfoPackage--) | Gets the MeasuredColor.
+ |
+| [setCr2ModifiedInfoPackage(Cr2ModifiedInfoPackage value)](#setCr2ModifiedInfoPackage-com.groupdocs.metadata.core.Cr2ModifiedInfoPackage-) | Sets the MeasuredColor.
+ |
+| [getCr2ModifiedInfo()](#getCr2ModifiedInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2ModifiedInfo(long value)](#setCr2ModifiedInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2SensorInfoPackage()](#getCr2SensorInfoPackage--) | Gets the SensorInfo.
+ |
+| [setCr2SensorInfoPackage(Cr2SensorInfoPackage value)](#setCr2SensorInfoPackage-com.groupdocs.metadata.core.Cr2SensorInfoPackage-) | Sets the SensorInfo.
+ |
+| [getCr2SensorInfo()](#getCr2SensorInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2SensorInfo(long value)](#setCr2SensorInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2ColorInfoPackage()](#getCr2ColorInfoPackage--) | Gets the ColorInfo.
+ |
+| [setCr2ColorInfoPackage(Cr2ColorInfoPackage value)](#setCr2ColorInfoPackage-com.groupdocs.metadata.core.Cr2ColorInfoPackage-) | Sets the ColorInfo.
+ |
+| [getCr2ColorInfo()](#getCr2ColorInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2ColorInfo(long value)](#setCr2ColorInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2AFMicroAdjPackage()](#getCr2AFMicroAdjPackage--) | Gets the AFMicroAdj.
+ |
+| [setCr2AFMicroAdjPackage(Cr2AFMicroAdjPackage value)](#setCr2AFMicroAdjPackage-com.groupdocs.metadata.core.Cr2AFMicroAdjPackage-) | Sets the AFMicroAdj.
+ |
+| [getCr2AFMicroAdj()](#getCr2AFMicroAdj--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2AFMicroAdj(long value)](#setCr2AFMicroAdj-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2LightingOptPackage()](#getCr2LightingOptPackage--) | Gets the LightingOpt (This information is new in images from the EOS 7D.).
+ |
+| [setCr2LightingOptPackage(Cr2LightingOptPackage value)](#setCr2LightingOptPackage-com.groupdocs.metadata.core.Cr2LightingOptPackage-) | Sets the LightingOpt (This information is new in images from the EOS 7D.).
+ |
+| [getCr2LightingOpt()](#getCr2LightingOpt--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2LightingOpt(long value)](#setCr2LightingOpt-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2MultiExpPackage()](#getCr2MultiExpPackage--) | Gets the MultiExp.
+ |
+| [setCr2MultiExpPackage(Cr2MultiExpPackage value)](#setCr2MultiExpPackage-com.groupdocs.metadata.core.Cr2MultiExpPackage-) | Sets the MultiExp.
+ |
+| [getCr2MultiExp()](#getCr2MultiExp--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2MultiExp(long value)](#setCr2MultiExp-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2LogInfoPackage()](#getCr2LogInfoPackage--) | Gets the LogInfo.
+ |
+| [setCr2LogInfoPackage(Cr2LogInfoPackage value)](#setCr2LogInfoPackage-com.groupdocs.metadata.core.Cr2LogInfoPackage-) | Sets the LogInfo.
+ |
+| [getCr2LogInfo()](#getCr2LogInfo--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2LogInfo(long value)](#setCr2LogInfo-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getCr2AFConfigPackage()](#getCr2AFConfigPackage--) | Gets the AFConfig.
+ |
+| [setCr2AFConfigPackage(Cr2AFConfigPackage value)](#setCr2AFConfigPackage-com.groupdocs.metadata.core.Cr2AFConfigPackage-) | Sets the AFConfig.
+ |
+| [getCr2AFConfig()](#getCr2AFConfig--) | Gets the CanonCameraSettings Offset.
+ |
+| [setCr2AFConfig(long value)](#setCr2AFConfig-long-) | Sets the CanonCameraSettings Offset.
+ |
+| [getImageType()](#getImageType--) | Gets the ImageType.
+ |
+| [setImageType(String value)](#setImageType-java.lang.String-) | Sets the ImageType.
+ |
+| [getFirmwareVersion()](#getFirmwareVersion--) | Gets the FirmwareVersion.
+ |
+| [setFirmwareVersion(String value)](#setFirmwareVersion-java.lang.String-) | Sets the FirmwareVersion.
+ |
+| [getFileNumber()](#getFileNumber--) | Gets the FileNumber.
+ |
+| [setFileNumber(long value)](#setFileNumber-long-) | Sets the FileNumber.
+ |
+| [getOwnerName()](#getOwnerName--) | Gets the OwnerName.
+ |
+| [setOwnerName(String value)](#setOwnerName-java.lang.String-) | Sets the OwnerName.
+ |
+| [getSerialNumber()](#getSerialNumber--) | Gets the SerialNumber.
+ |
+| [setSerialNumber(long value)](#setSerialNumber-long-) | Sets the SerialNumber.
+ |
+| [getFileLength()](#getFileLength--) | Gets the FileLength.
+ |
+| [setFileLength(long value)](#setFileLength-long-) | Sets the FileLength.
+ |
+| [getModelID()](#getModelID--) | Gets the ModelID.
+ |
+| [setModelID(long value)](#setModelID-long-) | Sets the ModelID.
+ |
+| [getThumbnailImageValidArea()](#getThumbnailImageValidArea--) | Gets the ThumbnailImageValidArea.
+ |
+| [setThumbnailImageValidArea(int[] value)](#setThumbnailImageValidArea-int---) | Sets the ThumbnailImageValidArea.
+ |
+| [getSerialNumberFormat()](#getSerialNumberFormat--) | Gets the SerialNumberFormat.
+ |
+| [setSerialNumberFormat(long value)](#setSerialNumberFormat-long-) | Sets the SerialNumberFormat.
+ |
+| [getSuperMacro()](#getSuperMacro--) | Gets the SuperMacro.
+ |
+| [setSuperMacro(int value)](#setSuperMacro-int-) | Sets the SuperMacro.
+ |
+| [getDateStampMode()](#getDateStampMode--) | Gets the DateStampMode.
+ |
+| [setDateStampMode(int value)](#setDateStampMode-int-) | Sets the DateStampMode.
+ |
+| [getMyColors()](#getMyColors--) | Gets the MyColors.
+ |
+| [setMyColors(int[] value)](#setMyColors-int---) | Sets the MyColors.
+ |
+| [getContrastInfo()](#getContrastInfo--) | Gets the Categories.
+ |
+| [setContrastInfo(int[] value)](#setContrastInfo-int---) | Sets the Categories.
+ |
+| [getCategories()](#getCategories--) | Gets the Categories.
+ |
+| [setCategories(long[] value)](#setCategories-long---) | Sets the Categories.
+ |
+| [getImageUniqueID()](#getImageUniqueID--) | Gets the ImageUniqueID.
+ |
+| [setImageUniqueID(byte[] value)](#setImageUniqueID-byte---) | Sets the ImageUniqueID.
+ |
+| [getOriginalDecisionDataOffset()](#getOriginalDecisionDataOffset--) | Gets the OriginalDecisionDataOffset.
+ |
+| [setOriginalDecisionDataOffset(long value)](#setOriginalDecisionDataOffset-long-) | Sets the OriginalDecisionDataOffset.
+ |
+| [getLensModel()](#getLensModel--) | Gets the LensModel.
+ |
+| [setLensModel(String value)](#setLensModel-java.lang.String-) | Sets the LensModel.
+ |
+| [getInternalSerialNumber()](#getInternalSerialNumber--) | Gets the InternalSerialNumber.
+ |
+| [setInternalSerialNumber(String value)](#setInternalSerialNumber-java.lang.String-) | Sets the InternalSerialNumber.
+ |
+| [getColorTemperature()](#getColorTemperature--) | Gets the ColorTemperature.
+ |
+| [setColorTemperature(int value)](#setColorTemperature-int-) | Sets the ColorTemperature.
+ |
+| [getMeasuredColor()](#getMeasuredColor--) | Gets the MeasuredColor.
+ |
+| [setMeasuredColor(int[] value)](#setMeasuredColor-int---) | Sets the MeasuredColor.
+ |
+| [getColorSpace()](#getColorSpace--) | Gets the ColorSpace.
+ |
+| [setColorSpace(int value)](#setColorSpace-int-) | Sets the ColorSpace.
+ |
+| [getCanonFlags()](#getCanonFlags--) | Gets the CanonFlags.
+ |
+| [setCanonFlags(int value)](#setCanonFlags-int-) | Sets the CanonFlags.
+ |
+| [getVRDOffset()](#getVRDOffset--) | Gets the VRDOffset.
+ |
+| [setVRDOffset(long value)](#setVRDOffset-long-) | Sets the VRDOffset.
+ |
+| [getPictureStyleUserDef()](#getPictureStyleUserDef--) | Gets the PictureStyleUserDef.
+ |
+| [setPictureStyleUserDef(int[] value)](#setPictureStyleUserDef-int---) | Sets the PictureStyleUserDef.
+ |
+| [getPictureStylePC()](#getPictureStylePC--) | Gets the PictureStylePC.
+ |
+| [setPictureStylePC(int[] value)](#setPictureStylePC-int---) | Sets the PictureStylePC.
+ |
+| [getCustomPictureStyleFileName()](#getCustomPictureStyleFileName--) | Gets the CustomPictureStyleFileName.
+ |
+| [setCustomPictureStyleFileName(String value)](#setCustomPictureStyleFileName-java.lang.String-) | Sets the CustomPictureStyleFileName.
+ |
+| [getLensInfo()](#getLensInfo--) | Gets the LensInfo.
+ |
+| [setLensInfo(byte[] value)](#setLensInfo-byte---) | Sets the LensInfo.
+ |
+| [getAmbienceInfo()](#getAmbienceInfo--) | Gets the LensInfo.
+ |
+| [setAmbienceInfo(long[] value)](#setAmbienceInfo-long---) | Sets the LensInfo.
+ |
+| [getCameraInfo()](#getCameraInfo--) | Gets the CameraInfo.
+ |
+| [setCameraInfo(long value)](#setCameraInfo-long-) | Sets the CameraInfo.
+ |
+| [getCustomFunctions()](#getCustomFunctions--) | Gets the CustomFunctions.
+ |
+| [setCustomFunctions(long value)](#setCustomFunctions-long-) | Sets the CustomFunctions.
+ |
+| [getFaceDetect1()](#getFaceDetect1--) | Gets the FaceDetect1.
+ |
+| [setFaceDetect1(long value)](#setFaceDetect1-long-) | Sets the FaceDetect1.
+ |
+| [getFaceDetect2()](#getFaceDetect2--) | Gets the FaceDetect2.
+ |
+| [setFaceDetect2(long value)](#setFaceDetect2-long-) | Sets the FaceDetect2.
+ |
+| [getFaceDetect3()](#getFaceDetect3--) | Gets the FaceDetect3.
+ |
+| [setFaceDetect3(long value)](#setFaceDetect3-long-) | Sets the FaceDetect3.
+ |
+| [getPreviewImageInfo()](#getPreviewImageInfo--) | Gets the PreviewImageInfo.
+ |
+| [setPreviewImageInfo(long value)](#setPreviewImageInfo-long-) | Sets the PreviewImageInfo.
+ |
+| [getColorData1()](#getColorData1--) | Gets the ColorData1.
+ |
+| [setColorData1(long value)](#setColorData1-long-) | Sets the ColorData1.
+ |
+| [getVignettingCorr()](#getVignettingCorr--) | Gets the VignettingCorr.
+ |
+| [setVignettingCorr(long value)](#setVignettingCorr-long-) | Sets the VignettingCorr.
+ |
+| [getHDRInfo()](#getHDRInfo--) | Gets the HDRInfo.
+ |
+| [setHDRInfo(long value)](#setHDRInfo-long-) | Sets the HDRInfo.
+ |
+| [getRawBurstModeRoll()](#getRawBurstModeRoll--) | Gets the RawBurstModeRoll.
+ |
+| [setRawBurstModeRoll(long value)](#setRawBurstModeRoll-long-) | Sets the RawBurstModeRoll.
+ |
### Cr2MakerNotePackage() {#Cr2MakerNotePackage--}
```
public Cr2MakerNotePackage()
```
-Initializes a new instance of the Cr2MakerNotePackage class.
+Initializes a new instance of the
+Cr2MakerNotePackage
+ class.
+
### getCr2CameraSettingsPackage() {#getCr2CameraSettingsPackage--}
```
@@ -214,8 +397,10 @@ public final Cr2CameraSettingsPackage getCr2CameraSettingsPackage()
Gets the CanonCameraSettings.
+
**Returns:**
[Cr2CameraSettingsPackage](../../com.groupdocs.metadata.core/cr2camerasettingspackage) - The CanonCameraSettings.
+
### setCr2CameraSettingsPackage(Cr2CameraSettingsPackage value) {#setCr2CameraSettingsPackage-com.groupdocs.metadata.core.Cr2CameraSettingsPackage-}
```
public final void setCr2CameraSettingsPackage(Cr2CameraSettingsPackage value)
@@ -224,10 +409,12 @@ public final void setCr2CameraSettingsPackage(Cr2CameraSettingsPackage value)
Sets the CanonCameraSettings.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2CameraSettingsPackage](../../com.groupdocs.metadata.core/cr2camerasettingspackage) | The CanonCameraSettings. |
+| value | [Cr2CameraSettingsPackage](../../com.groupdocs.metadata.core/cr2camerasettingspackage) | The CanonCameraSettings.
+ |
### getCameraSettings() {#getCameraSettings--}
```
@@ -237,8 +424,10 @@ public final long getCameraSettings()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCameraSettings(long value) {#setCameraSettings-long-}
```
public final void setCameraSettings(long value)
@@ -247,10 +436,12 @@ public final void setCameraSettings(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2FocalLengthPackage() {#getCr2FocalLengthPackage--}
```
@@ -260,8 +451,10 @@ public final Cr2FocalLengthPackage getCr2FocalLengthPackage()
Gets the CanonFocalLength.
+
**Returns:**
[Cr2FocalLengthPackage](../../com.groupdocs.metadata.core/cr2focallengthpackage) - The CanonFocalLength.
+
### setCr2FocalLengthPackage(Cr2FocalLengthPackage value) {#setCr2FocalLengthPackage-com.groupdocs.metadata.core.Cr2FocalLengthPackage-}
```
public final void setCr2FocalLengthPackage(Cr2FocalLengthPackage value)
@@ -270,10 +463,12 @@ public final void setCr2FocalLengthPackage(Cr2FocalLengthPackage value)
Sets the CanonFocalLength.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2FocalLengthPackage](../../com.groupdocs.metadata.core/cr2focallengthpackage) | The CanonFocalLength. |
+| value | [Cr2FocalLengthPackage](../../com.groupdocs.metadata.core/cr2focallengthpackage) | The CanonFocalLength.
+ |
### getCr2FocalLength() {#getCr2FocalLength--}
```
@@ -283,8 +478,10 @@ public final long getCr2FocalLength()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2FocalLength(long value) {#setCr2FocalLength-long-}
```
public final void setCr2FocalLength(long value)
@@ -293,10 +490,12 @@ public final void setCr2FocalLength(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2ShotInfoPackage() {#getCr2ShotInfoPackage--}
```
@@ -306,8 +505,10 @@ public final Cr2ShotInfoPackage getCr2ShotInfoPackage()
Gets the CanonShotInfo.
+
**Returns:**
[Cr2ShotInfoPackage](../../com.groupdocs.metadata.core/cr2shotinfopackage) - The CanonShotInfo.
+
### setCr2ShotInfoPackage(Cr2ShotInfoPackage value) {#setCr2ShotInfoPackage-com.groupdocs.metadata.core.Cr2ShotInfoPackage-}
```
public final void setCr2ShotInfoPackage(Cr2ShotInfoPackage value)
@@ -316,10 +517,12 @@ public final void setCr2ShotInfoPackage(Cr2ShotInfoPackage value)
Sets the CanonShotInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2ShotInfoPackage](../../com.groupdocs.metadata.core/cr2shotinfopackage) | The CanonShotInfo. |
+| value | [Cr2ShotInfoPackage](../../com.groupdocs.metadata.core/cr2shotinfopackage) | The CanonShotInfo.
+ |
### getCr2ShotInfo() {#getCr2ShotInfo--}
```
@@ -329,8 +532,10 @@ public final long getCr2ShotInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2ShotInfo(long value) {#setCr2ShotInfo-long-}
```
public final void setCr2ShotInfo(long value)
@@ -339,10 +544,12 @@ public final void setCr2ShotInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2PanoramaPackage() {#getCr2PanoramaPackage--}
```
@@ -352,8 +559,10 @@ public final Cr2PanoramaPackage getCr2PanoramaPackage()
Gets the CanonPanorama.
+
**Returns:**
[Cr2PanoramaPackage](../../com.groupdocs.metadata.core/cr2panoramapackage) - The CanonPanorama.
+
### setCr2PanoramaPackage(Cr2PanoramaPackage value) {#setCr2PanoramaPackage-com.groupdocs.metadata.core.Cr2PanoramaPackage-}
```
public final void setCr2PanoramaPackage(Cr2PanoramaPackage value)
@@ -362,10 +571,12 @@ public final void setCr2PanoramaPackage(Cr2PanoramaPackage value)
Sets the CanonPanorama.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2PanoramaPackage](../../com.groupdocs.metadata.core/cr2panoramapackage) | The CanonPanorama. |
+| value | [Cr2PanoramaPackage](../../com.groupdocs.metadata.core/cr2panoramapackage) | The CanonPanorama.
+ |
### getCr2Panorama() {#getCr2Panorama--}
```
@@ -375,8 +586,10 @@ public final long getCr2Panorama()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2Panorama(long value) {#setCr2Panorama-long-}
```
public final void setCr2Panorama(long value)
@@ -385,10 +598,12 @@ public final void setCr2Panorama(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2MovieInfoPackage() {#getCr2MovieInfoPackage--}
```
@@ -398,8 +613,10 @@ public final Cr2MovieInfoPackage getCr2MovieInfoPackage()
Gets the MovieInfo (Tags written by some Canon cameras when recording video).
+
**Returns:**
[Cr2MovieInfoPackage](../../com.groupdocs.metadata.core/cr2movieinfopackage) - The MovieInfo.
+
### setCr2MovieInfoPackage(Cr2MovieInfoPackage value) {#setCr2MovieInfoPackage-com.groupdocs.metadata.core.Cr2MovieInfoPackage-}
```
public final void setCr2MovieInfoPackage(Cr2MovieInfoPackage value)
@@ -408,10 +625,12 @@ public final void setCr2MovieInfoPackage(Cr2MovieInfoPackage value)
Sets the MovieInfo (Tags written by some Canon cameras when recording video).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2MovieInfoPackage](../../com.groupdocs.metadata.core/cr2movieinfopackage) | The MovieInfo. |
+| value | [Cr2MovieInfoPackage](../../com.groupdocs.metadata.core/cr2movieinfopackage) | The MovieInfo.
+ |
### getCr2MovieInfo() {#getCr2MovieInfo--}
```
@@ -421,8 +640,10 @@ public final long getCr2MovieInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2MovieInfo(long value) {#setCr2MovieInfo-long-}
```
public final void setCr2MovieInfo(long value)
@@ -431,10 +652,12 @@ public final void setCr2MovieInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2AFInfo2Package() {#getCr2AFInfo2Package--}
```
@@ -444,8 +667,10 @@ public final Cr2AFInfo2Package getCr2AFInfo2Package()
Gets the AFInfo3 (Newer version of the AFInfo record).
+
**Returns:**
[Cr2AFInfo2Package](../../com.groupdocs.metadata.core/cr2afinfo2package) - The AFInfo3.
+
### setCr2AFInfo2Package(Cr2AFInfo2Package value) {#setCr2AFInfo2Package-com.groupdocs.metadata.core.Cr2AFInfo2Package-}
```
public final void setCr2AFInfo2Package(Cr2AFInfo2Package value)
@@ -454,10 +679,12 @@ public final void setCr2AFInfo2Package(Cr2AFInfo2Package value)
Sets the AFInfo3 (Newer version of the AFInfo record).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2AFInfo2Package](../../com.groupdocs.metadata.core/cr2afinfo2package) | The AFInfo3. |
+| value | [Cr2AFInfo2Package](../../com.groupdocs.metadata.core/cr2afinfo2package) | The AFInfo3.
+ |
### getCr2AFInfo2() {#getCr2AFInfo2--}
```
@@ -467,8 +694,10 @@ public final long getCr2AFInfo2()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2AFInfo2(long value) {#setCr2AFInfo2-long-}
```
public final void setCr2AFInfo2(long value)
@@ -477,10 +706,12 @@ public final void setCr2AFInfo2(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2WBInfoPackage() {#getCr2WBInfoPackage--}
```
@@ -490,8 +721,10 @@ public final Cr2WBInfoPackage getCr2WBInfoPackage()
Gets the WBInfo (WB tags for the Canon G9).
+
**Returns:**
[Cr2WBInfoPackage](../../com.groupdocs.metadata.core/cr2wbinfopackage) - The WBInfo.
+
### setCr2WBInfoPackage(Cr2WBInfoPackage value) {#setCr2WBInfoPackage-com.groupdocs.metadata.core.Cr2WBInfoPackage-}
```
public final void setCr2WBInfoPackage(Cr2WBInfoPackage value)
@@ -500,10 +733,12 @@ public final void setCr2WBInfoPackage(Cr2WBInfoPackage value)
Sets the WBInfo (WB tags for the Canon G9).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2WBInfoPackage](../../com.groupdocs.metadata.core/cr2wbinfopackage) | The WBInfo. |
+| value | [Cr2WBInfoPackage](../../com.groupdocs.metadata.core/cr2wbinfopackage) | The WBInfo.
+ |
### getCr2WBInfo() {#getCr2WBInfo--}
```
@@ -513,8 +748,10 @@ public final long getCr2WBInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2WBInfo(long value) {#setCr2WBInfo-long-}
```
public final void setCr2WBInfo(long value)
@@ -523,10 +760,12 @@ public final void setCr2WBInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2TimeInfoPackage() {#getCr2TimeInfoPackage--}
```
@@ -536,8 +775,10 @@ public final Cr2TimeInfoPackage getCr2TimeInfoPackage()
Gets the TimeInfo.
+
**Returns:**
[Cr2TimeInfoPackage](../../com.groupdocs.metadata.core/cr2timeinfopackage) - The TimeInfo.
+
### setCr2TimeInfoPackage(Cr2TimeInfoPackage value) {#setCr2TimeInfoPackage-com.groupdocs.metadata.core.Cr2TimeInfoPackage-}
```
public final void setCr2TimeInfoPackage(Cr2TimeInfoPackage value)
@@ -546,10 +787,12 @@ public final void setCr2TimeInfoPackage(Cr2TimeInfoPackage value)
Sets the TimeInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2TimeInfoPackage](../../com.groupdocs.metadata.core/cr2timeinfopackage) | The TimeInfo. |
+| value | [Cr2TimeInfoPackage](../../com.groupdocs.metadata.core/cr2timeinfopackage) | The TimeInfo.
+ |
### getCr2TimeInfo() {#getCr2TimeInfo--}
```
@@ -559,8 +802,10 @@ public final long getCr2TimeInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2TimeInfo(long value) {#setCr2TimeInfo-long-}
```
public final void setCr2TimeInfo(long value)
@@ -569,10 +814,12 @@ public final void setCr2TimeInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2AFInfo3Package() {#getCr2AFInfo3Package--}
```
@@ -582,8 +829,10 @@ public final Cr2AFInfo2Package getCr2AFInfo3Package()
Gets the AFInfo3.
+
**Returns:**
[Cr2AFInfo2Package](../../com.groupdocs.metadata.core/cr2afinfo2package) - The AFInfo3.
+
### setCr2AFInfo3Package(Cr2AFInfo2Package value) {#setCr2AFInfo3Package-com.groupdocs.metadata.core.Cr2AFInfo2Package-}
```
public final void setCr2AFInfo3Package(Cr2AFInfo2Package value)
@@ -592,10 +841,12 @@ public final void setCr2AFInfo3Package(Cr2AFInfo2Package value)
Sets the AFInfo3.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2AFInfo2Package](../../com.groupdocs.metadata.core/cr2afinfo2package) | The AFInfo3. |
+| value | [Cr2AFInfo2Package](../../com.groupdocs.metadata.core/cr2afinfo2package) | The AFInfo3.
+ |
### getCr2AFInfo3() {#getCr2AFInfo3--}
```
@@ -605,8 +856,10 @@ public final long getCr2AFInfo3()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2AFInfo3(long value) {#setCr2AFInfo3-long-}
```
public final void setCr2AFInfo3(long value)
@@ -615,10 +868,12 @@ public final void setCr2AFInfo3(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2Functions1DPackage() {#getCr2Functions1DPackage--}
```
@@ -628,8 +883,10 @@ public final Cr2Functions1DPackage getCr2Functions1DPackage()
Gets the CustomFunctions1D (These custom functions are used by all 1D models up to but not including the Mark III.).
+
**Returns:**
[Cr2Functions1DPackage](../../com.groupdocs.metadata.core/cr2functions1dpackage) - The CustomFunctions1D.
+
### setCr2Functions1DPackage(Cr2Functions1DPackage value) {#setCr2Functions1DPackage-com.groupdocs.metadata.core.Cr2Functions1DPackage-}
```
public final void setCr2Functions1DPackage(Cr2Functions1DPackage value)
@@ -638,10 +895,12 @@ public final void setCr2Functions1DPackage(Cr2Functions1DPackage value)
Sets the CustomFunctions1D (These custom functions are used by all 1D models up to but not including the Mark III.).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2Functions1DPackage](../../com.groupdocs.metadata.core/cr2functions1dpackage) | The CustomFunctions1D. |
+| value | [Cr2Functions1DPackage](../../com.groupdocs.metadata.core/cr2functions1dpackage) | The CustomFunctions1D.
+ |
### getCr2Functions1D() {#getCr2Functions1D--}
```
@@ -651,8 +910,10 @@ public final long getCr2Functions1D()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2Functions1D(long value) {#setCr2Functions1D-long-}
```
public final void setCr2Functions1D(long value)
@@ -661,10 +922,12 @@ public final void setCr2Functions1D(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2PersonalFuncsPackage() {#getCr2PersonalFuncsPackage--}
```
@@ -674,8 +937,10 @@ public final Cr2PersonalFuncsPackage getCr2PersonalFuncsPackage()
Gets the PersonalFunctions (Personal function settings for the EOS-1D.).
+
**Returns:**
[Cr2PersonalFuncsPackage](../../com.groupdocs.metadata.core/cr2personalfuncspackage) - The PersonalFunctions.
+
### setCr2PersonalFuncsPackage(Cr2PersonalFuncsPackage value) {#setCr2PersonalFuncsPackage-com.groupdocs.metadata.core.Cr2PersonalFuncsPackage-}
```
public final void setCr2PersonalFuncsPackage(Cr2PersonalFuncsPackage value)
@@ -684,10 +949,12 @@ public final void setCr2PersonalFuncsPackage(Cr2PersonalFuncsPackage value)
Sets the PersonalFunctions (Personal function settings for the EOS-1D.).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2PersonalFuncsPackage](../../com.groupdocs.metadata.core/cr2personalfuncspackage) | The PersonalFunctions. |
+| value | [Cr2PersonalFuncsPackage](../../com.groupdocs.metadata.core/cr2personalfuncspackage) | The PersonalFunctions.
+ |
### getCr2PersonalFuncs() {#getCr2PersonalFuncs--}
```
@@ -697,8 +964,10 @@ public final long getCr2PersonalFuncs()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2PersonalFuncs(long value) {#setCr2PersonalFuncs-long-}
```
public final void setCr2PersonalFuncs(long value)
@@ -707,10 +976,12 @@ public final void setCr2PersonalFuncs(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2PersonalFuncValuesPackage() {#getCr2PersonalFuncValuesPackage--}
```
@@ -720,8 +991,10 @@ public final Cr2PersonalFuncValuesPackage getCr2PersonalFuncValuesPackage()
Gets the PersonalFunctionValues.
+
**Returns:**
[Cr2PersonalFuncValuesPackage](../../com.groupdocs.metadata.core/cr2personalfuncvaluespackage) - The PersonalFunctionValues.
+
### setCr2PersonalFuncValuesPackage(Cr2PersonalFuncValuesPackage value) {#setCr2PersonalFuncValuesPackage-com.groupdocs.metadata.core.Cr2PersonalFuncValuesPackage-}
```
public final void setCr2PersonalFuncValuesPackage(Cr2PersonalFuncValuesPackage value)
@@ -730,10 +1003,12 @@ public final void setCr2PersonalFuncValuesPackage(Cr2PersonalFuncValuesPackage v
Sets the PersonalFunctionValues.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2PersonalFuncValuesPackage](../../com.groupdocs.metadata.core/cr2personalfuncvaluespackage) | The PersonalFunctionValues. |
+| value | [Cr2PersonalFuncValuesPackage](../../com.groupdocs.metadata.core/cr2personalfuncvaluespackage) | The PersonalFunctionValues.
+ |
### getCr2PersonalFuncValues() {#getCr2PersonalFuncValues--}
```
@@ -743,8 +1018,10 @@ public final long getCr2PersonalFuncValues()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2PersonalFuncValues(long value) {#setCr2PersonalFuncValues-long-}
```
public final void setCr2PersonalFuncValues(long value)
@@ -753,10 +1030,12 @@ public final void setCr2PersonalFuncValues(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2FileInfoPackage() {#getCr2FileInfoPackage--}
```
@@ -766,8 +1045,10 @@ public final Cr2FileInfoPackage getCr2FileInfoPackage()
Not used in this version. Gets the CanonFileInfo.
+
**Returns:**
[Cr2FileInfoPackage](../../com.groupdocs.metadata.core/cr2fileinfopackage) - The CanonFileInfo.
+
### setCr2FileInfoPackage(Cr2FileInfoPackage value) {#setCr2FileInfoPackage-com.groupdocs.metadata.core.Cr2FileInfoPackage-}
```
public final void setCr2FileInfoPackage(Cr2FileInfoPackage value)
@@ -776,6 +1057,7 @@ public final void setCr2FileInfoPackage(Cr2FileInfoPackage value)
Not used in this version. Gets the CanonFileInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -789,8 +1071,10 @@ public final long getCr2FileInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2FileInfo(long value) {#setCr2FileInfo-long-}
```
public final void setCr2FileInfo(long value)
@@ -799,10 +1083,12 @@ public final void setCr2FileInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2CropInfoPackage() {#getCr2CropInfoPackage--}
```
@@ -812,8 +1098,10 @@ public final Cr2CropInfoPackage getCr2CropInfoPackage()
Gets the CropInfo.
+
**Returns:**
[Cr2CropInfoPackage](../../com.groupdocs.metadata.core/cr2cropinfopackage) - The CropInfo.
+
### setCr2CropInfoPackage(Cr2CropInfoPackage value) {#setCr2CropInfoPackage-com.groupdocs.metadata.core.Cr2CropInfoPackage-}
```
public final void setCr2CropInfoPackage(Cr2CropInfoPackage value)
@@ -822,10 +1110,12 @@ public final void setCr2CropInfoPackage(Cr2CropInfoPackage value)
Sets the CropInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2CropInfoPackage](../../com.groupdocs.metadata.core/cr2cropinfopackage) | The CropInfo. |
+| value | [Cr2CropInfoPackage](../../com.groupdocs.metadata.core/cr2cropinfopackage) | The CropInfo.
+ |
### getCr2CropInfo() {#getCr2CropInfo--}
```
@@ -835,8 +1125,10 @@ public final long getCr2CropInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2CropInfo(long value) {#setCr2CropInfo-long-}
```
public final void setCr2CropInfo(long value)
@@ -845,10 +1137,12 @@ public final void setCr2CropInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2AspectInfoPackage() {#getCr2AspectInfoPackage--}
```
@@ -858,8 +1152,10 @@ public final Cr2AspectInfoPackage getCr2AspectInfoPackage()
Gets the AspectInfo.
+
**Returns:**
[Cr2AspectInfoPackage](../../com.groupdocs.metadata.core/cr2aspectinfopackage) - The AspectInfo.
+
### setCr2AspectInfoPackage(Cr2AspectInfoPackage value) {#setCr2AspectInfoPackage-com.groupdocs.metadata.core.Cr2AspectInfoPackage-}
```
public final void setCr2AspectInfoPackage(Cr2AspectInfoPackage value)
@@ -868,10 +1164,12 @@ public final void setCr2AspectInfoPackage(Cr2AspectInfoPackage value)
Sets the AspectInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2AspectInfoPackage](../../com.groupdocs.metadata.core/cr2aspectinfopackage) | The AspectInfo. |
+| value | [Cr2AspectInfoPackage](../../com.groupdocs.metadata.core/cr2aspectinfopackage) | The AspectInfo.
+ |
### getCr2AspectInfo() {#getCr2AspectInfo--}
```
@@ -881,8 +1179,10 @@ public final long getCr2AspectInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2AspectInfo(long value) {#setCr2AspectInfo-long-}
```
public final void setCr2AspectInfo(long value)
@@ -891,10 +1191,12 @@ public final void setCr2AspectInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2ProcessingPackage() {#getCr2ProcessingPackage--}
```
@@ -904,8 +1206,10 @@ public final Cr2ProcessingPackage getCr2ProcessingPackage()
Gets the ProcessingInfo.
+
**Returns:**
[Cr2ProcessingPackage](../../com.groupdocs.metadata.core/cr2processingpackage) - The ProcessingInfo.
+
### setCr2ProcessingPackage(Cr2ProcessingPackage value) {#setCr2ProcessingPackage-com.groupdocs.metadata.core.Cr2ProcessingPackage-}
```
public final void setCr2ProcessingPackage(Cr2ProcessingPackage value)
@@ -914,10 +1218,12 @@ public final void setCr2ProcessingPackage(Cr2ProcessingPackage value)
Sets the ProcessingInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2ProcessingPackage](../../com.groupdocs.metadata.core/cr2processingpackage) | The ProcessingInfo. |
+| value | [Cr2ProcessingPackage](../../com.groupdocs.metadata.core/cr2processingpackage) | The ProcessingInfo.
+ |
### getCr2Processing() {#getCr2Processing--}
```
@@ -927,8 +1233,10 @@ public final long getCr2Processing()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2Processing(long value) {#setCr2Processing-long-}
```
public final void setCr2Processing(long value)
@@ -937,10 +1245,12 @@ public final void setCr2Processing(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2ColorBalancePackage() {#getCr2ColorBalancePackage--}
```
@@ -950,8 +1260,10 @@ public final Cr2ColorBalancePackage getCr2ColorBalancePackage()
Gets the ColorBalance (These tags are used by the 10D and 300D.).
+
**Returns:**
[Cr2ColorBalancePackage](../../com.groupdocs.metadata.core/cr2colorbalancepackage) - The ColorBalance.
+
### setCr2ColorBalancePackage(Cr2ColorBalancePackage value) {#setCr2ColorBalancePackage-com.groupdocs.metadata.core.Cr2ColorBalancePackage-}
```
public final void setCr2ColorBalancePackage(Cr2ColorBalancePackage value)
@@ -960,10 +1272,12 @@ public final void setCr2ColorBalancePackage(Cr2ColorBalancePackage value)
Sets the ColorBalance (These tags are used by the 10D and 300D.).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2ColorBalancePackage](../../com.groupdocs.metadata.core/cr2colorbalancepackage) | The ColorBalance. |
+| value | [Cr2ColorBalancePackage](../../com.groupdocs.metadata.core/cr2colorbalancepackage) | The ColorBalance.
+ |
### getCr2ColorBalance() {#getCr2ColorBalance--}
```
@@ -973,8 +1287,10 @@ public final long getCr2ColorBalance()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2ColorBalance(long value) {#setCr2ColorBalance-long-}
```
public final void setCr2ColorBalance(long value)
@@ -983,10 +1299,12 @@ public final void setCr2ColorBalance(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2ModifiedInfoPackage() {#getCr2ModifiedInfoPackage--}
```
@@ -996,8 +1314,10 @@ public final Cr2ModifiedInfoPackage getCr2ModifiedInfoPackage()
Gets the MeasuredColor.
+
**Returns:**
[Cr2ModifiedInfoPackage](../../com.groupdocs.metadata.core/cr2modifiedinfopackage) - The MeasuredColor.
+
### setCr2ModifiedInfoPackage(Cr2ModifiedInfoPackage value) {#setCr2ModifiedInfoPackage-com.groupdocs.metadata.core.Cr2ModifiedInfoPackage-}
```
public final void setCr2ModifiedInfoPackage(Cr2ModifiedInfoPackage value)
@@ -1006,10 +1326,12 @@ public final void setCr2ModifiedInfoPackage(Cr2ModifiedInfoPackage value)
Sets the MeasuredColor.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2ModifiedInfoPackage](../../com.groupdocs.metadata.core/cr2modifiedinfopackage) | The MeasuredColor. |
+| value | [Cr2ModifiedInfoPackage](../../com.groupdocs.metadata.core/cr2modifiedinfopackage) | The MeasuredColor.
+ |
### getCr2ModifiedInfo() {#getCr2ModifiedInfo--}
```
@@ -1019,8 +1341,10 @@ public final long getCr2ModifiedInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2ModifiedInfo(long value) {#setCr2ModifiedInfo-long-}
```
public final void setCr2ModifiedInfo(long value)
@@ -1029,10 +1353,12 @@ public final void setCr2ModifiedInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2SensorInfoPackage() {#getCr2SensorInfoPackage--}
```
@@ -1042,8 +1368,10 @@ public final Cr2SensorInfoPackage getCr2SensorInfoPackage()
Gets the SensorInfo.
+
**Returns:**
[Cr2SensorInfoPackage](../../com.groupdocs.metadata.core/cr2sensorinfopackage) - The SensorInfo.
+
### setCr2SensorInfoPackage(Cr2SensorInfoPackage value) {#setCr2SensorInfoPackage-com.groupdocs.metadata.core.Cr2SensorInfoPackage-}
```
public final void setCr2SensorInfoPackage(Cr2SensorInfoPackage value)
@@ -1052,10 +1380,12 @@ public final void setCr2SensorInfoPackage(Cr2SensorInfoPackage value)
Sets the SensorInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2SensorInfoPackage](../../com.groupdocs.metadata.core/cr2sensorinfopackage) | The SensorInfo. |
+| value | [Cr2SensorInfoPackage](../../com.groupdocs.metadata.core/cr2sensorinfopackage) | The SensorInfo.
+ |
### getCr2SensorInfo() {#getCr2SensorInfo--}
```
@@ -1065,8 +1395,10 @@ public final long getCr2SensorInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2SensorInfo(long value) {#setCr2SensorInfo-long-}
```
public final void setCr2SensorInfo(long value)
@@ -1075,10 +1407,12 @@ public final void setCr2SensorInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2ColorInfoPackage() {#getCr2ColorInfoPackage--}
```
@@ -1088,8 +1422,10 @@ public final Cr2ColorInfoPackage getCr2ColorInfoPackage()
Gets the ColorInfo.
+
**Returns:**
[Cr2ColorInfoPackage](../../com.groupdocs.metadata.core/cr2colorinfopackage) - The ColorInfo.
+
### setCr2ColorInfoPackage(Cr2ColorInfoPackage value) {#setCr2ColorInfoPackage-com.groupdocs.metadata.core.Cr2ColorInfoPackage-}
```
public final void setCr2ColorInfoPackage(Cr2ColorInfoPackage value)
@@ -1098,10 +1434,12 @@ public final void setCr2ColorInfoPackage(Cr2ColorInfoPackage value)
Sets the ColorInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2ColorInfoPackage](../../com.groupdocs.metadata.core/cr2colorinfopackage) | The ColorInfo. |
+| value | [Cr2ColorInfoPackage](../../com.groupdocs.metadata.core/cr2colorinfopackage) | The ColorInfo.
+ |
### getCr2ColorInfo() {#getCr2ColorInfo--}
```
@@ -1111,8 +1449,10 @@ public final long getCr2ColorInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2ColorInfo(long value) {#setCr2ColorInfo-long-}
```
public final void setCr2ColorInfo(long value)
@@ -1121,10 +1461,12 @@ public final void setCr2ColorInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2AFMicroAdjPackage() {#getCr2AFMicroAdjPackage--}
```
@@ -1134,8 +1476,10 @@ public final Cr2AFMicroAdjPackage getCr2AFMicroAdjPackage()
Gets the AFMicroAdj.
+
**Returns:**
[Cr2AFMicroAdjPackage](../../com.groupdocs.metadata.core/cr2afmicroadjpackage) - The AFMicroAdj.
+
### setCr2AFMicroAdjPackage(Cr2AFMicroAdjPackage value) {#setCr2AFMicroAdjPackage-com.groupdocs.metadata.core.Cr2AFMicroAdjPackage-}
```
public final void setCr2AFMicroAdjPackage(Cr2AFMicroAdjPackage value)
@@ -1144,10 +1488,12 @@ public final void setCr2AFMicroAdjPackage(Cr2AFMicroAdjPackage value)
Sets the AFMicroAdj.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2AFMicroAdjPackage](../../com.groupdocs.metadata.core/cr2afmicroadjpackage) | The AFMicroAdj. |
+| value | [Cr2AFMicroAdjPackage](../../com.groupdocs.metadata.core/cr2afmicroadjpackage) | The AFMicroAdj.
+ |
### getCr2AFMicroAdj() {#getCr2AFMicroAdj--}
```
@@ -1157,8 +1503,10 @@ public final long getCr2AFMicroAdj()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2AFMicroAdj(long value) {#setCr2AFMicroAdj-long-}
```
public final void setCr2AFMicroAdj(long value)
@@ -1167,10 +1515,12 @@ public final void setCr2AFMicroAdj(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2LightingOptPackage() {#getCr2LightingOptPackage--}
```
@@ -1180,8 +1530,10 @@ public final Cr2LightingOptPackage getCr2LightingOptPackage()
Gets the LightingOpt (This information is new in images from the EOS 7D.).
+
**Returns:**
[Cr2LightingOptPackage](../../com.groupdocs.metadata.core/cr2lightingoptpackage) - The LightingOpt.
+
### setCr2LightingOptPackage(Cr2LightingOptPackage value) {#setCr2LightingOptPackage-com.groupdocs.metadata.core.Cr2LightingOptPackage-}
```
public final void setCr2LightingOptPackage(Cr2LightingOptPackage value)
@@ -1190,10 +1542,12 @@ public final void setCr2LightingOptPackage(Cr2LightingOptPackage value)
Sets the LightingOpt (This information is new in images from the EOS 7D.).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2LightingOptPackage](../../com.groupdocs.metadata.core/cr2lightingoptpackage) | The LightingOpt. |
+| value | [Cr2LightingOptPackage](../../com.groupdocs.metadata.core/cr2lightingoptpackage) | The LightingOpt.
+ |
### getCr2LightingOpt() {#getCr2LightingOpt--}
```
@@ -1203,8 +1557,10 @@ public final long getCr2LightingOpt()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2LightingOpt(long value) {#setCr2LightingOpt-long-}
```
public final void setCr2LightingOpt(long value)
@@ -1213,10 +1569,12 @@ public final void setCr2LightingOpt(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2MultiExpPackage() {#getCr2MultiExpPackage--}
```
@@ -1226,8 +1584,10 @@ public final Cr2MultiExpPackage getCr2MultiExpPackage()
Gets the MultiExp.
+
**Returns:**
[Cr2MultiExpPackage](../../com.groupdocs.metadata.core/cr2multiexppackage) - The MultiExp.
+
### setCr2MultiExpPackage(Cr2MultiExpPackage value) {#setCr2MultiExpPackage-com.groupdocs.metadata.core.Cr2MultiExpPackage-}
```
public final void setCr2MultiExpPackage(Cr2MultiExpPackage value)
@@ -1236,10 +1596,12 @@ public final void setCr2MultiExpPackage(Cr2MultiExpPackage value)
Sets the MultiExp.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2MultiExpPackage](../../com.groupdocs.metadata.core/cr2multiexppackage) | The MultiExp. |
+| value | [Cr2MultiExpPackage](../../com.groupdocs.metadata.core/cr2multiexppackage) | The MultiExp.
+ |
### getCr2MultiExp() {#getCr2MultiExp--}
```
@@ -1249,8 +1611,10 @@ public final long getCr2MultiExp()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2MultiExp(long value) {#setCr2MultiExp-long-}
```
public final void setCr2MultiExp(long value)
@@ -1259,10 +1623,12 @@ public final void setCr2MultiExp(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2LogInfoPackage() {#getCr2LogInfoPackage--}
```
@@ -1272,8 +1638,10 @@ public final Cr2LogInfoPackage getCr2LogInfoPackage()
Gets the LogInfo.
+
**Returns:**
[Cr2LogInfoPackage](../../com.groupdocs.metadata.core/cr2loginfopackage) - The LogInfo.
+
### setCr2LogInfoPackage(Cr2LogInfoPackage value) {#setCr2LogInfoPackage-com.groupdocs.metadata.core.Cr2LogInfoPackage-}
```
public final void setCr2LogInfoPackage(Cr2LogInfoPackage value)
@@ -1282,10 +1650,12 @@ public final void setCr2LogInfoPackage(Cr2LogInfoPackage value)
Sets the LogInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2LogInfoPackage](../../com.groupdocs.metadata.core/cr2loginfopackage) | The LogInfo. |
+| value | [Cr2LogInfoPackage](../../com.groupdocs.metadata.core/cr2loginfopackage) | The LogInfo.
+ |
### getCr2LogInfo() {#getCr2LogInfo--}
```
@@ -1295,8 +1665,10 @@ public final long getCr2LogInfo()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2LogInfo(long value) {#setCr2LogInfo-long-}
```
public final void setCr2LogInfo(long value)
@@ -1305,10 +1677,12 @@ public final void setCr2LogInfo(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getCr2AFConfigPackage() {#getCr2AFConfigPackage--}
```
@@ -1318,8 +1692,10 @@ public final Cr2AFConfigPackage getCr2AFConfigPackage()
Gets the AFConfig.
+
**Returns:**
[Cr2AFConfigPackage](../../com.groupdocs.metadata.core/cr2afconfigpackage) - The AFConfig.
+
### setCr2AFConfigPackage(Cr2AFConfigPackage value) {#setCr2AFConfigPackage-com.groupdocs.metadata.core.Cr2AFConfigPackage-}
```
public final void setCr2AFConfigPackage(Cr2AFConfigPackage value)
@@ -1328,10 +1704,12 @@ public final void setCr2AFConfigPackage(Cr2AFConfigPackage value)
Sets the AFConfig.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [Cr2AFConfigPackage](../../com.groupdocs.metadata.core/cr2afconfigpackage) | The AFConfig. |
+| value | [Cr2AFConfigPackage](../../com.groupdocs.metadata.core/cr2afconfigpackage) | The AFConfig.
+ |
### getCr2AFConfig() {#getCr2AFConfig--}
```
@@ -1341,8 +1719,10 @@ public final long getCr2AFConfig()
Gets the CanonCameraSettings Offset.
+
**Returns:**
long - The CanonCameraSettings Offset.
+
### setCr2AFConfig(long value) {#setCr2AFConfig-long-}
```
public final void setCr2AFConfig(long value)
@@ -1351,10 +1731,12 @@ public final void setCr2AFConfig(long value)
Sets the CanonCameraSettings Offset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CanonCameraSettings Offset. |
+| value | long | The CanonCameraSettings Offset.
+ |
### getImageType() {#getImageType--}
```
@@ -1364,8 +1746,10 @@ public final String getImageType()
Gets the ImageType.
+
**Returns:**
java.lang.String - The ImageType.
+
### setImageType(String value) {#setImageType-java.lang.String-}
```
public final void setImageType(String value)
@@ -1374,10 +1758,12 @@ public final void setImageType(String value)
Sets the ImageType.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The ImageType. |
+| value | java.lang.String | The ImageType.
+ |
### getFirmwareVersion() {#getFirmwareVersion--}
```
@@ -1387,8 +1773,10 @@ public final String getFirmwareVersion()
Gets the FirmwareVersion.
+
**Returns:**
java.lang.String - The FirmwareVersion.
+
### setFirmwareVersion(String value) {#setFirmwareVersion-java.lang.String-}
```
public final void setFirmwareVersion(String value)
@@ -1397,10 +1785,12 @@ public final void setFirmwareVersion(String value)
Sets the FirmwareVersion.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The FirmwareVersion. |
+| value | java.lang.String | The FirmwareVersion.
+ |
### getFileNumber() {#getFileNumber--}
```
@@ -1410,8 +1800,10 @@ public final long getFileNumber()
Gets the FileNumber.
+
**Returns:**
long - The FileNumber.
+
### setFileNumber(long value) {#setFileNumber-long-}
```
public final void setFileNumber(long value)
@@ -1420,10 +1812,12 @@ public final void setFileNumber(long value)
Sets the FileNumber.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The FileNumber. |
+| value | long | The FileNumber.
+ |
### getOwnerName() {#getOwnerName--}
```
@@ -1433,8 +1827,10 @@ public final String getOwnerName()
Gets the OwnerName.
+
**Returns:**
java.lang.String - The OwnerName.
+
### setOwnerName(String value) {#setOwnerName-java.lang.String-}
```
public final void setOwnerName(String value)
@@ -1443,10 +1839,12 @@ public final void setOwnerName(String value)
Sets the OwnerName.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The OwnerName. |
+| value | java.lang.String | The OwnerName.
+ |
### getSerialNumber() {#getSerialNumber--}
```
@@ -1456,8 +1854,10 @@ public final long getSerialNumber()
Gets the SerialNumber.
+
**Returns:**
long - The SerialNumber.
+
### setSerialNumber(long value) {#setSerialNumber-long-}
```
public final void setSerialNumber(long value)
@@ -1466,10 +1866,12 @@ public final void setSerialNumber(long value)
Sets the SerialNumber.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The SerialNumber. |
+| value | long | The SerialNumber.
+ |
### getFileLength() {#getFileLength--}
```
@@ -1479,8 +1881,10 @@ public final long getFileLength()
Gets the FileLength.
+
**Returns:**
long - The FileLength.
+
### setFileLength(long value) {#setFileLength-long-}
```
public final void setFileLength(long value)
@@ -1489,10 +1893,12 @@ public final void setFileLength(long value)
Sets the FileLength.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The FileLength. |
+| value | long | The FileLength.
+ |
### getModelID() {#getModelID--}
```
@@ -1502,8 +1908,10 @@ public final long getModelID()
Gets the ModelID.
+
**Returns:**
long - The ModelID.
+
### setModelID(long value) {#setModelID-long-}
```
public final void setModelID(long value)
@@ -1512,10 +1920,12 @@ public final void setModelID(long value)
Sets the ModelID.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The ModelID. |
+| value | long | The ModelID.
+ |
### getThumbnailImageValidArea() {#getThumbnailImageValidArea--}
```
@@ -1525,8 +1935,10 @@ public final int[] getThumbnailImageValidArea()
Gets the ThumbnailImageValidArea.
+
**Returns:**
int[] - The ThumbnailImageValidArea.
+
### setThumbnailImageValidArea(int[] value) {#setThumbnailImageValidArea-int---}
```
public final void setThumbnailImageValidArea(int[] value)
@@ -1535,10 +1947,12 @@ public final void setThumbnailImageValidArea(int[] value)
Sets the ThumbnailImageValidArea.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | The ThumbnailImageValidArea. |
+| value | int[] | The ThumbnailImageValidArea.
+ |
### getSerialNumberFormat() {#getSerialNumberFormat--}
```
@@ -1548,8 +1962,10 @@ public final long getSerialNumberFormat()
Gets the SerialNumberFormat.
+
**Returns:**
long - The SerialNumberFormat.
+
### setSerialNumberFormat(long value) {#setSerialNumberFormat-long-}
```
public final void setSerialNumberFormat(long value)
@@ -1558,10 +1974,12 @@ public final void setSerialNumberFormat(long value)
Sets the SerialNumberFormat.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The SerialNumberFormat. |
+| value | long | The SerialNumberFormat.
+ |
### getSuperMacro() {#getSuperMacro--}
```
@@ -1571,8 +1989,10 @@ public final int getSuperMacro()
Gets the SuperMacro.
+
**Returns:**
int - The SuperMacro.
+
### setSuperMacro(int value) {#setSuperMacro-int-}
```
public final void setSuperMacro(int value)
@@ -1581,10 +2001,12 @@ public final void setSuperMacro(int value)
Sets the SuperMacro.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The SuperMacro. |
+| value | int | The SuperMacro.
+ |
### getDateStampMode() {#getDateStampMode--}
```
@@ -1594,8 +2016,10 @@ public final int getDateStampMode()
Gets the DateStampMode.
+
**Returns:**
int - The DateStampMode.
+
### setDateStampMode(int value) {#setDateStampMode-int-}
```
public final void setDateStampMode(int value)
@@ -1604,10 +2028,12 @@ public final void setDateStampMode(int value)
Sets the DateStampMode.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The DateStampMode. |
+| value | int | The DateStampMode.
+ |
### getMyColors() {#getMyColors--}
```
@@ -1617,8 +2043,10 @@ public final int[] getMyColors()
Gets the MyColors.
+
**Returns:**
int[] - The MyColors.
+
### setMyColors(int[] value) {#setMyColors-int---}
```
public final void setMyColors(int[] value)
@@ -1627,10 +2055,12 @@ public final void setMyColors(int[] value)
Sets the MyColors.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | The MyColors. |
+| value | int[] | The MyColors.
+ |
### getContrastInfo() {#getContrastInfo--}
```
@@ -1640,8 +2070,10 @@ public final int[] getContrastInfo()
Gets the Categories.
+
**Returns:**
int[] - The Categories.
+
### setContrastInfo(int[] value) {#setContrastInfo-int---}
```
public final void setContrastInfo(int[] value)
@@ -1650,10 +2082,12 @@ public final void setContrastInfo(int[] value)
Sets the Categories.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | The Categories. |
+| value | int[] | The Categories.
+ |
### getCategories() {#getCategories--}
```
@@ -1663,8 +2097,10 @@ public final long[] getCategories()
Gets the Categories.
+
**Returns:**
long[] - The Categories.
+
### setCategories(long[] value) {#setCategories-long---}
```
public final void setCategories(long[] value)
@@ -1673,10 +2109,12 @@ public final void setCategories(long[] value)
Sets the Categories.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long[] | The Categories. |
+| value | long[] | The Categories.
+ |
### getImageUniqueID() {#getImageUniqueID--}
```
@@ -1686,8 +2124,10 @@ public final byte[] getImageUniqueID()
Gets the ImageUniqueID.
+
**Returns:**
byte[] - The ImageUniqueID.
+
### setImageUniqueID(byte[] value) {#setImageUniqueID-byte---}
```
public final void setImageUniqueID(byte[] value)
@@ -1696,10 +2136,12 @@ public final void setImageUniqueID(byte[] value)
Sets the ImageUniqueID.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | The ImageUniqueID. |
+| value | byte[] | The ImageUniqueID.
+ |
### getOriginalDecisionDataOffset() {#getOriginalDecisionDataOffset--}
```
@@ -1709,8 +2151,10 @@ public final long getOriginalDecisionDataOffset()
Gets the OriginalDecisionDataOffset.
+
**Returns:**
long - The OriginalDecisionDataOffset.
+
### setOriginalDecisionDataOffset(long value) {#setOriginalDecisionDataOffset-long-}
```
public final void setOriginalDecisionDataOffset(long value)
@@ -1719,10 +2163,12 @@ public final void setOriginalDecisionDataOffset(long value)
Sets the OriginalDecisionDataOffset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The OriginalDecisionDataOffset. |
+| value | long | The OriginalDecisionDataOffset.
+ |
### getLensModel() {#getLensModel--}
```
@@ -1732,8 +2178,10 @@ public final String getLensModel()
Gets the LensModel.
+
**Returns:**
java.lang.String - The LensModel.
+
### setLensModel(String value) {#setLensModel-java.lang.String-}
```
public final void setLensModel(String value)
@@ -1742,10 +2190,12 @@ public final void setLensModel(String value)
Sets the LensModel.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The LensModel. |
+| value | java.lang.String | The LensModel.
+ |
### getInternalSerialNumber() {#getInternalSerialNumber--}
```
@@ -1755,8 +2205,10 @@ public final String getInternalSerialNumber()
Gets the InternalSerialNumber.
+
**Returns:**
java.lang.String - The InternalSerialNumber.
+
### setInternalSerialNumber(String value) {#setInternalSerialNumber-java.lang.String-}
```
public final void setInternalSerialNumber(String value)
@@ -1765,10 +2217,12 @@ public final void setInternalSerialNumber(String value)
Sets the InternalSerialNumber.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The InternalSerialNumber. |
+| value | java.lang.String | The InternalSerialNumber.
+ |
### getColorTemperature() {#getColorTemperature--}
```
@@ -1778,8 +2232,10 @@ public final int getColorTemperature()
Gets the ColorTemperature.
+
**Returns:**
int - The ColorTemperature.
+
### setColorTemperature(int value) {#setColorTemperature-int-}
```
public final void setColorTemperature(int value)
@@ -1788,10 +2244,12 @@ public final void setColorTemperature(int value)
Sets the ColorTemperature.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The ColorTemperature. |
+| value | int | The ColorTemperature.
+ |
### getMeasuredColor() {#getMeasuredColor--}
```
@@ -1801,8 +2259,10 @@ public final int[] getMeasuredColor()
Gets the MeasuredColor.
+
**Returns:**
int[] - The MeasuredColor.
+
### setMeasuredColor(int[] value) {#setMeasuredColor-int---}
```
public final void setMeasuredColor(int[] value)
@@ -1811,10 +2271,12 @@ public final void setMeasuredColor(int[] value)
Sets the MeasuredColor.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | The MeasuredColor. |
+| value | int[] | The MeasuredColor.
+ |
### getColorSpace() {#getColorSpace--}
```
@@ -1824,8 +2286,10 @@ public final int getColorSpace()
Gets the ColorSpace.
+
**Returns:**
int - The ColorSpace.
+
### setColorSpace(int value) {#setColorSpace-int-}
```
public final void setColorSpace(int value)
@@ -1834,10 +2298,12 @@ public final void setColorSpace(int value)
Sets the ColorSpace.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The ColorSpace. |
+| value | int | The ColorSpace.
+ |
### getCanonFlags() {#getCanonFlags--}
```
@@ -1847,8 +2313,10 @@ public final int getCanonFlags()
Gets the CanonFlags.
+
**Returns:**
int - The CanonFlags.
+
### setCanonFlags(int value) {#setCanonFlags-int-}
```
public final void setCanonFlags(int value)
@@ -1857,10 +2325,12 @@ public final void setCanonFlags(int value)
Sets the CanonFlags.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The CanonFlags. |
+| value | int | The CanonFlags.
+ |
### getVRDOffset() {#getVRDOffset--}
```
@@ -1870,8 +2340,10 @@ public final long getVRDOffset()
Gets the VRDOffset.
+
**Returns:**
long - The VRDOffset.
+
### setVRDOffset(long value) {#setVRDOffset-long-}
```
public final void setVRDOffset(long value)
@@ -1880,10 +2352,12 @@ public final void setVRDOffset(long value)
Sets the VRDOffset.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The VRDOffset. |
+| value | long | The VRDOffset.
+ |
### getPictureStyleUserDef() {#getPictureStyleUserDef--}
```
@@ -1893,8 +2367,10 @@ public final int[] getPictureStyleUserDef()
Gets the PictureStyleUserDef.
+
**Returns:**
int[] - The PictureStyleUserDef.
+
### setPictureStyleUserDef(int[] value) {#setPictureStyleUserDef-int---}
```
public final void setPictureStyleUserDef(int[] value)
@@ -1903,10 +2379,12 @@ public final void setPictureStyleUserDef(int[] value)
Sets the PictureStyleUserDef.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | The PictureStyleUserDef. |
+| value | int[] | The PictureStyleUserDef.
+ |
### getPictureStylePC() {#getPictureStylePC--}
```
@@ -1916,8 +2394,10 @@ public final int[] getPictureStylePC()
Gets the PictureStylePC.
+
**Returns:**
int[] - The PictureStylePC.
+
### setPictureStylePC(int[] value) {#setPictureStylePC-int---}
```
public final void setPictureStylePC(int[] value)
@@ -1926,10 +2406,12 @@ public final void setPictureStylePC(int[] value)
Sets the PictureStylePC.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | The PictureStylePC. |
+| value | int[] | The PictureStylePC.
+ |
### getCustomPictureStyleFileName() {#getCustomPictureStyleFileName--}
```
@@ -1939,8 +2421,10 @@ public final String getCustomPictureStyleFileName()
Gets the CustomPictureStyleFileName.
+
**Returns:**
java.lang.String - The CustomPictureStyleFileName.
+
### setCustomPictureStyleFileName(String value) {#setCustomPictureStyleFileName-java.lang.String-}
```
public final void setCustomPictureStyleFileName(String value)
@@ -1949,10 +2433,12 @@ public final void setCustomPictureStyleFileName(String value)
Sets the CustomPictureStyleFileName.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The CustomPictureStyleFileName. |
+| value | java.lang.String | The CustomPictureStyleFileName.
+ |
### getLensInfo() {#getLensInfo--}
```
@@ -1962,8 +2448,10 @@ public final byte[] getLensInfo()
Gets the LensInfo.
+
**Returns:**
byte[] - The LensInfo.
+
### setLensInfo(byte[] value) {#setLensInfo-byte---}
```
public final void setLensInfo(byte[] value)
@@ -1972,10 +2460,12 @@ public final void setLensInfo(byte[] value)
Sets the LensInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | The LensInfo. |
+| value | byte[] | The LensInfo.
+ |
### getAmbienceInfo() {#getAmbienceInfo--}
```
@@ -1985,8 +2475,10 @@ public final long[] getAmbienceInfo()
Gets the LensInfo.
+
**Returns:**
long[] - The LensInfo.
+
### setAmbienceInfo(long[] value) {#setAmbienceInfo-long---}
```
public final void setAmbienceInfo(long[] value)
@@ -1995,10 +2487,12 @@ public final void setAmbienceInfo(long[] value)
Sets the LensInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long[] | The LensInfo. |
+| value | long[] | The LensInfo.
+ |
### getCameraInfo() {#getCameraInfo--}
```
@@ -2008,8 +2502,10 @@ public final long getCameraInfo()
Gets the CameraInfo.
+
**Returns:**
long - The CameraInfo.
+
### setCameraInfo(long value) {#setCameraInfo-long-}
```
public final void setCameraInfo(long value)
@@ -2018,10 +2514,12 @@ public final void setCameraInfo(long value)
Sets the CameraInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CameraInfo. |
+| value | long | The CameraInfo.
+ |
### getCustomFunctions() {#getCustomFunctions--}
```
@@ -2031,8 +2529,10 @@ public final long getCustomFunctions()
Gets the CustomFunctions.
+
**Returns:**
long - The CustomFunctions.
+
### setCustomFunctions(long value) {#setCustomFunctions-long-}
```
public final void setCustomFunctions(long value)
@@ -2041,10 +2541,12 @@ public final void setCustomFunctions(long value)
Sets the CustomFunctions.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The CustomFunctions. |
+| value | long | The CustomFunctions.
+ |
### getFaceDetect1() {#getFaceDetect1--}
```
@@ -2054,8 +2556,10 @@ public final long getFaceDetect1()
Gets the FaceDetect1.
+
**Returns:**
long - The FaceDetect1.
+
### setFaceDetect1(long value) {#setFaceDetect1-long-}
```
public final void setFaceDetect1(long value)
@@ -2064,10 +2568,12 @@ public final void setFaceDetect1(long value)
Sets the FaceDetect1.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The FaceDetect1. |
+| value | long | The FaceDetect1.
+ |
### getFaceDetect2() {#getFaceDetect2--}
```
@@ -2077,8 +2583,10 @@ public final long getFaceDetect2()
Gets the FaceDetect2.
+
**Returns:**
long - The FaceDetect2.
+
### setFaceDetect2(long value) {#setFaceDetect2-long-}
```
public final void setFaceDetect2(long value)
@@ -2087,10 +2595,12 @@ public final void setFaceDetect2(long value)
Sets the FaceDetect2.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The FaceDetect2. |
+| value | long | The FaceDetect2.
+ |
### getFaceDetect3() {#getFaceDetect3--}
```
@@ -2100,8 +2610,10 @@ public final long getFaceDetect3()
Gets the FaceDetect3.
+
**Returns:**
long - The FaceDetect3.
+
### setFaceDetect3(long value) {#setFaceDetect3-long-}
```
public final void setFaceDetect3(long value)
@@ -2110,10 +2622,12 @@ public final void setFaceDetect3(long value)
Sets the FaceDetect3.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The FaceDetect3. |
+| value | long | The FaceDetect3.
+ |
### getPreviewImageInfo() {#getPreviewImageInfo--}
```
@@ -2123,8 +2637,10 @@ public final long getPreviewImageInfo()
Gets the PreviewImageInfo.
+
**Returns:**
long - The PreviewImageInfo.
+
### setPreviewImageInfo(long value) {#setPreviewImageInfo-long-}
```
public final void setPreviewImageInfo(long value)
@@ -2133,10 +2649,12 @@ public final void setPreviewImageInfo(long value)
Sets the PreviewImageInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The PreviewImageInfo. |
+| value | long | The PreviewImageInfo.
+ |
### getColorData1() {#getColorData1--}
```
@@ -2146,8 +2664,10 @@ public final long getColorData1()
Gets the ColorData1.
+
**Returns:**
long - The ColorData1.
+
### setColorData1(long value) {#setColorData1-long-}
```
public final void setColorData1(long value)
@@ -2156,10 +2676,12 @@ public final void setColorData1(long value)
Sets the ColorData1.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The ColorData1. |
+| value | long | The ColorData1.
+ |
### getVignettingCorr() {#getVignettingCorr--}
```
@@ -2169,8 +2691,10 @@ public final long getVignettingCorr()
Gets the VignettingCorr.
+
**Returns:**
long - The VignettingCorr.
+
### setVignettingCorr(long value) {#setVignettingCorr-long-}
```
public final void setVignettingCorr(long value)
@@ -2179,10 +2703,12 @@ public final void setVignettingCorr(long value)
Sets the VignettingCorr.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The VignettingCorr. |
+| value | long | The VignettingCorr.
+ |
### getHDRInfo() {#getHDRInfo--}
```
@@ -2192,8 +2718,10 @@ public final long getHDRInfo()
Gets the HDRInfo.
+
**Returns:**
long - The HDRInfo.
+
### setHDRInfo(long value) {#setHDRInfo-long-}
```
public final void setHDRInfo(long value)
@@ -2202,10 +2730,12 @@ public final void setHDRInfo(long value)
Sets the HDRInfo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The HDRInfo. |
+| value | long | The HDRInfo.
+ |
### getRawBurstModeRoll() {#getRawBurstModeRoll--}
```
@@ -2215,8 +2745,10 @@ public final long getRawBurstModeRoll()
Gets the RawBurstModeRoll.
+
**Returns:**
long - The RawBurstModeRoll.
+
### setRawBurstModeRoll(long value) {#setRawBurstModeRoll-long-}
```
public final void setRawBurstModeRoll(long value)
@@ -2225,8 +2757,10 @@ public final void setRawBurstModeRoll(long value)
Sets the RawBurstModeRoll.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The RawBurstModeRoll. |
+| value | long | The RawBurstModeRoll.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/cr2modifiedinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2modifiedinfopackage/_index.md
index d508fe41b9..81dbccf09f 100644
--- a/english/java/com.groupdocs.metadata.core/cr2modifiedinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2modifiedinfopackage/_index.md
@@ -13,33 +13,51 @@ public final class Cr2ModifiedInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2ModifiedInfoPackage()](#Cr2ModifiedInfoPackage--) | Initializes a new instance of the Cr2ModifiedInfoPackage class. |
+| [Cr2ModifiedInfoPackage()](#Cr2ModifiedInfoPackage--) | Initializes a new instance of the
+Cr2ModifiedInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getModifiedToneCurve()](#getModifiedToneCurve--) | Gets the ModifiedToneCurve. |
-| [getModifiedSharpness()](#getModifiedSharpness--) | Gets the ModifiedSharpness. |
-| [getModifiedSharpnessFreq()](#getModifiedSharpnessFreq--) | Gets the ModifiedSharpnessFreq. |
-| [getModifiedSensorRedLevel()](#getModifiedSensorRedLevel--) | Gets the ModifiedSensorRedLevel. |
-| [getModifiedSensorBlueLevel()](#getModifiedSensorBlueLevel--) | Gets the ModifiedSensorBlueLevel. |
-| [getModifiedWhiteBalanceRed()](#getModifiedWhiteBalanceRed--) | Gets the ModifiedWhiteBalanceRed. |
-| [getModifiedWhiteBalanceBlue()](#getModifiedWhiteBalanceBlue--) | Gets the ModifiedWhiteBalanceBlue. |
-| [getModifiedWhiteBalance()](#getModifiedWhiteBalance--) | Gets the ModifiedWhiteBalance. |
-| [getModifiedColorTemp()](#getModifiedColorTemp--) | Gets the ModifiedColorTemp. |
-| [getModifiedPictureStyle()](#getModifiedPictureStyle--) | Gets the ModifiedPictureStyle. |
-| [getModifiedDigitalGain()](#getModifiedDigitalGain--) | Gets the ModifiedDigitalGain. |
+| [getModifiedToneCurve()](#getModifiedToneCurve--) | Gets the ModifiedToneCurve.
+ |
+| [getModifiedSharpness()](#getModifiedSharpness--) | Gets the ModifiedSharpness.
+ |
+| [getModifiedSharpnessFreq()](#getModifiedSharpnessFreq--) | Gets the ModifiedSharpnessFreq.
+ |
+| [getModifiedSensorRedLevel()](#getModifiedSensorRedLevel--) | Gets the ModifiedSensorRedLevel.
+ |
+| [getModifiedSensorBlueLevel()](#getModifiedSensorBlueLevel--) | Gets the ModifiedSensorBlueLevel.
+ |
+| [getModifiedWhiteBalanceRed()](#getModifiedWhiteBalanceRed--) | Gets the ModifiedWhiteBalanceRed.
+ |
+| [getModifiedWhiteBalanceBlue()](#getModifiedWhiteBalanceBlue--) | Gets the ModifiedWhiteBalanceBlue.
+ |
+| [getModifiedWhiteBalance()](#getModifiedWhiteBalance--) | Gets the ModifiedWhiteBalance.
+ |
+| [getModifiedColorTemp()](#getModifiedColorTemp--) | Gets the ModifiedColorTemp.
+ |
+| [getModifiedPictureStyle()](#getModifiedPictureStyle--) | Gets the ModifiedPictureStyle.
+ |
+| [getModifiedDigitalGain()](#getModifiedDigitalGain--) | Gets the ModifiedDigitalGain.
+ |
### Cr2ModifiedInfoPackage() {#Cr2ModifiedInfoPackage--}
```
public Cr2ModifiedInfoPackage()
```
-Initializes a new instance of the Cr2ModifiedInfoPackage class.
+Initializes a new instance of the
+Cr2ModifiedInfoPackage
+ class.
+
### getModifiedToneCurve() {#getModifiedToneCurve--}
```
@@ -49,8 +67,10 @@ public final int getModifiedToneCurve()
Gets the ModifiedToneCurve.
+
**Returns:**
int - The ModifiedToneCurve.
+
### getModifiedSharpness() {#getModifiedSharpness--}
```
public final int getModifiedSharpness()
@@ -59,8 +79,10 @@ public final int getModifiedSharpness()
Gets the ModifiedSharpness.
+
**Returns:**
int - The ModifiedSharpness.
+
### getModifiedSharpnessFreq() {#getModifiedSharpnessFreq--}
```
public final int getModifiedSharpnessFreq()
@@ -69,8 +91,10 @@ public final int getModifiedSharpnessFreq()
Gets the ModifiedSharpnessFreq.
+
**Returns:**
int - The ModifiedSharpnessFreq.
+
### getModifiedSensorRedLevel() {#getModifiedSensorRedLevel--}
```
public final int getModifiedSensorRedLevel()
@@ -79,8 +103,10 @@ public final int getModifiedSensorRedLevel()
Gets the ModifiedSensorRedLevel.
+
**Returns:**
int - The ModifiedSensorRedLevel.
+
### getModifiedSensorBlueLevel() {#getModifiedSensorBlueLevel--}
```
public final int getModifiedSensorBlueLevel()
@@ -89,8 +115,10 @@ public final int getModifiedSensorBlueLevel()
Gets the ModifiedSensorBlueLevel.
+
**Returns:**
int - The ModifiedSensorBlueLevel.
+
### getModifiedWhiteBalanceRed() {#getModifiedWhiteBalanceRed--}
```
public final int getModifiedWhiteBalanceRed()
@@ -99,8 +127,10 @@ public final int getModifiedWhiteBalanceRed()
Gets the ModifiedWhiteBalanceRed.
+
**Returns:**
int - The ModifiedWhiteBalanceRed.
+
### getModifiedWhiteBalanceBlue() {#getModifiedWhiteBalanceBlue--}
```
public final int getModifiedWhiteBalanceBlue()
@@ -109,8 +139,10 @@ public final int getModifiedWhiteBalanceBlue()
Gets the ModifiedWhiteBalanceBlue.
+
**Returns:**
int - The ModifiedWhiteBalanceBlue.
+
### getModifiedWhiteBalance() {#getModifiedWhiteBalance--}
```
public final int getModifiedWhiteBalance()
@@ -119,8 +151,10 @@ public final int getModifiedWhiteBalance()
Gets the ModifiedWhiteBalance.
+
**Returns:**
int - The ModifiedWhiteBalance.
+
### getModifiedColorTemp() {#getModifiedColorTemp--}
```
public final int getModifiedColorTemp()
@@ -129,8 +163,10 @@ public final int getModifiedColorTemp()
Gets the ModifiedColorTemp.
+
**Returns:**
int - The ModifiedColorTemp.
+
### getModifiedPictureStyle() {#getModifiedPictureStyle--}
```
public final int getModifiedPictureStyle()
@@ -139,8 +175,10 @@ public final int getModifiedPictureStyle()
Gets the ModifiedPictureStyle.
+
**Returns:**
int - The ModifiedPictureStyle.
+
### getModifiedDigitalGain() {#getModifiedDigitalGain--}
```
public final int getModifiedDigitalGain()
@@ -149,5 +187,7 @@ public final int getModifiedDigitalGain()
Gets the ModifiedDigitalGain.
+
**Returns:**
int - The ModifiedDigitalGain.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2movieinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2movieinfopackage/_index.md
index ab7e3f36c9..fcea3b86f0 100644
--- a/english/java/com.groupdocs.metadata.core/cr2movieinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2movieinfopackage/_index.md
@@ -13,31 +13,47 @@ public final class Cr2MovieInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2MovieInfoPackage()](#Cr2MovieInfoPackage--) | Initializes a new instance of the Cr2MovieInfoPackage class. |
+| [Cr2MovieInfoPackage()](#Cr2MovieInfoPackage--) | Initializes a new instance of the
+Cr2MovieInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getFrameRate()](#getFrameRate--) | Gets the FrameRate. |
-| [getFrameCount()](#getFrameCount--) | Gets the FrameCount. |
-| [getFrameCount2()](#getFrameCount2--) | Gets the FrameCount2. |
-| [getFrameRate2()](#getFrameRate2--) | Gets the FrameRate. |
-| [getDuration()](#getDuration--) | Gets the Duration. |
-| [getAudioBitrate()](#getAudioBitrate--) | Gets the AudioBitrate. |
-| [getAudioSampleRate()](#getAudioSampleRate--) | Gets the AudioSampleRate. |
-| [getAudioChannels()](#getAudioChannels--) | Gets the AudioChannels. |
-| [getVideoCodec()](#getVideoCodec--) | Gets the VideoCodec. |
+| [getFrameRate()](#getFrameRate--) | Gets the FrameRate.
+ |
+| [getFrameCount()](#getFrameCount--) | Gets the FrameCount.
+ |
+| [getFrameCount2()](#getFrameCount2--) | Gets the FrameCount2.
+ |
+| [getFrameRate2()](#getFrameRate2--) | Gets the FrameRate.
+ |
+| [getDuration()](#getDuration--) | Gets the Duration.
+ |
+| [getAudioBitrate()](#getAudioBitrate--) | Gets the AudioBitrate.
+ |
+| [getAudioSampleRate()](#getAudioSampleRate--) | Gets the AudioSampleRate.
+ |
+| [getAudioChannels()](#getAudioChannels--) | Gets the AudioChannels.
+ |
+| [getVideoCodec()](#getVideoCodec--) | Gets the VideoCodec.
+ |
### Cr2MovieInfoPackage() {#Cr2MovieInfoPackage--}
```
public Cr2MovieInfoPackage()
```
-Initializes a new instance of the Cr2MovieInfoPackage class.
+Initializes a new instance of the
+Cr2MovieInfoPackage
+ class.
+
### getFrameRate() {#getFrameRate--}
```
@@ -47,8 +63,10 @@ public final int getFrameRate()
Gets the FrameRate.
+
**Returns:**
int - The FrameRate.
+
### getFrameCount() {#getFrameCount--}
```
public final int getFrameCount()
@@ -57,8 +75,10 @@ public final int getFrameCount()
Gets the FrameCount.
+
**Returns:**
int - The FrameCount.
+
### getFrameCount2() {#getFrameCount2--}
```
public final int getFrameCount2()
@@ -67,8 +87,10 @@ public final int getFrameCount2()
Gets the FrameCount2.
+
**Returns:**
int - The FrameCount2.
+
### getFrameRate2() {#getFrameRate2--}
```
public final float getFrameRate2()
@@ -77,8 +99,10 @@ public final float getFrameRate2()
Gets the FrameRate.
+
**Returns:**
float - The FrameRate.
+
### getDuration() {#getDuration--}
```
public final int getDuration()
@@ -87,8 +111,10 @@ public final int getDuration()
Gets the Duration.
+
**Returns:**
int - The Duration.
+
### getAudioBitrate() {#getAudioBitrate--}
```
public final int getAudioBitrate()
@@ -97,8 +123,10 @@ public final int getAudioBitrate()
Gets the AudioBitrate.
+
**Returns:**
int - The AudioBitrate.
+
### getAudioSampleRate() {#getAudioSampleRate--}
```
public final int getAudioSampleRate()
@@ -107,8 +135,10 @@ public final int getAudioSampleRate()
Gets the AudioSampleRate.
+
**Returns:**
int - The AudioSampleRate.
+
### getAudioChannels() {#getAudioChannels--}
```
public final int getAudioChannels()
@@ -117,8 +147,10 @@ public final int getAudioChannels()
Gets the AudioChannels.
+
**Returns:**
int - The AudioChannels.
+
### getVideoCodec() {#getVideoCodec--}
```
public final byte[] getVideoCodec()
@@ -127,5 +159,7 @@ public final byte[] getVideoCodec()
Gets the VideoCodec.
+
**Returns:**
byte[] - The VideoCodec.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2multiexppackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2multiexppackage/_index.md
index f08e397bd2..01836a2605 100644
--- a/english/java/com.groupdocs.metadata.core/cr2multiexppackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2multiexppackage/_index.md
@@ -13,25 +13,35 @@ public final class Cr2MultiExpPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2MultiExpPackage()](#Cr2MultiExpPackage--) | Initializes a new instance of the Cr2MultiExpPackage class. |
+| [Cr2MultiExpPackage()](#Cr2MultiExpPackage--) | Initializes a new instance of the
+Cr2MultiExpPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getMultiExposure()](#getMultiExposure--) | Gets the MultiExposure. |
-| [getMultiExposureControl()](#getMultiExposureControl--) | Gets the MultiExposureControl. |
-| [getMultiExposureShots()](#getMultiExposureShots--) | Gets the MultiExposureShots. |
+| [getMultiExposure()](#getMultiExposure--) | Gets the MultiExposure.
+ |
+| [getMultiExposureControl()](#getMultiExposureControl--) | Gets the MultiExposureControl.
+ |
+| [getMultiExposureShots()](#getMultiExposureShots--) | Gets the MultiExposureShots.
+ |
### Cr2MultiExpPackage() {#Cr2MultiExpPackage--}
```
public Cr2MultiExpPackage()
```
-Initializes a new instance of the Cr2MultiExpPackage class.
+Initializes a new instance of the
+Cr2MultiExpPackage
+ class.
+
### getMultiExposure() {#getMultiExposure--}
```
@@ -41,8 +51,10 @@ public final int getMultiExposure()
Gets the MultiExposure.
+
**Returns:**
int - The MultiExposure.
+
### getMultiExposureControl() {#getMultiExposureControl--}
```
public final int getMultiExposureControl()
@@ -51,8 +63,10 @@ public final int getMultiExposureControl()
Gets the MultiExposureControl.
+
**Returns:**
int - The MultiExposureControl.
+
### getMultiExposureShots() {#getMultiExposureShots--}
```
public final int getMultiExposureShots()
@@ -61,5 +75,7 @@ public final int getMultiExposureShots()
Gets the MultiExposureShots.
+
**Returns:**
int - The MultiExposureShots.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2package/_index.md b/english/java/com.groupdocs.metadata.core/cr2package/_index.md
index fa42507065..5124564812 100644
--- a/english/java/com.groupdocs.metadata.core/cr2package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2package/_index.md
@@ -14,17 +14,20 @@ public final class Cr2Package extends RawPackage
Represents native CR2 metadata.
+
**Learn more**
- * [Working with DNG metadata][]
+* [Working with DNG metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+CR2+metadata)
+
+
-[Working with DNG metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+CR2+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getRawTiffTagPackage()](#getRawTiffTagPackage--) | Gets the Tag Support Levels. |
+| [getRawTiffTagPackage()](#getRawTiffTagPackage--) | Gets the Tag Support Levels.
+ |
### getRawTiffTagPackage() {#getRawTiffTagPackage--}
```
public final RawTiffTagPackage getRawTiffTagPackage()
@@ -33,5 +36,7 @@ public final RawTiffTagPackage getRawTiffTagPackage()
Gets the Tag Support Levels.
+
**Returns:**
[RawTiffTagPackage](../../com.groupdocs.metadata.core/rawtifftagpackage) - The Tag Support Levels.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2panoramapackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2panoramapackage/_index.md
index 648b6c87cc..435421fb8e 100644
--- a/english/java/com.groupdocs.metadata.core/cr2panoramapackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2panoramapackage/_index.md
@@ -13,24 +13,33 @@ public final class Cr2PanoramaPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2PanoramaPackage()](#Cr2PanoramaPackage--) | Initializes a new instance of the Cr2PanoramaPackage class. |
+| [Cr2PanoramaPackage()](#Cr2PanoramaPackage--) | Initializes a new instance of the
+Cr2PanoramaPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPanoramaFrameNumber()](#getPanoramaFrameNumber--) | Gets the PanoramaFrameNumber. |
-| [getPanoramaDirection()](#getPanoramaDirection--) | Gets the PanoramaDirection. |
+| [getPanoramaFrameNumber()](#getPanoramaFrameNumber--) | Gets the PanoramaFrameNumber.
+ |
+| [getPanoramaDirection()](#getPanoramaDirection--) | Gets the PanoramaDirection.
+ |
### Cr2PanoramaPackage() {#Cr2PanoramaPackage--}
```
public Cr2PanoramaPackage()
```
-Initializes a new instance of the Cr2PanoramaPackage class.
+Initializes a new instance of the
+Cr2PanoramaPackage
+ class.
+
### getPanoramaFrameNumber() {#getPanoramaFrameNumber--}
```
@@ -40,8 +49,10 @@ public final int getPanoramaFrameNumber()
Gets the PanoramaFrameNumber.
+
**Returns:**
int - The PanoramaFrameNumber.
+
### getPanoramaDirection() {#getPanoramaDirection--}
```
public final int getPanoramaDirection()
@@ -50,5 +61,7 @@ public final int getPanoramaDirection()
Gets the PanoramaDirection.
+
**Returns:**
int - The PanoramaDirection.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2personalfuncspackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2personalfuncspackage/_index.md
index c72e349fc8..826343b42f 100644
--- a/english/java/com.groupdocs.metadata.core/cr2personalfuncspackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2personalfuncspackage/_index.md
@@ -13,51 +13,87 @@ public final class Cr2PersonalFuncsPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2PersonalFuncsPackage()](#Cr2PersonalFuncsPackage--) | Initializes a new instance of the Cr2PersonalFuncsPackage class. |
+| [Cr2PersonalFuncsPackage()](#Cr2PersonalFuncsPackage--) | Initializes a new instance of the
+Cr2PersonalFuncsPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPF0CustomFuncRegistration()](#getPF0CustomFuncRegistration--) | Gets the PF0CustomFuncRegistration. |
-| [getPF1DisableShootingModes()](#getPF1DisableShootingModes--) | Gets the PF1DisableShootingModes. |
-| [getPF2DisableMeteringModes()](#getPF2DisableMeteringModes--) | Gets the PF2DisableMeteringModes. |
-| [getPF3ManualExposureMetering()](#getPF3ManualExposureMetering--) | Gets the PF3ManualExposureMetering. |
-| [getPF4ExposureTimeLimits()](#getPF4ExposureTimeLimits--) | Gets the PF4ExposureTimeLimits. |
-| [getPF5ApertureLimits()](#getPF5ApertureLimits--) | Gets the PF5ApertureLimits. |
-| [getPF6PresetShootingModes()](#getPF6PresetShootingModes--) | Gets the PF6PresetShootingModes. |
-| [getPF7BracketContinuousShoot()](#getPF7BracketContinuousShoot--) | Gets the PF7BracketContinuousShoot. |
-| [getPF8SetBracketShots()](#getPF8SetBracketShots--) | Gets the PF8SetBracketShots. |
-| [getPF9ChangeBracketSequence()](#getPF9ChangeBracketSequence--) | Gets the PF9ChangeBracketSequence. |
-| [getPF10RetainProgramShift()](#getPF10RetainProgramShift--) | Gets the PF10RetainProgramShift. |
-| [getPF13DrivePriority()](#getPF13DrivePriority--) | Gets the PF13DrivePriority. |
-| [getPF14DisableFocusSearch()](#getPF14DisableFocusSearch--) | Gets the PF14DisableFocusSearch. |
-| [getPF15DisableAFAssistBeam()](#getPF15DisableAFAssistBeam--) | Gets the PF15DisableAFAssistBeam. |
-| [getPF16AutoFocusPointShoot()](#getPF16AutoFocusPointShoot--) | Gets the PF16AutoFocusPointShoot. |
-| [getPF17DisableAFPointSel()](#getPF17DisableAFPointSel--) | Gets the PF17DisableAFPointSel. |
-| [getPF18EnableAutoAFPointSel()](#getPF18EnableAutoAFPointSel--) | Gets the PF18EnableAutoAFPointSel. |
-| [getPF19ContinuousShootSpeed()](#getPF19ContinuousShootSpeed--) | Gets the PF19ContinuousShootSpeed. |
-| [getPF20LimitContinousShots()](#getPF20LimitContinousShots--) | Gets the PF20LimitContinousShots. |
-| [getPF21EnableQuietOperation()](#getPF21EnableQuietOperation--) | Gets the PF21EnableQuietOperation. |
-| [getPF23SetTimerLengths()](#getPF23SetTimerLengths--) | Gets the PF23SetTimerLengths. |
-| [getPF24LightLCDDuringBulb()](#getPF24LightLCDDuringBulb--) | Gets the PF24LightLCDDuringBulb. |
-| [getPF25DefaultClearSettings()](#getPF25DefaultClearSettings--) | Gets the PF25DefaultClearSettings. |
-| [getPF26ShortenReleaseLag()](#getPF26ShortenReleaseLag--) | Gets the PF26ShortenReleaseLag. |
-| [getPF27ReverseDialRotation()](#getPF27ReverseDialRotation--) | Gets the PF27ReverseDialRotation. |
-| [getPF28NoQuickDialExpComp()](#getPF28NoQuickDialExpComp--) | Gets the PF28NoQuickDialExpComp. |
-| [getPF29QuickDialSwitchOff()](#getPF29QuickDialSwitchOff--) | Gets the PF29QuickDialSwitchOff. |
-| [getPF30EnlargementMode()](#getPF30EnlargementMode--) | Gets the PF30EnlargementMode. |
-| [getPF31OriginalDecisionData()](#getPF31OriginalDecisionData--) | Gets the PF31OriginalDecisionData. |
+| [getPF0CustomFuncRegistration()](#getPF0CustomFuncRegistration--) | Gets the PF0CustomFuncRegistration.
+ |
+| [getPF1DisableShootingModes()](#getPF1DisableShootingModes--) | Gets the PF1DisableShootingModes.
+ |
+| [getPF2DisableMeteringModes()](#getPF2DisableMeteringModes--) | Gets the PF2DisableMeteringModes.
+ |
+| [getPF3ManualExposureMetering()](#getPF3ManualExposureMetering--) | Gets the PF3ManualExposureMetering.
+ |
+| [getPF4ExposureTimeLimits()](#getPF4ExposureTimeLimits--) | Gets the PF4ExposureTimeLimits.
+ |
+| [getPF5ApertureLimits()](#getPF5ApertureLimits--) | Gets the PF5ApertureLimits.
+ |
+| [getPF6PresetShootingModes()](#getPF6PresetShootingModes--) | Gets the PF6PresetShootingModes.
+ |
+| [getPF7BracketContinuousShoot()](#getPF7BracketContinuousShoot--) | Gets the PF7BracketContinuousShoot.
+ |
+| [getPF8SetBracketShots()](#getPF8SetBracketShots--) | Gets the PF8SetBracketShots.
+ |
+| [getPF9ChangeBracketSequence()](#getPF9ChangeBracketSequence--) | Gets the PF9ChangeBracketSequence.
+ |
+| [getPF10RetainProgramShift()](#getPF10RetainProgramShift--) | Gets the PF10RetainProgramShift.
+ |
+| [getPF13DrivePriority()](#getPF13DrivePriority--) | Gets the PF13DrivePriority.
+ |
+| [getPF14DisableFocusSearch()](#getPF14DisableFocusSearch--) | Gets the PF14DisableFocusSearch.
+ |
+| [getPF15DisableAFAssistBeam()](#getPF15DisableAFAssistBeam--) | Gets the PF15DisableAFAssistBeam.
+ |
+| [getPF16AutoFocusPointShoot()](#getPF16AutoFocusPointShoot--) | Gets the PF16AutoFocusPointShoot.
+ |
+| [getPF17DisableAFPointSel()](#getPF17DisableAFPointSel--) | Gets the PF17DisableAFPointSel.
+ |
+| [getPF18EnableAutoAFPointSel()](#getPF18EnableAutoAFPointSel--) | Gets the PF18EnableAutoAFPointSel.
+ |
+| [getPF19ContinuousShootSpeed()](#getPF19ContinuousShootSpeed--) | Gets the PF19ContinuousShootSpeed.
+ |
+| [getPF20LimitContinousShots()](#getPF20LimitContinousShots--) | Gets the PF20LimitContinousShots.
+ |
+| [getPF21EnableQuietOperation()](#getPF21EnableQuietOperation--) | Gets the PF21EnableQuietOperation.
+ |
+| [getPF23SetTimerLengths()](#getPF23SetTimerLengths--) | Gets the PF23SetTimerLengths.
+ |
+| [getPF24LightLCDDuringBulb()](#getPF24LightLCDDuringBulb--) | Gets the PF24LightLCDDuringBulb.
+ |
+| [getPF25DefaultClearSettings()](#getPF25DefaultClearSettings--) | Gets the PF25DefaultClearSettings.
+ |
+| [getPF26ShortenReleaseLag()](#getPF26ShortenReleaseLag--) | Gets the PF26ShortenReleaseLag.
+ |
+| [getPF27ReverseDialRotation()](#getPF27ReverseDialRotation--) | Gets the PF27ReverseDialRotation.
+ |
+| [getPF28NoQuickDialExpComp()](#getPF28NoQuickDialExpComp--) | Gets the PF28NoQuickDialExpComp.
+ |
+| [getPF29QuickDialSwitchOff()](#getPF29QuickDialSwitchOff--) | Gets the PF29QuickDialSwitchOff.
+ |
+| [getPF30EnlargementMode()](#getPF30EnlargementMode--) | Gets the PF30EnlargementMode.
+ |
+| [getPF31OriginalDecisionData()](#getPF31OriginalDecisionData--) | Gets the PF31OriginalDecisionData.
+ |
### Cr2PersonalFuncsPackage() {#Cr2PersonalFuncsPackage--}
```
public Cr2PersonalFuncsPackage()
```
-Initializes a new instance of the Cr2PersonalFuncsPackage class.
+Initializes a new instance of the
+Cr2PersonalFuncsPackage
+ class.
+
### getPF0CustomFuncRegistration() {#getPF0CustomFuncRegistration--}
```
@@ -67,8 +103,10 @@ public final int getPF0CustomFuncRegistration()
Gets the PF0CustomFuncRegistration.
+
**Returns:**
int - The PF0CustomFuncRegistration.
+
### getPF1DisableShootingModes() {#getPF1DisableShootingModes--}
```
public final int getPF1DisableShootingModes()
@@ -77,8 +115,10 @@ public final int getPF1DisableShootingModes()
Gets the PF1DisableShootingModes.
+
**Returns:**
int - The PF1DisableShootingModes.
+
### getPF2DisableMeteringModes() {#getPF2DisableMeteringModes--}
```
public final int getPF2DisableMeteringModes()
@@ -87,8 +127,10 @@ public final int getPF2DisableMeteringModes()
Gets the PF2DisableMeteringModes.
+
**Returns:**
int - The PF2DisableMeteringModes.
+
### getPF3ManualExposureMetering() {#getPF3ManualExposureMetering--}
```
public final int getPF3ManualExposureMetering()
@@ -97,8 +139,10 @@ public final int getPF3ManualExposureMetering()
Gets the PF3ManualExposureMetering.
+
**Returns:**
int - The PF3ManualExposureMetering.
+
### getPF4ExposureTimeLimits() {#getPF4ExposureTimeLimits--}
```
public final int getPF4ExposureTimeLimits()
@@ -107,8 +151,10 @@ public final int getPF4ExposureTimeLimits()
Gets the PF4ExposureTimeLimits.
+
**Returns:**
int - The PF4ExposureTimeLimits.
+
### getPF5ApertureLimits() {#getPF5ApertureLimits--}
```
public final int getPF5ApertureLimits()
@@ -117,8 +163,10 @@ public final int getPF5ApertureLimits()
Gets the PF5ApertureLimits.
+
**Returns:**
int - The PF5ApertureLimits.
+
### getPF6PresetShootingModes() {#getPF6PresetShootingModes--}
```
public final int getPF6PresetShootingModes()
@@ -127,8 +175,10 @@ public final int getPF6PresetShootingModes()
Gets the PF6PresetShootingModes.
+
**Returns:**
int - The PF6PresetShootingModes.
+
### getPF7BracketContinuousShoot() {#getPF7BracketContinuousShoot--}
```
public final int getPF7BracketContinuousShoot()
@@ -137,8 +187,10 @@ public final int getPF7BracketContinuousShoot()
Gets the PF7BracketContinuousShoot.
+
**Returns:**
int - The PF7BracketContinuousShoot.
+
### getPF8SetBracketShots() {#getPF8SetBracketShots--}
```
public final int getPF8SetBracketShots()
@@ -147,8 +199,10 @@ public final int getPF8SetBracketShots()
Gets the PF8SetBracketShots.
+
**Returns:**
int - The PF8SetBracketShots.
+
### getPF9ChangeBracketSequence() {#getPF9ChangeBracketSequence--}
```
public final int getPF9ChangeBracketSequence()
@@ -157,8 +211,10 @@ public final int getPF9ChangeBracketSequence()
Gets the PF9ChangeBracketSequence.
+
**Returns:**
int - The PF9ChangeBracketSequence.
+
### getPF10RetainProgramShift() {#getPF10RetainProgramShift--}
```
public final int getPF10RetainProgramShift()
@@ -167,8 +223,10 @@ public final int getPF10RetainProgramShift()
Gets the PF10RetainProgramShift.
+
**Returns:**
int - The PF10RetainProgramShift.
+
### getPF13DrivePriority() {#getPF13DrivePriority--}
```
public final int getPF13DrivePriority()
@@ -177,8 +235,10 @@ public final int getPF13DrivePriority()
Gets the PF13DrivePriority.
+
**Returns:**
int - The PF13DrivePriority.
+
### getPF14DisableFocusSearch() {#getPF14DisableFocusSearch--}
```
public final int getPF14DisableFocusSearch()
@@ -187,8 +247,10 @@ public final int getPF14DisableFocusSearch()
Gets the PF14DisableFocusSearch.
+
**Returns:**
int - The PF14DisableFocusSearch.
+
### getPF15DisableAFAssistBeam() {#getPF15DisableAFAssistBeam--}
```
public final int getPF15DisableAFAssistBeam()
@@ -197,8 +259,10 @@ public final int getPF15DisableAFAssistBeam()
Gets the PF15DisableAFAssistBeam.
+
**Returns:**
int - The PF15DisableAFAssistBeam.
+
### getPF16AutoFocusPointShoot() {#getPF16AutoFocusPointShoot--}
```
public final int getPF16AutoFocusPointShoot()
@@ -207,8 +271,10 @@ public final int getPF16AutoFocusPointShoot()
Gets the PF16AutoFocusPointShoot.
+
**Returns:**
int - The PF16AutoFocusPointShoot.
+
### getPF17DisableAFPointSel() {#getPF17DisableAFPointSel--}
```
public final int getPF17DisableAFPointSel()
@@ -217,8 +283,10 @@ public final int getPF17DisableAFPointSel()
Gets the PF17DisableAFPointSel.
+
**Returns:**
int - The PF17DisableAFPointSel.
+
### getPF18EnableAutoAFPointSel() {#getPF18EnableAutoAFPointSel--}
```
public final int getPF18EnableAutoAFPointSel()
@@ -227,8 +295,10 @@ public final int getPF18EnableAutoAFPointSel()
Gets the PF18EnableAutoAFPointSel.
+
**Returns:**
int - The PF18EnableAutoAFPointSel.
+
### getPF19ContinuousShootSpeed() {#getPF19ContinuousShootSpeed--}
```
public final int getPF19ContinuousShootSpeed()
@@ -237,8 +307,10 @@ public final int getPF19ContinuousShootSpeed()
Gets the PF19ContinuousShootSpeed.
+
**Returns:**
int - The PF19ContinuousShootSpeed.
+
### getPF20LimitContinousShots() {#getPF20LimitContinousShots--}
```
public final int getPF20LimitContinousShots()
@@ -247,8 +319,10 @@ public final int getPF20LimitContinousShots()
Gets the PF20LimitContinousShots.
+
**Returns:**
int - The PF20LimitContinousShots.
+
### getPF21EnableQuietOperation() {#getPF21EnableQuietOperation--}
```
public final int getPF21EnableQuietOperation()
@@ -257,8 +331,10 @@ public final int getPF21EnableQuietOperation()
Gets the PF21EnableQuietOperation.
+
**Returns:**
int - The PF21EnableQuietOperation.
+
### getPF23SetTimerLengths() {#getPF23SetTimerLengths--}
```
public final int getPF23SetTimerLengths()
@@ -267,8 +343,10 @@ public final int getPF23SetTimerLengths()
Gets the PF23SetTimerLengths.
+
**Returns:**
int - The PF23SetTimerLengths.
+
### getPF24LightLCDDuringBulb() {#getPF24LightLCDDuringBulb--}
```
public final int getPF24LightLCDDuringBulb()
@@ -277,8 +355,10 @@ public final int getPF24LightLCDDuringBulb()
Gets the PF24LightLCDDuringBulb.
+
**Returns:**
int - The PF24LightLCDDuringBulb.
+
### getPF25DefaultClearSettings() {#getPF25DefaultClearSettings--}
```
public final int getPF25DefaultClearSettings()
@@ -287,8 +367,10 @@ public final int getPF25DefaultClearSettings()
Gets the PF25DefaultClearSettings.
+
**Returns:**
int - The PF25DefaultClearSettings.
+
### getPF26ShortenReleaseLag() {#getPF26ShortenReleaseLag--}
```
public final int getPF26ShortenReleaseLag()
@@ -297,8 +379,10 @@ public final int getPF26ShortenReleaseLag()
Gets the PF26ShortenReleaseLag.
+
**Returns:**
int - The PF26ShortenReleaseLag.
+
### getPF27ReverseDialRotation() {#getPF27ReverseDialRotation--}
```
public final int getPF27ReverseDialRotation()
@@ -307,8 +391,10 @@ public final int getPF27ReverseDialRotation()
Gets the PF27ReverseDialRotation.
+
**Returns:**
int - The PF27ReverseDialRotation.
+
### getPF28NoQuickDialExpComp() {#getPF28NoQuickDialExpComp--}
```
public final int getPF28NoQuickDialExpComp()
@@ -317,8 +403,10 @@ public final int getPF28NoQuickDialExpComp()
Gets the PF28NoQuickDialExpComp.
+
**Returns:**
int - The PF28NoQuickDialExpComp.
+
### getPF29QuickDialSwitchOff() {#getPF29QuickDialSwitchOff--}
```
public final int getPF29QuickDialSwitchOff()
@@ -327,8 +415,10 @@ public final int getPF29QuickDialSwitchOff()
Gets the PF29QuickDialSwitchOff.
+
**Returns:**
int - The PF29QuickDialSwitchOff.
+
### getPF30EnlargementMode() {#getPF30EnlargementMode--}
```
public final int getPF30EnlargementMode()
@@ -337,8 +427,10 @@ public final int getPF30EnlargementMode()
Gets the PF30EnlargementMode.
+
**Returns:**
int - The PF30EnlargementMode.
+
### getPF31OriginalDecisionData() {#getPF31OriginalDecisionData--}
```
public final int getPF31OriginalDecisionData()
@@ -347,5 +439,7 @@ public final int getPF31OriginalDecisionData()
Gets the PF31OriginalDecisionData.
+
**Returns:**
int - The PF31OriginalDecisionData.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2personalfuncvaluespackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2personalfuncvaluespackage/_index.md
index b416ee3def..23a4898f6b 100644
--- a/english/java/com.groupdocs.metadata.core/cr2personalfuncvaluespackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2personalfuncvaluespackage/_index.md
@@ -13,46 +13,77 @@ public final class Cr2PersonalFuncValuesPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2PersonalFuncValuesPackage()](#Cr2PersonalFuncValuesPackage--) | Initializes a new instance of the Cr2PersonalFuncValuesPackage class. |
+| [Cr2PersonalFuncValuesPackage()](#Cr2PersonalFuncValuesPackage--) | Initializes a new instance of the
+Cr2PersonalFuncValuesPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPF1Value()](#getPF1Value--) | Gets the PF1Value. |
-| [getPF2Value()](#getPF2Value--) | Gets the PF2Value. |
-| [getPF3Value()](#getPF3Value--) | Gets the PF3Value. |
-| [getPF4ExposureTimeMin()](#getPF4ExposureTimeMin--) | Gets the PF4ExposureTimeMin. |
-| [getPF4ExposureTimeMax()](#getPF4ExposureTimeMax--) | Gets the PF4ExposureTimeMax. |
-| [getPF5ApertureMin()](#getPF5ApertureMin--) | Gets the PF5ApertureMin. |
-| [getPF5ApertureMax()](#getPF5ApertureMax--) | Gets the PF5ApertureMax. |
-| [getPF8BracketShots()](#getPF8BracketShots--) | Gets the PF8BracketShots. |
-| [getPF19ShootingSpeedLow()](#getPF19ShootingSpeedLow--) | Gets the PF19ShootingSpeedLow. |
-| [getPF19ShootingSpeedHigh()](#getPF19ShootingSpeedHigh--) | Gets the PF19ShootingSpeedHigh. |
-| [getPF20MaxContinousShots()](#getPF20MaxContinousShots--) | Gets the PF20MaxContinousShots. |
-| [getPF23ShutterButtonTime()](#getPF23ShutterButtonTime--) | Gets the PF23ShutterButtonTime. |
-| [getPF23FELockTime()](#getPF23FELockTime--) | Gets the PF23FELockTime. |
-| [getPF23PostReleaseTime()](#getPF23PostReleaseTime--) | Gets the PF23PostReleaseTime. |
-| [getPF25AEMode()](#getPF25AEMode--) | Gets the PF25AEMode. |
-| [getPF25MeteringMode()](#getPF25MeteringMode--) | Gets the PF25MeteringMode. |
-| [getPF25DriveMode()](#getPF25DriveMode--) | Gets the PF25DriveMode. |
-| [getPF25AFMode()](#getPF25AFMode--) | Gets the PF25AFMode. |
-| [getPF25AFPointSel()](#getPF25AFPointSel--) | Gets the PF25AFPointSel. |
-| [getPF25ImageSize()](#getPF25ImageSize--) | Gets the PF25ImageSize. |
-| [getPF25WBMode()](#getPF25WBMode--) | Gets the PF25WBMode. |
-| [getPF25Parameters()](#getPF25Parameters--) | Gets the PF25Parameters. |
-| [getPF25ColorMatrix()](#getPF25ColorMatrix--) | Gets the PF25ColorMatrix. |
-| [getPF27Value()](#getPF27Value--) | Gets the PF27Value. |
+| [getPF1Value()](#getPF1Value--) | Gets the PF1Value.
+ |
+| [getPF2Value()](#getPF2Value--) | Gets the PF2Value.
+ |
+| [getPF3Value()](#getPF3Value--) | Gets the PF3Value.
+ |
+| [getPF4ExposureTimeMin()](#getPF4ExposureTimeMin--) | Gets the PF4ExposureTimeMin.
+ |
+| [getPF4ExposureTimeMax()](#getPF4ExposureTimeMax--) | Gets the PF4ExposureTimeMax.
+ |
+| [getPF5ApertureMin()](#getPF5ApertureMin--) | Gets the PF5ApertureMin.
+ |
+| [getPF5ApertureMax()](#getPF5ApertureMax--) | Gets the PF5ApertureMax.
+ |
+| [getPF8BracketShots()](#getPF8BracketShots--) | Gets the PF8BracketShots.
+ |
+| [getPF19ShootingSpeedLow()](#getPF19ShootingSpeedLow--) | Gets the PF19ShootingSpeedLow.
+ |
+| [getPF19ShootingSpeedHigh()](#getPF19ShootingSpeedHigh--) | Gets the PF19ShootingSpeedHigh.
+ |
+| [getPF20MaxContinousShots()](#getPF20MaxContinousShots--) | Gets the PF20MaxContinousShots.
+ |
+| [getPF23ShutterButtonTime()](#getPF23ShutterButtonTime--) | Gets the PF23ShutterButtonTime.
+ |
+| [getPF23FELockTime()](#getPF23FELockTime--) | Gets the PF23FELockTime.
+ |
+| [getPF23PostReleaseTime()](#getPF23PostReleaseTime--) | Gets the PF23PostReleaseTime.
+ |
+| [getPF25AEMode()](#getPF25AEMode--) | Gets the PF25AEMode.
+ |
+| [getPF25MeteringMode()](#getPF25MeteringMode--) | Gets the PF25MeteringMode.
+ |
+| [getPF25DriveMode()](#getPF25DriveMode--) | Gets the PF25DriveMode.
+ |
+| [getPF25AFMode()](#getPF25AFMode--) | Gets the PF25AFMode.
+ |
+| [getPF25AFPointSel()](#getPF25AFPointSel--) | Gets the PF25AFPointSel.
+ |
+| [getPF25ImageSize()](#getPF25ImageSize--) | Gets the PF25ImageSize.
+ |
+| [getPF25WBMode()](#getPF25WBMode--) | Gets the PF25WBMode.
+ |
+| [getPF25Parameters()](#getPF25Parameters--) | Gets the PF25Parameters.
+ |
+| [getPF25ColorMatrix()](#getPF25ColorMatrix--) | Gets the PF25ColorMatrix.
+ |
+| [getPF27Value()](#getPF27Value--) | Gets the PF27Value.
+ |
### Cr2PersonalFuncValuesPackage() {#Cr2PersonalFuncValuesPackage--}
```
public Cr2PersonalFuncValuesPackage()
```
-Initializes a new instance of the Cr2PersonalFuncValuesPackage class.
+Initializes a new instance of the
+Cr2PersonalFuncValuesPackage
+ class.
+
### getPF1Value() {#getPF1Value--}
```
@@ -62,8 +93,10 @@ public final int getPF1Value()
Gets the PF1Value.
+
**Returns:**
int - The PF1Value.
+
### getPF2Value() {#getPF2Value--}
```
public final int getPF2Value()
@@ -72,8 +105,10 @@ public final int getPF2Value()
Gets the PF2Value.
+
**Returns:**
int - The PF2Value.
+
### getPF3Value() {#getPF3Value--}
```
public final int getPF3Value()
@@ -82,8 +117,10 @@ public final int getPF3Value()
Gets the PF3Value.
+
**Returns:**
int - The PF3Value.
+
### getPF4ExposureTimeMin() {#getPF4ExposureTimeMin--}
```
public final int getPF4ExposureTimeMin()
@@ -92,8 +129,10 @@ public final int getPF4ExposureTimeMin()
Gets the PF4ExposureTimeMin.
+
**Returns:**
int - The PF4ExposureTimeMin.
+
### getPF4ExposureTimeMax() {#getPF4ExposureTimeMax--}
```
public final int getPF4ExposureTimeMax()
@@ -102,8 +141,10 @@ public final int getPF4ExposureTimeMax()
Gets the PF4ExposureTimeMax.
+
**Returns:**
int - The PF4ExposureTimeMax.
+
### getPF5ApertureMin() {#getPF5ApertureMin--}
```
public final int getPF5ApertureMin()
@@ -112,8 +153,10 @@ public final int getPF5ApertureMin()
Gets the PF5ApertureMin.
+
**Returns:**
int - The PF5ApertureMin.
+
### getPF5ApertureMax() {#getPF5ApertureMax--}
```
public final int getPF5ApertureMax()
@@ -122,8 +165,10 @@ public final int getPF5ApertureMax()
Gets the PF5ApertureMax.
+
**Returns:**
int - The PF5ApertureMax.
+
### getPF8BracketShots() {#getPF8BracketShots--}
```
public final int getPF8BracketShots()
@@ -132,8 +177,10 @@ public final int getPF8BracketShots()
Gets the PF8BracketShots.
+
**Returns:**
int - The PF8BracketShots.
+
### getPF19ShootingSpeedLow() {#getPF19ShootingSpeedLow--}
```
public final int getPF19ShootingSpeedLow()
@@ -142,8 +189,10 @@ public final int getPF19ShootingSpeedLow()
Gets the PF19ShootingSpeedLow.
+
**Returns:**
int - The PF19ShootingSpeedLow.
+
### getPF19ShootingSpeedHigh() {#getPF19ShootingSpeedHigh--}
```
public final int getPF19ShootingSpeedHigh()
@@ -152,8 +201,10 @@ public final int getPF19ShootingSpeedHigh()
Gets the PF19ShootingSpeedHigh.
+
**Returns:**
int - The PF19ShootingSpeedHigh.
+
### getPF20MaxContinousShots() {#getPF20MaxContinousShots--}
```
public final int getPF20MaxContinousShots()
@@ -162,8 +213,10 @@ public final int getPF20MaxContinousShots()
Gets the PF20MaxContinousShots.
+
**Returns:**
int - The PF20MaxContinousShots.
+
### getPF23ShutterButtonTime() {#getPF23ShutterButtonTime--}
```
public final int getPF23ShutterButtonTime()
@@ -172,8 +225,10 @@ public final int getPF23ShutterButtonTime()
Gets the PF23ShutterButtonTime.
+
**Returns:**
int - The PF23ShutterButtonTime.
+
### getPF23FELockTime() {#getPF23FELockTime--}
```
public final int getPF23FELockTime()
@@ -182,8 +237,10 @@ public final int getPF23FELockTime()
Gets the PF23FELockTime.
+
**Returns:**
int - The PF23FELockTime.
+
### getPF23PostReleaseTime() {#getPF23PostReleaseTime--}
```
public final int getPF23PostReleaseTime()
@@ -192,8 +249,10 @@ public final int getPF23PostReleaseTime()
Gets the PF23PostReleaseTime.
+
**Returns:**
int - The PF23PostReleaseTime.
+
### getPF25AEMode() {#getPF25AEMode--}
```
public final int getPF25AEMode()
@@ -202,8 +261,10 @@ public final int getPF25AEMode()
Gets the PF25AEMode.
+
**Returns:**
int - The PF25AEMode.
+
### getPF25MeteringMode() {#getPF25MeteringMode--}
```
public final int getPF25MeteringMode()
@@ -212,8 +273,10 @@ public final int getPF25MeteringMode()
Gets the PF25MeteringMode.
+
**Returns:**
int - The PF25MeteringMode.
+
### getPF25DriveMode() {#getPF25DriveMode--}
```
public final int getPF25DriveMode()
@@ -222,8 +285,10 @@ public final int getPF25DriveMode()
Gets the PF25DriveMode.
+
**Returns:**
int - The PF25DriveMode.
+
### getPF25AFMode() {#getPF25AFMode--}
```
public final int getPF25AFMode()
@@ -232,8 +297,10 @@ public final int getPF25AFMode()
Gets the PF25AFMode.
+
**Returns:**
int - The PF25AFMode.
+
### getPF25AFPointSel() {#getPF25AFPointSel--}
```
public final int getPF25AFPointSel()
@@ -242,8 +309,10 @@ public final int getPF25AFPointSel()
Gets the PF25AFPointSel.
+
**Returns:**
int - The PF25AFPointSel.
+
### getPF25ImageSize() {#getPF25ImageSize--}
```
public final int getPF25ImageSize()
@@ -252,8 +321,10 @@ public final int getPF25ImageSize()
Gets the PF25ImageSize.
+
**Returns:**
int - The PF25ImageSize.
+
### getPF25WBMode() {#getPF25WBMode--}
```
public final int getPF25WBMode()
@@ -262,8 +333,10 @@ public final int getPF25WBMode()
Gets the PF25WBMode.
+
**Returns:**
int - The PF25WBMode.
+
### getPF25Parameters() {#getPF25Parameters--}
```
public final int getPF25Parameters()
@@ -272,8 +345,10 @@ public final int getPF25Parameters()
Gets the PF25Parameters.
+
**Returns:**
int - The PF25Parameters.
+
### getPF25ColorMatrix() {#getPF25ColorMatrix--}
```
public final int getPF25ColorMatrix()
@@ -282,8 +357,10 @@ public final int getPF25ColorMatrix()
Gets the PF25ColorMatrix.
+
**Returns:**
int - The PF25ColorMatrix.
+
### getPF27Value() {#getPF27Value--}
```
public final int getPF27Value()
@@ -292,5 +369,7 @@ public final int getPF27Value()
Gets the PF27Value.
+
**Returns:**
int - The PF27Value.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2processingpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2processingpackage/_index.md
index 57fd080646..73a91769a3 100644
--- a/english/java/com.groupdocs.metadata.core/cr2processingpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2processingpackage/_index.md
@@ -13,35 +13,55 @@ public final class Cr2ProcessingPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2ProcessingPackage()](#Cr2ProcessingPackage--) | Initializes a new instance of the Cr2ProcessingPackage class. |
+| [Cr2ProcessingPackage()](#Cr2ProcessingPackage--) | Initializes a new instance of the
+Cr2ProcessingPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getToneCurve()](#getToneCurve--) | Gets the ToneCurve. |
-| [getSharpness()](#getSharpness--) | Gets the Sharpness. |
-| [getSharpnessFrequency()](#getSharpnessFrequency--) | Gets the SharpnessFrequency. |
-| [getSensorRedLevel()](#getSensorRedLevel--) | Gets the SensorRedLevel. |
-| [getSensorBlueLevel()](#getSensorBlueLevel--) | Gets the SensorBlueLevel. |
-| [getWhiteBalanceRed()](#getWhiteBalanceRed--) | Gets the WhiteBalanceRed. |
-| [getWhiteBalanceBlue()](#getWhiteBalanceBlue--) | Gets the WhiteBalanceBlue. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets the WhiteBalance. |
-| [getColorTemperature()](#getColorTemperature--) | Gets the ColorTemperature. |
-| [getPictureStyle()](#getPictureStyle--) | Gets the PictureStyle. |
-| [getDigitalGain()](#getDigitalGain--) | Gets the DigitalGain. |
-| [getWBShiftAB()](#getWBShiftAB--) | Gets the WBShiftAB. |
-| [getWBShiftGM()](#getWBShiftGM--) | Gets the WBShiftGM. |
+| [getToneCurve()](#getToneCurve--) | Gets the ToneCurve.
+ |
+| [getSharpness()](#getSharpness--) | Gets the Sharpness.
+ |
+| [getSharpnessFrequency()](#getSharpnessFrequency--) | Gets the SharpnessFrequency.
+ |
+| [getSensorRedLevel()](#getSensorRedLevel--) | Gets the SensorRedLevel.
+ |
+| [getSensorBlueLevel()](#getSensorBlueLevel--) | Gets the SensorBlueLevel.
+ |
+| [getWhiteBalanceRed()](#getWhiteBalanceRed--) | Gets the WhiteBalanceRed.
+ |
+| [getWhiteBalanceBlue()](#getWhiteBalanceBlue--) | Gets the WhiteBalanceBlue.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets the WhiteBalance.
+ |
+| [getColorTemperature()](#getColorTemperature--) | Gets the ColorTemperature.
+ |
+| [getPictureStyle()](#getPictureStyle--) | Gets the PictureStyle.
+ |
+| [getDigitalGain()](#getDigitalGain--) | Gets the DigitalGain.
+ |
+| [getWBShiftAB()](#getWBShiftAB--) | Gets the WBShiftAB.
+ |
+| [getWBShiftGM()](#getWBShiftGM--) | Gets the WBShiftGM.
+ |
### Cr2ProcessingPackage() {#Cr2ProcessingPackage--}
```
public Cr2ProcessingPackage()
```
-Initializes a new instance of the Cr2ProcessingPackage class.
+Initializes a new instance of the
+Cr2ProcessingPackage
+ class.
+
### getToneCurve() {#getToneCurve--}
```
@@ -51,8 +71,10 @@ public final int getToneCurve()
Gets the ToneCurve.
+
**Returns:**
int - The ToneCurve.
+
### getSharpness() {#getSharpness--}
```
public final int getSharpness()
@@ -61,8 +83,10 @@ public final int getSharpness()
Gets the Sharpness.
+
**Returns:**
int - The Sharpness.
+
### getSharpnessFrequency() {#getSharpnessFrequency--}
```
public final int getSharpnessFrequency()
@@ -71,8 +95,10 @@ public final int getSharpnessFrequency()
Gets the SharpnessFrequency.
+
**Returns:**
int - The SharpnessFrequency.
+
### getSensorRedLevel() {#getSensorRedLevel--}
```
public final int getSensorRedLevel()
@@ -81,8 +107,10 @@ public final int getSensorRedLevel()
Gets the SensorRedLevel.
+
**Returns:**
int - The SensorRedLevel.
+
### getSensorBlueLevel() {#getSensorBlueLevel--}
```
public final int getSensorBlueLevel()
@@ -91,8 +119,10 @@ public final int getSensorBlueLevel()
Gets the SensorBlueLevel.
+
**Returns:**
int - The SensorBlueLevel.
+
### getWhiteBalanceRed() {#getWhiteBalanceRed--}
```
public final int getWhiteBalanceRed()
@@ -101,8 +131,10 @@ public final int getWhiteBalanceRed()
Gets the WhiteBalanceRed.
+
**Returns:**
int - The WhiteBalanceRed.
+
### getWhiteBalanceBlue() {#getWhiteBalanceBlue--}
```
public final int getWhiteBalanceBlue()
@@ -111,8 +143,10 @@ public final int getWhiteBalanceBlue()
Gets the WhiteBalanceBlue.
+
**Returns:**
int - The WhiteBalanceBlue.
+
### getWhiteBalance() {#getWhiteBalance--}
```
public final int getWhiteBalance()
@@ -121,8 +155,10 @@ public final int getWhiteBalance()
Gets the WhiteBalance.
+
**Returns:**
int - The WhiteBalance.
+
### getColorTemperature() {#getColorTemperature--}
```
public final int getColorTemperature()
@@ -131,8 +167,10 @@ public final int getColorTemperature()
Gets the ColorTemperature.
+
**Returns:**
int - The ColorTemperature.
+
### getPictureStyle() {#getPictureStyle--}
```
public final int getPictureStyle()
@@ -141,8 +179,10 @@ public final int getPictureStyle()
Gets the PictureStyle.
+
**Returns:**
int - The PictureStyle.
+
### getDigitalGain() {#getDigitalGain--}
```
public final int getDigitalGain()
@@ -151,8 +191,10 @@ public final int getDigitalGain()
Gets the DigitalGain.
+
**Returns:**
int - The DigitalGain.
+
### getWBShiftAB() {#getWBShiftAB--}
```
public final int getWBShiftAB()
@@ -161,8 +203,10 @@ public final int getWBShiftAB()
Gets the WBShiftAB.
+
**Returns:**
int - The WBShiftAB.
+
### getWBShiftGM() {#getWBShiftGM--}
```
public final int getWBShiftGM()
@@ -171,5 +215,7 @@ public final int getWBShiftGM()
Gets the WBShiftGM.
+
**Returns:**
int - The WBShiftGM.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2rootpackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2rootpackage/_index.md
index 9b9c99d281..964e25cf89 100644
--- a/english/java/com.groupdocs.metadata.core/cr2rootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2rootpackage/_index.md
@@ -13,11 +13,13 @@ public class Cr2RootPackage extends RootMetadataPackage
```
Represents an entry point to all metadata packages presented in a particular file CR2.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCr2Package()](#getCr2Package--) | Gets the CR2 header metadata package. |
+| [getCr2Package()](#getCr2Package--) | Gets the CR2 header metadata package.
+ |
### getCr2Package() {#getCr2Package--}
```
public final Cr2Package getCr2Package()
@@ -26,5 +28,7 @@ public final Cr2Package getCr2Package()
Gets the CR2 header metadata package.
+
**Returns:**
[Cr2Package](../../com.groupdocs.metadata.core/cr2package) - The CR2 header metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2sensorinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2sensorinfopackage/_index.md
index 04b7456382..154dc3461f 100644
--- a/english/java/com.groupdocs.metadata.core/cr2sensorinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2sensorinfopackage/_index.md
@@ -13,32 +13,49 @@ public final class Cr2SensorInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2SensorInfoPackage()](#Cr2SensorInfoPackage--) | Initializes a new instance of the Cr2SensorInfoPackage class. |
+| [Cr2SensorInfoPackage()](#Cr2SensorInfoPackage--) | Initializes a new instance of the
+Cr2SensorInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getSensorWidth()](#getSensorWidth--) | Gets the SensorWidth. |
-| [getSensorHeight()](#getSensorHeight--) | Gets the SensorHeight. |
-| [getSensorLeftBorder()](#getSensorLeftBorder--) | Gets the SensorLeftBorder. |
-| [getSensorTopBorder()](#getSensorTopBorder--) | Gets the SensorTopBorder. |
-| [getSensorRightBorder()](#getSensorRightBorder--) | Gets the SensorRightBorder. |
-| [getSensorBottomBorder()](#getSensorBottomBorder--) | Gets the SensorBottomBorder. |
-| [getBlackMaskLeftBorder()](#getBlackMaskLeftBorder--) | Gets the BlackMaskLeftBorder. |
-| [getBlackMaskTopBorder()](#getBlackMaskTopBorder--) | Gets the BlackMaskTopBorder. |
-| [getBlackMaskRightBorder()](#getBlackMaskRightBorder--) | Gets the BlackMaskRightBorder. |
-| [getBlackMaskBottomBorder()](#getBlackMaskBottomBorder--) | Gets the BlackMaskBottomBorder. |
+| [getSensorWidth()](#getSensorWidth--) | Gets the SensorWidth.
+ |
+| [getSensorHeight()](#getSensorHeight--) | Gets the SensorHeight.
+ |
+| [getSensorLeftBorder()](#getSensorLeftBorder--) | Gets the SensorLeftBorder.
+ |
+| [getSensorTopBorder()](#getSensorTopBorder--) | Gets the SensorTopBorder.
+ |
+| [getSensorRightBorder()](#getSensorRightBorder--) | Gets the SensorRightBorder.
+ |
+| [getSensorBottomBorder()](#getSensorBottomBorder--) | Gets the SensorBottomBorder.
+ |
+| [getBlackMaskLeftBorder()](#getBlackMaskLeftBorder--) | Gets the BlackMaskLeftBorder.
+ |
+| [getBlackMaskTopBorder()](#getBlackMaskTopBorder--) | Gets the BlackMaskTopBorder.
+ |
+| [getBlackMaskRightBorder()](#getBlackMaskRightBorder--) | Gets the BlackMaskRightBorder.
+ |
+| [getBlackMaskBottomBorder()](#getBlackMaskBottomBorder--) | Gets the BlackMaskBottomBorder.
+ |
### Cr2SensorInfoPackage() {#Cr2SensorInfoPackage--}
```
public Cr2SensorInfoPackage()
```
-Initializes a new instance of the Cr2SensorInfoPackage class.
+Initializes a new instance of the
+Cr2SensorInfoPackage
+ class.
+
### getSensorWidth() {#getSensorWidth--}
```
@@ -48,8 +65,10 @@ public final int getSensorWidth()
Gets the SensorWidth.
+
**Returns:**
int - The SensorWidth.
+
### getSensorHeight() {#getSensorHeight--}
```
public final int getSensorHeight()
@@ -58,8 +77,10 @@ public final int getSensorHeight()
Gets the SensorHeight.
+
**Returns:**
int - The SensorHeight.
+
### getSensorLeftBorder() {#getSensorLeftBorder--}
```
public final int getSensorLeftBorder()
@@ -68,8 +89,10 @@ public final int getSensorLeftBorder()
Gets the SensorLeftBorder.
+
**Returns:**
int - The SensorLeftBorder.
+
### getSensorTopBorder() {#getSensorTopBorder--}
```
public final int getSensorTopBorder()
@@ -78,8 +101,10 @@ public final int getSensorTopBorder()
Gets the SensorTopBorder.
+
**Returns:**
int - The SensorTopBorder.
+
### getSensorRightBorder() {#getSensorRightBorder--}
```
public final int getSensorRightBorder()
@@ -88,8 +113,10 @@ public final int getSensorRightBorder()
Gets the SensorRightBorder.
+
**Returns:**
int - The SensorRightBorder.
+
### getSensorBottomBorder() {#getSensorBottomBorder--}
```
public final int getSensorBottomBorder()
@@ -98,8 +125,10 @@ public final int getSensorBottomBorder()
Gets the SensorBottomBorder.
+
**Returns:**
int - The SensorBottomBorder.
+
### getBlackMaskLeftBorder() {#getBlackMaskLeftBorder--}
```
public final int getBlackMaskLeftBorder()
@@ -108,8 +137,10 @@ public final int getBlackMaskLeftBorder()
Gets the BlackMaskLeftBorder.
+
**Returns:**
int - The BlackMaskLeftBorder.
+
### getBlackMaskTopBorder() {#getBlackMaskTopBorder--}
```
public final int getBlackMaskTopBorder()
@@ -118,8 +149,10 @@ public final int getBlackMaskTopBorder()
Gets the BlackMaskTopBorder.
+
**Returns:**
int - The BlackMaskTopBorder.
+
### getBlackMaskRightBorder() {#getBlackMaskRightBorder--}
```
public final int getBlackMaskRightBorder()
@@ -128,8 +161,10 @@ public final int getBlackMaskRightBorder()
Gets the BlackMaskRightBorder.
+
**Returns:**
int - The BlackMaskRightBorder.
+
### getBlackMaskBottomBorder() {#getBlackMaskBottomBorder--}
```
public final int getBlackMaskBottomBorder()
@@ -138,5 +173,7 @@ public final int getBlackMaskBottomBorder()
Gets the BlackMaskBottomBorder.
+
**Returns:**
int - The BlackMaskBottomBorder.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2shotinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2shotinfopackage/_index.md
index 82b0ce073c..9f7941c6b9 100644
--- a/english/java/com.groupdocs.metadata.core/cr2shotinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2shotinfopackage/_index.md
@@ -13,50 +13,85 @@ public final class Cr2ShotInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2ShotInfoPackage()](#Cr2ShotInfoPackage--) | Initializes a new instance of the Cr2ShotInfoPackage class. |
+| [Cr2ShotInfoPackage()](#Cr2ShotInfoPackage--) | Initializes a new instance of the
+Cr2ShotInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAutoISO()](#getAutoISO--) | Gets the AutoISO. |
-| [getBaseISO()](#getBaseISO--) | Gets the BaseISO. |
-| [getMeasuredEV()](#getMeasuredEV--) | Gets the MeasuredEV. |
-| [getTargetAperture()](#getTargetAperture--) | Gets the TargetAperture. |
-| [getTargetExposureTime()](#getTargetExposureTime--) | Gets the TargetExposureTime. |
-| [getExposureCompensation()](#getExposureCompensation--) | Gets the ExposureCompensation. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets the WhiteBalance. |
-| [getSlowShutter()](#getSlowShutter--) | Gets the SlowShutter. |
-| [getSequenceNumber()](#getSequenceNumber--) | Gets the SequenceNumber. |
-| [getOpticalZoomCode()](#getOpticalZoomCode--) | Gets the OpticalZoomCode. |
-| [getCameraTemperature()](#getCameraTemperature--) | Gets the CameraTemperature. |
-| [getFlashGuideNumber()](#getFlashGuideNumber--) | Gets the FlashGuideNumber. |
-| [getAFPointsInFocus()](#getAFPointsInFocus--) | Gets the AFPointsInFocus. |
-| [getFlashExposureComp()](#getFlashExposureComp--) | Gets the FlashExposureComp. |
-| [getAutoExposureBracketing()](#getAutoExposureBracketing--) | Gets the AutoExposureBracketing. |
-| [getAEBBracketValue()](#getAEBBracketValue--) | Gets the AEBBracketValue. |
-| [getControlMode()](#getControlMode--) | Gets the ControlMode. |
-| [getFocusDistanceUpper()](#getFocusDistanceUpper--) | Gets the FocusDistanceUpper. |
-| [getFocusDistanceLower()](#getFocusDistanceLower--) | Gets the FocusDistanceLower. |
-| [getFNumber()](#getFNumber--) | Gets the FNumber. |
-| [getExposureTime()](#getExposureTime--) | Gets the ExposureTime. |
-| [getMeasuredEV2()](#getMeasuredEV2--) | Gets the MeasuredEV2. |
-| [getBulbDuration()](#getBulbDuration--) | Gets the BulbDuration. |
-| [getCameraType()](#getCameraType--) | Gets the CameraType. |
-| [getAutoRotate()](#getAutoRotate--) | Gets the AutoRotate. |
-| [getNDFilter()](#getNDFilter--) | Gets the NDFilter. |
-| [getSelfTimer2()](#getSelfTimer2--) | Gets the SelfTimer2. |
-| [getFlashOutput()](#getFlashOutput--) | Gets the FlashOutput. |
+| [getAutoISO()](#getAutoISO--) | Gets the AutoISO.
+ |
+| [getBaseISO()](#getBaseISO--) | Gets the BaseISO.
+ |
+| [getMeasuredEV()](#getMeasuredEV--) | Gets the MeasuredEV.
+ |
+| [getTargetAperture()](#getTargetAperture--) | Gets the TargetAperture.
+ |
+| [getTargetExposureTime()](#getTargetExposureTime--) | Gets the TargetExposureTime.
+ |
+| [getExposureCompensation()](#getExposureCompensation--) | Gets the ExposureCompensation.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets the WhiteBalance.
+ |
+| [getSlowShutter()](#getSlowShutter--) | Gets the SlowShutter.
+ |
+| [getSequenceNumber()](#getSequenceNumber--) | Gets the SequenceNumber.
+ |
+| [getOpticalZoomCode()](#getOpticalZoomCode--) | Gets the OpticalZoomCode.
+ |
+| [getCameraTemperature()](#getCameraTemperature--) | Gets the CameraTemperature.
+ |
+| [getFlashGuideNumber()](#getFlashGuideNumber--) | Gets the FlashGuideNumber.
+ |
+| [getAFPointsInFocus()](#getAFPointsInFocus--) | Gets the AFPointsInFocus.
+ |
+| [getFlashExposureComp()](#getFlashExposureComp--) | Gets the FlashExposureComp.
+ |
+| [getAutoExposureBracketing()](#getAutoExposureBracketing--) | Gets the AutoExposureBracketing.
+ |
+| [getAEBBracketValue()](#getAEBBracketValue--) | Gets the AEBBracketValue.
+ |
+| [getControlMode()](#getControlMode--) | Gets the ControlMode.
+ |
+| [getFocusDistanceUpper()](#getFocusDistanceUpper--) | Gets the FocusDistanceUpper.
+ |
+| [getFocusDistanceLower()](#getFocusDistanceLower--) | Gets the FocusDistanceLower.
+ |
+| [getFNumber()](#getFNumber--) | Gets the FNumber.
+ |
+| [getExposureTime()](#getExposureTime--) | Gets the ExposureTime.
+ |
+| [getMeasuredEV2()](#getMeasuredEV2--) | Gets the MeasuredEV2.
+ |
+| [getBulbDuration()](#getBulbDuration--) | Gets the BulbDuration.
+ |
+| [getCameraType()](#getCameraType--) | Gets the CameraType.
+ |
+| [getAutoRotate()](#getAutoRotate--) | Gets the AutoRotate.
+ |
+| [getNDFilter()](#getNDFilter--) | Gets the NDFilter.
+ |
+| [getSelfTimer2()](#getSelfTimer2--) | Gets the SelfTimer2.
+ |
+| [getFlashOutput()](#getFlashOutput--) | Gets the FlashOutput.
+ |
### Cr2ShotInfoPackage() {#Cr2ShotInfoPackage--}
```
public Cr2ShotInfoPackage()
```
-Initializes a new instance of the Cr2ShotInfoPackage class.
+Initializes a new instance of the
+Cr2ShotInfoPackage
+ class.
+
### getAutoISO() {#getAutoISO--}
```
@@ -66,8 +101,10 @@ public final int getAutoISO()
Gets the AutoISO.
+
**Returns:**
int - The AutoISO.
+
### getBaseISO() {#getBaseISO--}
```
public final int getBaseISO()
@@ -76,8 +113,10 @@ public final int getBaseISO()
Gets the BaseISO.
+
**Returns:**
int - The BaseISO.
+
### getMeasuredEV() {#getMeasuredEV--}
```
public final int getMeasuredEV()
@@ -86,8 +125,10 @@ public final int getMeasuredEV()
Gets the MeasuredEV.
+
**Returns:**
int - The MeasuredEV.
+
### getTargetAperture() {#getTargetAperture--}
```
public final int getTargetAperture()
@@ -96,8 +137,10 @@ public final int getTargetAperture()
Gets the TargetAperture.
+
**Returns:**
int - The TargetAperture.
+
### getTargetExposureTime() {#getTargetExposureTime--}
```
public final int getTargetExposureTime()
@@ -106,8 +149,10 @@ public final int getTargetExposureTime()
Gets the TargetExposureTime.
+
**Returns:**
int - The TargetExposureTime.
+
### getExposureCompensation() {#getExposureCompensation--}
```
public final int getExposureCompensation()
@@ -116,8 +161,10 @@ public final int getExposureCompensation()
Gets the ExposureCompensation.
+
**Returns:**
int - The ExposureCompensation.
+
### getWhiteBalance() {#getWhiteBalance--}
```
public final int getWhiteBalance()
@@ -126,8 +173,10 @@ public final int getWhiteBalance()
Gets the WhiteBalance.
+
**Returns:**
int - The WhiteBalance.
+
### getSlowShutter() {#getSlowShutter--}
```
public final int getSlowShutter()
@@ -136,8 +185,10 @@ public final int getSlowShutter()
Gets the SlowShutter.
+
**Returns:**
int - The SlowShutter.
+
### getSequenceNumber() {#getSequenceNumber--}
```
public final int getSequenceNumber()
@@ -146,8 +197,10 @@ public final int getSequenceNumber()
Gets the SequenceNumber.
+
**Returns:**
int - The SequenceNumber.
+
### getOpticalZoomCode() {#getOpticalZoomCode--}
```
public final int getOpticalZoomCode()
@@ -156,8 +209,10 @@ public final int getOpticalZoomCode()
Gets the OpticalZoomCode.
+
**Returns:**
int - The OpticalZoomCode.
+
### getCameraTemperature() {#getCameraTemperature--}
```
public final int getCameraTemperature()
@@ -166,8 +221,10 @@ public final int getCameraTemperature()
Gets the CameraTemperature.
+
**Returns:**
int - The CameraTemperature.
+
### getFlashGuideNumber() {#getFlashGuideNumber--}
```
public final int getFlashGuideNumber()
@@ -176,8 +233,10 @@ public final int getFlashGuideNumber()
Gets the FlashGuideNumber.
+
**Returns:**
int - The FlashGuideNumber.
+
### getAFPointsInFocus() {#getAFPointsInFocus--}
```
public final int getAFPointsInFocus()
@@ -186,8 +245,10 @@ public final int getAFPointsInFocus()
Gets the AFPointsInFocus.
+
**Returns:**
int - The AFPointsInFocus.
+
### getFlashExposureComp() {#getFlashExposureComp--}
```
public final int getFlashExposureComp()
@@ -196,8 +257,10 @@ public final int getFlashExposureComp()
Gets the FlashExposureComp.
+
**Returns:**
int - The FlashExposureComp.
+
### getAutoExposureBracketing() {#getAutoExposureBracketing--}
```
public final int getAutoExposureBracketing()
@@ -206,8 +269,10 @@ public final int getAutoExposureBracketing()
Gets the AutoExposureBracketing.
+
**Returns:**
int - The AutoExposureBracketing.
+
### getAEBBracketValue() {#getAEBBracketValue--}
```
public final int getAEBBracketValue()
@@ -216,8 +281,10 @@ public final int getAEBBracketValue()
Gets the AEBBracketValue.
+
**Returns:**
int - The AEBBracketValue.
+
### getControlMode() {#getControlMode--}
```
public final int getControlMode()
@@ -226,8 +293,10 @@ public final int getControlMode()
Gets the ControlMode.
+
**Returns:**
int - The ControlMode.
+
### getFocusDistanceUpper() {#getFocusDistanceUpper--}
```
public final int getFocusDistanceUpper()
@@ -236,8 +305,10 @@ public final int getFocusDistanceUpper()
Gets the FocusDistanceUpper.
+
**Returns:**
int - The FocusDistanceUpper.
+
### getFocusDistanceLower() {#getFocusDistanceLower--}
```
public final int getFocusDistanceLower()
@@ -246,8 +317,10 @@ public final int getFocusDistanceLower()
Gets the FocusDistanceLower.
+
**Returns:**
int - The FocusDistanceLower.
+
### getFNumber() {#getFNumber--}
```
public final int getFNumber()
@@ -256,8 +329,10 @@ public final int getFNumber()
Gets the FNumber.
+
**Returns:**
int - The FNumber.
+
### getExposureTime() {#getExposureTime--}
```
public final int getExposureTime()
@@ -266,8 +341,10 @@ public final int getExposureTime()
Gets the ExposureTime.
+
**Returns:**
int - The ExposureTime.
+
### getMeasuredEV2() {#getMeasuredEV2--}
```
public final int getMeasuredEV2()
@@ -276,8 +353,10 @@ public final int getMeasuredEV2()
Gets the MeasuredEV2.
+
**Returns:**
int - The MeasuredEV2.
+
### getBulbDuration() {#getBulbDuration--}
```
public final int getBulbDuration()
@@ -286,8 +365,10 @@ public final int getBulbDuration()
Gets the BulbDuration.
+
**Returns:**
int - The BulbDuration.
+
### getCameraType() {#getCameraType--}
```
public final int getCameraType()
@@ -296,8 +377,10 @@ public final int getCameraType()
Gets the CameraType.
+
**Returns:**
int - The CameraType.
+
### getAutoRotate() {#getAutoRotate--}
```
public final int getAutoRotate()
@@ -306,8 +389,10 @@ public final int getAutoRotate()
Gets the AutoRotate.
+
**Returns:**
int - The AutoRotate.
+
### getNDFilter() {#getNDFilter--}
```
public final int getNDFilter()
@@ -316,8 +401,10 @@ public final int getNDFilter()
Gets the NDFilter.
+
**Returns:**
int - The NDFilter.
+
### getSelfTimer2() {#getSelfTimer2--}
```
public final int getSelfTimer2()
@@ -326,8 +413,10 @@ public final int getSelfTimer2()
Gets the SelfTimer2.
+
**Returns:**
int - The SelfTimer2.
+
### getFlashOutput() {#getFlashOutput--}
```
public final int getFlashOutput()
@@ -336,5 +425,7 @@ public final int getFlashOutput()
Gets the FlashOutput.
+
**Returns:**
int - The FlashOutput.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2timeinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2timeinfopackage/_index.md
index 55867dcb8a..fb3dfa2fea 100644
--- a/english/java/com.groupdocs.metadata.core/cr2timeinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2timeinfopackage/_index.md
@@ -13,25 +13,35 @@ public final class Cr2TimeInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2TimeInfoPackage()](#Cr2TimeInfoPackage--) | Initializes a new instance of the Cr2TimeInfoPackage class. |
+| [Cr2TimeInfoPackage()](#Cr2TimeInfoPackage--) | Initializes a new instance of the
+Cr2TimeInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getTimeZone()](#getTimeZone--) | Gets the TimeZone. |
-| [getTimeZoneCity()](#getTimeZoneCity--) | Gets the TimeZoneCity. |
-| [getDaylightSavings()](#getDaylightSavings--) | Gets the DaylightSavings. |
+| [getTimeZone()](#getTimeZone--) | Gets the TimeZone.
+ |
+| [getTimeZoneCity()](#getTimeZoneCity--) | Gets the TimeZoneCity.
+ |
+| [getDaylightSavings()](#getDaylightSavings--) | Gets the DaylightSavings.
+ |
### Cr2TimeInfoPackage() {#Cr2TimeInfoPackage--}
```
public Cr2TimeInfoPackage()
```
-Initializes a new instance of the Cr2TimeInfoPackage class.
+Initializes a new instance of the
+Cr2TimeInfoPackage
+ class.
+
### getTimeZone() {#getTimeZone--}
```
@@ -41,8 +51,10 @@ public final int getTimeZone()
Gets the TimeZone.
+
**Returns:**
int - The TimeZone.
+
### getTimeZoneCity() {#getTimeZoneCity--}
```
public final int getTimeZoneCity()
@@ -51,8 +63,10 @@ public final int getTimeZoneCity()
Gets the TimeZoneCity.
+
**Returns:**
int - The TimeZoneCity.
+
### getDaylightSavings() {#getDaylightSavings--}
```
public final int getDaylightSavings()
@@ -61,5 +75,7 @@ public final int getDaylightSavings()
Gets the DaylightSavings.
+
**Returns:**
int - The DaylightSavings.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2vignettingcorr2package/_index.md b/english/java/com.groupdocs.metadata.core/cr2vignettingcorr2package/_index.md
index 5b13082351..472cc8141e 100644
--- a/english/java/com.groupdocs.metadata.core/cr2vignettingcorr2package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2vignettingcorr2package/_index.md
@@ -13,26 +13,37 @@ public final class Cr2VignettingCorr2Package extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2VignettingCorr2Package()](#Cr2VignettingCorr2Package--) | Initializes a new instance of the Cr2VignettingCorr2Package class. |
+| [Cr2VignettingCorr2Package()](#Cr2VignettingCorr2Package--) | Initializes a new instance of the
+Cr2VignettingCorr2Package
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPeripheralLightingSetting()](#getPeripheralLightingSetting--) | Gets the PeripheralLightingSetting. |
-| [getChromaticAberrationSetting()](#getChromaticAberrationSetting--) | Gets the ChromaticAberrationSetting. |
-| [getDistortionCorrectionSetting()](#getDistortionCorrectionSetting--) | Gets the DistortionCorrectionSetting. |
-| [getDigitalLensOptimizerSetting()](#getDigitalLensOptimizerSetting--) | Gets the DigitalLensOptimizerSetting. |
+| [getPeripheralLightingSetting()](#getPeripheralLightingSetting--) | Gets the PeripheralLightingSetting.
+ |
+| [getChromaticAberrationSetting()](#getChromaticAberrationSetting--) | Gets the ChromaticAberrationSetting.
+ |
+| [getDistortionCorrectionSetting()](#getDistortionCorrectionSetting--) | Gets the DistortionCorrectionSetting.
+ |
+| [getDigitalLensOptimizerSetting()](#getDigitalLensOptimizerSetting--) | Gets the DigitalLensOptimizerSetting.
+ |
### Cr2VignettingCorr2Package() {#Cr2VignettingCorr2Package--}
```
public Cr2VignettingCorr2Package()
```
-Initializes a new instance of the Cr2VignettingCorr2Package class.
+Initializes a new instance of the
+Cr2VignettingCorr2Package
+ class.
+
### getPeripheralLightingSetting() {#getPeripheralLightingSetting--}
```
@@ -42,8 +53,10 @@ public final int getPeripheralLightingSetting()
Gets the PeripheralLightingSetting.
+
**Returns:**
int - The PeripheralLightingSetting.
+
### getChromaticAberrationSetting() {#getChromaticAberrationSetting--}
```
public final int getChromaticAberrationSetting()
@@ -52,8 +65,10 @@ public final int getChromaticAberrationSetting()
Gets the ChromaticAberrationSetting.
+
**Returns:**
int - The ChromaticAberrationSetting.
+
### getDistortionCorrectionSetting() {#getDistortionCorrectionSetting--}
```
public final int getDistortionCorrectionSetting()
@@ -62,8 +77,10 @@ public final int getDistortionCorrectionSetting()
Gets the DistortionCorrectionSetting.
+
**Returns:**
int - The DistortionCorrectionSetting.
+
### getDigitalLensOptimizerSetting() {#getDigitalLensOptimizerSetting--}
```
public final int getDigitalLensOptimizerSetting()
@@ -72,5 +89,7 @@ public final int getDigitalLensOptimizerSetting()
Gets the DigitalLensOptimizerSetting.
+
**Returns:**
int - The DigitalLensOptimizerSetting.
+
diff --git a/english/java/com.groupdocs.metadata.core/cr2wbinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/cr2wbinfopackage/_index.md
index a4eb79f751..f0b679d6f2 100644
--- a/english/java/com.groupdocs.metadata.core/cr2wbinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/cr2wbinfopackage/_index.md
@@ -13,32 +13,49 @@ public final class Cr2WBInfoPackage extends RawDictionaryBasePackage
```
Represents Canon MakerNotes tags.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Cr2WBInfoPackage()](#Cr2WBInfoPackage--) | Initializes a new instance of the Cr2WBInfoPackage class. |
+| [Cr2WBInfoPackage()](#Cr2WBInfoPackage--) | Initializes a new instance of the
+Cr2WBInfoPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getWB_GRBGLevelsAuto()](#getWB-GRBGLevelsAuto--) | Gets the WB\_GRBGLevelsAuto. |
-| [getWB_GRBGLevelsDaylight()](#getWB-GRBGLevelsDaylight--) | Gets the WB\_GRBGLevelsDaylight. |
-| [getWB_GRBGLevelsCloudy()](#getWB-GRBGLevelsCloudy--) | Gets the WB\_GRBGLevelsCloudy. |
-| [getWB_GRBGLevelsTungsten()](#getWB-GRBGLevelsTungsten--) | Gets the WB\_GRBGLevelsTungsten. |
-| [getWB_GRBGLevelsFluorescent()](#getWB-GRBGLevelsFluorescent--) | Gets the WB\_GRBGLevelsFluorescent. |
-| [getWB_GRBGLevelsFluorHigh()](#getWB-GRBGLevelsFluorHigh--) | Gets the WB\_GRBGLevelsFluorHigh. |
-| [getWB_GRBGLevelsFlash()](#getWB-GRBGLevelsFlash--) | Gets the WB\_GRBGLevelsFlash. |
-| [getWB_GRBGLevelsUnderwater()](#getWB-GRBGLevelsUnderwater--) | Gets the WB\_GRBGLevelsUnderwater. |
-| [getWB_GRBGLevelsCustom1()](#getWB-GRBGLevelsCustom1--) | Gets the WB\_GRBGLevelsCustom1. |
-| [getWB_GRBGLevelsCustom2()](#getWB-GRBGLevelsCustom2--) | Gets the WB\_GRBGLevelsCustom2. |
+| [getWB_GRBGLevelsAuto()](#getWB-GRBGLevelsAuto--) | Gets the WB_GRBGLevelsAuto.
+ |
+| [getWB_GRBGLevelsDaylight()](#getWB-GRBGLevelsDaylight--) | Gets the WB_GRBGLevelsDaylight.
+ |
+| [getWB_GRBGLevelsCloudy()](#getWB-GRBGLevelsCloudy--) | Gets the WB_GRBGLevelsCloudy.
+ |
+| [getWB_GRBGLevelsTungsten()](#getWB-GRBGLevelsTungsten--) | Gets the WB_GRBGLevelsTungsten.
+ |
+| [getWB_GRBGLevelsFluorescent()](#getWB-GRBGLevelsFluorescent--) | Gets the WB_GRBGLevelsFluorescent.
+ |
+| [getWB_GRBGLevelsFluorHigh()](#getWB-GRBGLevelsFluorHigh--) | Gets the WB_GRBGLevelsFluorHigh.
+ |
+| [getWB_GRBGLevelsFlash()](#getWB-GRBGLevelsFlash--) | Gets the WB_GRBGLevelsFlash.
+ |
+| [getWB_GRBGLevelsUnderwater()](#getWB-GRBGLevelsUnderwater--) | Gets the WB_GRBGLevelsUnderwater.
+ |
+| [getWB_GRBGLevelsCustom1()](#getWB-GRBGLevelsCustom1--) | Gets the WB_GRBGLevelsCustom1.
+ |
+| [getWB_GRBGLevelsCustom2()](#getWB-GRBGLevelsCustom2--) | Gets the WB_GRBGLevelsCustom2.
+ |
### Cr2WBInfoPackage() {#Cr2WBInfoPackage--}
```
public Cr2WBInfoPackage()
```
-Initializes a new instance of the Cr2WBInfoPackage class.
+Initializes a new instance of the
+Cr2WBInfoPackage
+ class.
+
### getWB_GRBGLevelsAuto() {#getWB-GRBGLevelsAuto--}
```
@@ -46,97 +63,117 @@ public final int[] getWB_GRBGLevelsAuto()
```
-Gets the WB\_GRBGLevelsAuto.
+Gets the WB_GRBGLevelsAuto.
+
**Returns:**
-int[] - The WB\_GRBGLevelsAuto.
+int[] - The WB_GRBGLevelsAuto.
+
### getWB_GRBGLevelsDaylight() {#getWB-GRBGLevelsDaylight--}
```
public final int[] getWB_GRBGLevelsDaylight()
```
-Gets the WB\_GRBGLevelsDaylight.
+Gets the WB_GRBGLevelsDaylight.
+
**Returns:**
-int[] - The WB\_GRBGLevelsDaylight.
+int[] - The WB_GRBGLevelsDaylight.
+
### getWB_GRBGLevelsCloudy() {#getWB-GRBGLevelsCloudy--}
```
public final int[] getWB_GRBGLevelsCloudy()
```
-Gets the WB\_GRBGLevelsCloudy.
+Gets the WB_GRBGLevelsCloudy.
+
**Returns:**
-int[] - The WB\_GRBGLevelsCloudy.
+int[] - The WB_GRBGLevelsCloudy.
+
### getWB_GRBGLevelsTungsten() {#getWB-GRBGLevelsTungsten--}
```
public final int[] getWB_GRBGLevelsTungsten()
```
-Gets the WB\_GRBGLevelsTungsten.
+Gets the WB_GRBGLevelsTungsten.
+
**Returns:**
-int[] - The WB\_GRBGLevelsTungsten.
+int[] - The WB_GRBGLevelsTungsten.
+
### getWB_GRBGLevelsFluorescent() {#getWB-GRBGLevelsFluorescent--}
```
public final int[] getWB_GRBGLevelsFluorescent()
```
-Gets the WB\_GRBGLevelsFluorescent.
+Gets the WB_GRBGLevelsFluorescent.
+
**Returns:**
-int[] - The WB\_GRBGLevelsFluorescent.
+int[] - The WB_GRBGLevelsFluorescent.
+
### getWB_GRBGLevelsFluorHigh() {#getWB-GRBGLevelsFluorHigh--}
```
public final int[] getWB_GRBGLevelsFluorHigh()
```
-Gets the WB\_GRBGLevelsFluorHigh.
+Gets the WB_GRBGLevelsFluorHigh.
+
**Returns:**
-int[] - The WB\_GRBGLevelsFluorHigh.
+int[] - The WB_GRBGLevelsFluorHigh.
+
### getWB_GRBGLevelsFlash() {#getWB-GRBGLevelsFlash--}
```
public final int[] getWB_GRBGLevelsFlash()
```
-Gets the WB\_GRBGLevelsFlash.
+Gets the WB_GRBGLevelsFlash.
+
**Returns:**
-int[] - The WB\_GRBGLevelsFlash.
+int[] - The WB_GRBGLevelsFlash.
+
### getWB_GRBGLevelsUnderwater() {#getWB-GRBGLevelsUnderwater--}
```
public final int[] getWB_GRBGLevelsUnderwater()
```
-Gets the WB\_GRBGLevelsUnderwater.
+Gets the WB_GRBGLevelsUnderwater.
+
**Returns:**
-int[] - The WB\_GRBGLevelsUnderwater.
+int[] - The WB_GRBGLevelsUnderwater.
+
### getWB_GRBGLevelsCustom1() {#getWB-GRBGLevelsCustom1--}
```
public final int[] getWB_GRBGLevelsCustom1()
```
-Gets the WB\_GRBGLevelsCustom1.
+Gets the WB_GRBGLevelsCustom1.
+
**Returns:**
-int[] - The WB\_GRBGLevelsCustom1.
+int[] - The WB_GRBGLevelsCustom1.
+
### getWB_GRBGLevelsCustom2() {#getWB-GRBGLevelsCustom2--}
```
public final int[] getWB_GRBGLevelsCustom2()
```
-Gets the WB\_GRBGLevelsCustom2.
+Gets the WB_GRBGLevelsCustom2.
+
**Returns:**
-int[] - The WB\_GRBGLevelsCustom2.
+int[] - The WB_GRBGLevelsCustom2.
+
diff --git a/english/java/com.groupdocs.metadata.core/custompackage/_index.md b/english/java/com.groupdocs.metadata.core/custompackage/_index.md
index b340b02a13..d6bcb3145f 100644
--- a/english/java/com.groupdocs.metadata.core/custompackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/custompackage/_index.md
@@ -13,3 +13,4 @@ public abstract class CustomPackage extends MetadataPackage
```
Provides a container for metadata properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/diagramformat/_index.md b/english/java/com.groupdocs.metadata.core/diagramformat/_index.md
index 085714188a..3e8a39061a 100644
--- a/english/java/com.groupdocs.metadata.core/diagramformat/_index.md
+++ b/english/java/com.groupdocs.metadata.core/diagramformat/_index.md
@@ -16,16 +16,23 @@ public enum DiagramFormat extends Enum implements IEnumValue
```
Defines various diagram subformats.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The format is not recognized. |
-| [Vdx](#Vdx) | Represents the .VDX Visio format. |
-| [Vsd](#Vsd) | Represents the .VSD Visio format. |
-| [Vsdx](#Vsdx) | Represents the .VSDX Visio format. |
-| [Vss](#Vss) | Represents the .VSS Visio format. |
-| [Vsx](#Vsx) | Represents the .VSX Visio format. |
+| [Unknown](#Unknown) | The format is not recognized.
+ |
+| [Vdx](#Vdx) | Represents the .VDX Visio format.
+ |
+| [Vsd](#Vsd) | Represents the .VSD Visio format.
+ |
+| [Vsdx](#Vsdx) | Represents the .VSDX Visio format.
+ |
+| [Vss](#Vss) | Represents the .VSS Visio format.
+ |
+| [Vsx](#Vsx) | Represents the .VSX Visio format.
+ |
## Methods
| Method | Description |
@@ -47,16 +54,20 @@ public static final DiagramFormat Unknown
The format is not recognized.
+
### Vdx {#Vdx}
```
public static final DiagramFormat Vdx
```
-Represents the .VDX Visio format. Any drawing or chart created in Microsoft Visio, but saved in XML format have .VDX extension. A Visio drawing XML file is created in Visio software, which is developed by Microsoft. Learn more about this file format [here][] .
-
+Represents the .VDX Visio format.
+Any drawing or chart created in Microsoft Visio, but saved in XML format have .VDX extension.
+A Visio drawing XML file is created in Visio software, which is developed by Microsoft.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/vdx/)
+.
-[here]: https://wiki.fileformat.com/image/vdx/
### Vsd {#Vsd}
```
@@ -64,21 +75,28 @@ public static final DiagramFormat Vsd
```
-Represents the .VSD Visio format. VSD files are drawings created with Microsoft Visio application to represent variety of graphical objects and the interconnection between these. Such drawings can contain visual objects such as visual objects, flow charts, UML diagram, information flow, organizational charts, software diagrams, network layout, database models, objects mapping and other similar information. Learn more about this file format [here][] .
+Represents the .VSD Visio format.
+VSD files are drawings created with Microsoft Visio application to represent variety of graphical objects and the interconnection between these.
+Such drawings can contain visual objects such as visual objects, flow charts, UML diagram, information flow, organizational charts,
+software diagrams, network layout, database models, objects mapping and other similar information.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/vsd/)
+.
-[here]: https://wiki.fileformat.com/image/vsd/
-
### Vsdx {#Vsdx}
```
public static final DiagramFormat Vsdx
```
-Represents the .VSDX Visio format. Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft Office 2013 onwards. It was developed to replace the binary file format, .VSD, which is supported by earlier versions of Microsoft Visio. Learn more about this file format [here][] .
-
+Represents the .VSDX Visio format.
+Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft Office 2013 onwards.
+It was developed to replace the binary file format, .VSD, which is supported by earlier versions of Microsoft Visio.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/vsdx/)
+.
-[here]: https://wiki.fileformat.com/image/vsdx/
### Vss {#Vss}
```
@@ -86,10 +104,13 @@ public static final DiagramFormat Vss
```
-Represents the .VSS Visio format. VSS are stencil files created with Microsoft Visio 2007 and earlier. A relatively new file format is .VSSX that was introduced with Microsoft Visio 2013. Stencil files provide drawing objects that can be included in a .VSD Visio drawing. Learn more about this file format [here][] .
-
+Represents the .VSS Visio format.
+VSS are stencil files created with Microsoft Visio 2007 and earlier.
+A relatively new file format is .VSSX that was introduced with Microsoft Visio 2013. Stencil files provide drawing objects that can be included in a .VSD Visio drawing.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/vss/)
+.
-[here]: https://wiki.fileformat.com/image/vss/
### Vsx {#Vsx}
```
@@ -97,11 +118,14 @@ public static final DiagramFormat Vsx
```
-Represents the .VSX Visio format. Files with .VSX extension refer to stencils that consist of drawings and shapes that are used for creating diagrams in Microsoft Visio. VSX files are saved in XML file format and was supported till Visio 2013. Learn more about this file format [here][] .
+Represents the .VSX Visio format.
+Files with .VSX extension refer to stencils that consist of drawings and shapes that are used for creating diagrams in Microsoft Visio.
+VSX files are saved in XML file format and was supported till Visio 2013.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/vsx/)
+.
-[here]: https://wiki.fileformat.com/image/vsx/
-
### values() {#values--}
```
public static DiagramFormat[] values()
@@ -160,6 +184,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -170,6 +195,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -185,6 +211,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -200,6 +227,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -210,5 +238,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/diagrampackage/_index.md b/english/java/com.groupdocs.metadata.core/diagrampackage/_index.md
index 83eaa59966..0286f0d1d4 100644
--- a/english/java/com.groupdocs.metadata.core/diagrampackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/diagrampackage/_index.md
@@ -14,15 +14,18 @@ public class DiagramPackage extends DocumentPackage
Represents a native metadata package in a diagram format.
+
**Learn more**
- * [Working with metadata in Diagrams][]
+* [Working with metadata in Diagrams](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Diagrams)
-The following code sample demonstrates how to update built-in metadata properties in a diagram document.
+
+The following code sample demonstrates how to update built-in metadata properties in a diagram document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputVdx)) {
> DiagramRootPackage root = metadata.getRootPackageGeneric();
> root.getDocumentProperties().setCreator("test author");
@@ -35,51 +38,87 @@ The following code sample demonstrates how to update built-in metadata propertie
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Diagrams]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Diagrams
## Methods
| Method | Description |
| --- | --- |
-| [getAlternateNames()](#getAlternateNames--) | Gets the alternate names for the document. |
-| [setAlternateNames(String value)](#setAlternateNames-java.lang.String-) | Sets the alternate names for the document. |
-| [getBuildNumberCreated()](#getBuildNumberCreated--) | Gets the full build number of the instance used to create the document. |
-| [getBuildNumberEdited()](#getBuildNumberEdited--) | Gets the build number of the instance last used to edit the document. |
-| [getCategory()](#getCategory--) | Gets the descriptive text for the type of drawing, such as flowchart or office layout. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the descriptive text for the type of drawing, such as flowchart or office layout. |
-| [getCompany()](#getCompany--) | Gets the user-entered information identifying the company creating the drawing or the company the drawing is being created for. |
-| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the user-entered information identifying the company creating the drawing or the company the drawing is being created for. |
-| [getCreator()](#getCreator--) | Gets the person who created or last updated the file. |
-| [setCreator(String value)](#setCreator-java.lang.String-) | Sets the person who created or last updated the file. |
-| [getDescription()](#getDescription--) | Gets a descriptive text string for the document. |
-| [setDescription(String value)](#setDescription-java.lang.String-) | Sets a descriptive text string for the document. |
-| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram). |
-| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram). |
-| [getKeywords()](#getKeywords--) | Gets a text string that identifies topics or other important information about the file, such as project name, client name, or version number. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets a text string that identifies topics or other important information about the file, such as project name, client name, or version number. |
-| [getLanguage()](#getLanguage--) | Gets the language of the document. |
-| [setLanguage(String value)](#setLanguage-java.lang.String-) | Sets the language of the document. |
-| [getManager()](#getManager--) | Gets a user-entered text string identifying the person in charge of the project or department. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets a user-entered text string identifying the person in charge of the project or department. |
-| [getPreviewPicture()](#getPreviewPicture--) | Gets the preview picture. |
-| [setPreviewPicture(byte[] value)](#setPreviewPicture-byte---) | Sets the preview picture. |
-| [getSubject()](#getSubject--) | Gets a user-defined text string that describes the contents of the document. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets a user-defined text string that describes the contents of the document. |
-| [getTemplate()](#getTemplate--) | Gets a string value specifying the file name of the template from which the document was created. |
-| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets a string value specifying the file name of the template from which the document was created. |
-| [getTimeCreated()](#getTimeCreated--) | Gets a date and time value indicating when the document was created. |
-| [setTimeCreated(Date value)](#setTimeCreated-java.util.Date-) | Sets a date and time value indicating when the document was created. |
-| [getTimeEdited()](#getTimeEdited--) | Gets a date and time value indicating when the document was last edited. |
-| [getTimePrinted()](#getTimePrinted--) | Gets a date and time value indicating when the document was last printed. |
-| [getTimeSaved()](#getTimeSaved--) | Gets a date and time value indicating when the document was last saved. |
-| [getTitle()](#getTitle--) | Gets a user-defined text string that serves as a descriptive title for the document. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets a user-defined text string that serves as a descriptive title for the document. |
-| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name. |
+| [getAlternateNames()](#getAlternateNames--) | Gets the alternate names for the document.
+ |
+| [setAlternateNames(String value)](#setAlternateNames-java.lang.String-) | Sets the alternate names for the document.
+ |
+| [getBuildNumberCreated()](#getBuildNumberCreated--) | Gets the full build number of the instance used to create the document.
+ |
+| [getBuildNumberEdited()](#getBuildNumberEdited--) | Gets the build number of the instance last used to edit the document.
+ |
+| [getCategory()](#getCategory--) | Gets the descriptive text for the type of drawing, such as flowchart or office layout.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the descriptive text for the type of drawing, such as flowchart or office layout.
+ |
+| [getCompany()](#getCompany--) | Gets the user-entered information identifying the company creating the drawing or the company the drawing is being created for.
+ |
+| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the user-entered information identifying the company creating the drawing or the company the drawing is being created for.
+ |
+| [getCreator()](#getCreator--) | Gets the person who created or last updated the file.
+ |
+| [setCreator(String value)](#setCreator-java.lang.String-) | Sets the person who created or last updated the file.
+ |
+| [getDescription()](#getDescription--) | Gets a descriptive text string for the document.
+ |
+| [setDescription(String value)](#setDescription-java.lang.String-) | Sets a descriptive text string for the document.
+ |
+| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram).
+ |
+| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram).
+ |
+| [getKeywords()](#getKeywords--) | Gets a text string that identifies topics or other important information about the file, such as project name, client name, or version number.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets a text string that identifies topics or other important information about the file, such as project name, client name, or version number.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language of the document.
+ |
+| [setLanguage(String value)](#setLanguage-java.lang.String-) | Sets the language of the document.
+ |
+| [getManager()](#getManager--) | Gets a user-entered text string identifying the person in charge of the project or department.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets a user-entered text string identifying the person in charge of the project or department.
+ |
+| [getPreviewPicture()](#getPreviewPicture--) | Gets the preview picture.
+ |
+| [setPreviewPicture(byte[] value)](#setPreviewPicture-byte---) | Sets the preview picture.
+ |
+| [getSubject()](#getSubject--) | Gets a user-defined text string that describes the contents of the document.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets a user-defined text string that describes the contents of the document.
+ |
+| [getTemplate()](#getTemplate--) | Gets a string value specifying the file name of the template from which the document was created.
+ |
+| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets a string value specifying the file name of the template from which the document was created.
+ |
+| [getTimeCreated()](#getTimeCreated--) | Gets a date and time value indicating when the document was created.
+ |
+| [setTimeCreated(Date value)](#setTimeCreated-java.util.Date-) | Sets a date and time value indicating when the document was created.
+ |
+| [getTimeEdited()](#getTimeEdited--) | Gets a date and time value indicating when the document was last edited.
+ |
+| [getTimePrinted()](#getTimePrinted--) | Gets a date and time value indicating when the document was last printed.
+ |
+| [getTimeSaved()](#getTimeSaved--) | Gets a date and time value indicating when the document was last saved.
+ |
+| [getTitle()](#getTitle--) | Gets a user-defined text string that serves as a descriptive title for the document.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets a user-defined text string that serves as a descriptive title for the document.
+ |
+| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name.
+ |
### getAlternateNames() {#getAlternateNames--}
```
public final String getAlternateNames()
@@ -88,8 +127,10 @@ public final String getAlternateNames()
Gets the alternate names for the document. Can be updated in VDX and VSX formats only.
+
**Returns:**
java.lang.String - The alternate names for the document.
+
### setAlternateNames(String value) {#setAlternateNames-java.lang.String-}
```
public final void setAlternateNames(String value)
@@ -98,10 +139,12 @@ public final void setAlternateNames(String value)
Sets the alternate names for the document. Can be updated in VDX and VSX formats only.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The alternate names for the document. |
+| value | java.lang.String | The alternate names for the document.
+ |
### getBuildNumberCreated() {#getBuildNumberCreated--}
```
@@ -111,8 +154,10 @@ public final String getBuildNumberCreated()
Gets the full build number of the instance used to create the document.
+
**Returns:**
java.lang.String - The full build number of the instance used to create the document.
+
### getBuildNumberEdited() {#getBuildNumberEdited--}
```
public final String getBuildNumberEdited()
@@ -121,30 +166,38 @@ public final String getBuildNumberEdited()
Gets the build number of the instance last used to edit the document.
+
**Returns:**
java.lang.String - The build number of the instance last used to edit the document.
+
### getCategory() {#getCategory--}
```
public final String getCategory()
```
-Gets the descriptive text for the type of drawing, such as flowchart or office layout. This text can also be entered in the Microsoft Visio user interface in the Category box in the Properties dialog box.
+Gets the descriptive text for the type of drawing, such as flowchart or office layout.
+This text can also be entered in the Microsoft Visio user interface in the Category box in the Properties dialog box.
+
**Returns:**
java.lang.String - The descriptive text for the type of drawing, such as flowchart or office layout.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
```
-Sets the descriptive text for the type of drawing, such as flowchart or office layout. This text can also be entered in the Microsoft Visio user interface in the Category box in the Properties dialog box.
+Sets the descriptive text for the type of drawing, such as flowchart or office layout.
+This text can also be entered in the Microsoft Visio user interface in the Category box in the Properties dialog box.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The descriptive text for the type of drawing, such as flowchart or office layout. |
+| value | java.lang.String | The descriptive text for the type of drawing, such as flowchart or office layout.
+ |
### getCompany() {#getCompany--}
```
@@ -152,22 +205,28 @@ public final String getCompany()
```
-Gets the user-entered information identifying the company creating the drawing or the company the drawing is being created for. Maximum length is 63 characters.
+Gets the user-entered information identifying the company creating the drawing or the company the drawing is being created for.
+Maximum length is 63 characters.
+
**Returns:**
java.lang.String - The user-entered information identifying the company creating the drawing or the company the drawing is being created for.
+
### setCompany(String value) {#setCompany-java.lang.String-}
```
public final void setCompany(String value)
```
-Sets the user-entered information identifying the company creating the drawing or the company the drawing is being created for. Maximum length is 63 characters.
+Sets the user-entered information identifying the company creating the drawing or the company the drawing is being created for.
+Maximum length is 63 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The user-entered information identifying the company creating the drawing or the company the drawing is being created for. |
+| value | java.lang.String | The user-entered information identifying the company creating the drawing or the company the drawing is being created for.
+ |
### getCreator() {#getCreator--}
```
@@ -175,22 +234,28 @@ public final String getCreator()
```
-Gets the person who created or last updated the file. The maximum length is 63 characters..
+Gets the person who created or last updated the file.
+The maximum length is 63 characters..
+
**Returns:**
java.lang.String - The person who created or last updated the file.
+
### setCreator(String value) {#setCreator-java.lang.String-}
```
public final void setCreator(String value)
```
-Sets the person who created or last updated the file. The maximum length is 63 characters..
+Sets the person who created or last updated the file.
+The maximum length is 63 characters..
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The person who created or last updated the file. |
+| value | java.lang.String | The person who created or last updated the file.
+ |
### getDescription() {#getDescription--}
```
@@ -198,22 +263,30 @@ public final String getDescription()
```
-Gets a descriptive text string for the document. Use this element to store important information about the document, such as its purpose, recent changes, or pending changes. The maximum is 191 characters.
+Gets a descriptive text string for the document.
+Use this element to store important information about the document, such as its purpose, recent changes, or pending changes.
+The maximum is 191 characters.
+
**Returns:**
java.lang.String - A descriptive text string for the document.
+
### setDescription(String value) {#setDescription-java.lang.String-}
```
public final void setDescription(String value)
```
-Sets a descriptive text string for the document. Use this element to store important information about the document, such as its purpose, recent changes, or pending changes. The maximum is 191 characters.
+Sets a descriptive text string for the document.
+Use this element to store important information about the document, such as its purpose, recent changes, or pending changes.
+The maximum is 191 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A descriptive text string for the document. |
+| value | java.lang.String | A descriptive text string for the document.
+ |
### getHyperlinkBase() {#getHyperlinkBase--}
```
@@ -221,22 +294,30 @@ public final String getHyperlinkBase()
```
-Gets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram). By default, a hyperlink path is relative to the current document unless a different path is specified in this element. Maximum length is 256 characters.
+Gets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram).
+By default, a hyperlink path is relative to the current document unless a different path is specified in this element.
+Maximum length is 256 characters.
+
**Returns:**
java.lang.String - The path to be used for relative hyperlinks.
+
### setHyperlinkBase(String value) {#setHyperlinkBase-java.lang.String-}
```
public final void setHyperlinkBase(String value)
```
-Sets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram). By default, a hyperlink path is relative to the current document unless a different path is specified in this element. Maximum length is 256 characters.
+Sets the path to be used for relative hyperlinks (hyperlinks for which the linked file location is described in relation to the Microsoft Visio diagram).
+By default, a hyperlink path is relative to the current document unless a different path is specified in this element.
+Maximum length is 256 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The path to be used for relative hyperlinks. |
+| value | java.lang.String | The path to be used for relative hyperlinks.
+ |
### getKeywords() {#getKeywords--}
```
@@ -244,22 +325,28 @@ public final String getKeywords()
```
-Gets a text string that identifies topics or other important information about the file, such as project name, client name, or version number. The maximum string length is 63 characters.
+Gets a text string that identifies topics or other important information about the file, such as project name, client name, or version number.
+The maximum string length is 63 characters.
+
**Returns:**
java.lang.String - A text string that identifies topics or other important information about the file, such as project name, client name, or version number.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
```
-Sets a text string that identifies topics or other important information about the file, such as project name, client name, or version number. The maximum string length is 63 characters.
+Sets a text string that identifies topics or other important information about the file, such as project name, client name, or version number.
+The maximum string length is 63 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A text string that identifies topics or other important information about the file, such as project name, client name, or version number. |
+| value | java.lang.String | A text string that identifies topics or other important information about the file, such as project name, client name, or version number.
+ |
### getLanguage() {#getLanguage--}
```
@@ -267,22 +354,28 @@ public final String getLanguage()
```
-Gets the language of the document. Can be updated in VSD and VSDX formats only.
+Gets the language of the document.
+Can be updated in VSD and VSDX formats only.
+
**Returns:**
java.lang.String - The language of the document.
+
### setLanguage(String value) {#setLanguage-java.lang.String-}
```
public final void setLanguage(String value)
```
-Sets the language of the document. Can be updated in VSD and VSDX formats only.
+Sets the language of the document.
+Can be updated in VSD and VSDX formats only.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The language of the document. |
+| value | java.lang.String | The language of the document.
+ |
### getManager() {#getManager--}
```
@@ -290,22 +383,28 @@ public final String getManager()
```
-Gets a user-entered text string identifying the person in charge of the project or department. The maximum length is 63 characters.
+Gets a user-entered text string identifying the person in charge of the project or department.
+The maximum length is 63 characters.
+
**Returns:**
java.lang.String - A user-entered text string identifying the person in charge of the project or department.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
```
-Sets a user-entered text string identifying the person in charge of the project or department. The maximum length is 63 characters.
+Sets a user-entered text string identifying the person in charge of the project or department.
+The maximum length is 63 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A user-entered text string identifying the person in charge of the project or department. |
+| value | java.lang.String | A user-entered text string identifying the person in charge of the project or department.
+ |
### getPreviewPicture() {#getPreviewPicture--}
```
@@ -315,8 +414,10 @@ public final byte[] getPreviewPicture()
Gets the preview picture.
+
**Returns:**
byte[] - The preview picture.
+
### setPreviewPicture(byte[] value) {#setPreviewPicture-byte---}
```
public final void setPreviewPicture(byte[] value)
@@ -325,10 +426,12 @@ public final void setPreviewPicture(byte[] value)
Sets the preview picture.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | The preview picture. |
+| value | byte[] | The preview picture.
+ |
### getSubject() {#getSubject--}
```
@@ -336,22 +439,28 @@ public final String getSubject()
```
-Gets a user-defined text string that describes the contents of the document. Maximum length is 63 characters.
+Gets a user-defined text string that describes the contents of the document.
+Maximum length is 63 characters.
+
**Returns:**
java.lang.String - A user-defined text string that describes the contents of the document.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
```
-Sets a user-defined text string that describes the contents of the document. Maximum length is 63 characters.
+Sets a user-defined text string that describes the contents of the document.
+Maximum length is 63 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A user-defined text string that describes the contents of the document. |
+| value | java.lang.String | A user-defined text string that describes the contents of the document.
+ |
### getTemplate() {#getTemplate--}
```
@@ -361,8 +470,10 @@ public final String getTemplate()
Gets a string value specifying the file name of the template from which the document was created.
+
**Returns:**
java.lang.String - A string value specifying the file name of the template from which the document was created.
+
### setTemplate(String value) {#setTemplate-java.lang.String-}
```
public final void setTemplate(String value)
@@ -371,10 +482,12 @@ public final void setTemplate(String value)
Sets a string value specifying the file name of the template from which the document was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A string value specifying the file name of the template from which the document was created. |
+| value | java.lang.String | A string value specifying the file name of the template from which the document was created.
+ |
### getTimeCreated() {#getTimeCreated--}
```
@@ -384,8 +497,10 @@ public final Date getTimeCreated()
Gets a date and time value indicating when the document was created.
+
**Returns:**
java.util.Date - A date and time value indicating when the document was created.
+
### setTimeCreated(Date value) {#setTimeCreated-java.util.Date-}
```
public final void setTimeCreated(Date value)
@@ -394,10 +509,12 @@ public final void setTimeCreated(Date value)
Sets a date and time value indicating when the document was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | A date and time value indicating when the document was created. |
+| value | java.util.Date | A date and time value indicating when the document was created.
+ |
### getTimeEdited() {#getTimeEdited--}
```
@@ -407,8 +524,10 @@ public final Date getTimeEdited()
Gets a date and time value indicating when the document was last edited.
+
**Returns:**
java.util.Date - A date and time value indicating when the document was last edited.
+
### getTimePrinted() {#getTimePrinted--}
```
public final Date getTimePrinted()
@@ -417,8 +536,10 @@ public final Date getTimePrinted()
Gets a date and time value indicating when the document was last printed.
+
**Returns:**
java.util.Date - A date and time value indicating when the document was last printed.
+
### getTimeSaved() {#getTimeSaved--}
```
public final Date getTimeSaved()
@@ -427,30 +548,38 @@ public final Date getTimeSaved()
Gets a date and time value indicating when the document was last saved.
+
**Returns:**
java.util.Date - A date and time value indicating when the document was last saved.
+
### getTitle() {#getTitle--}
```
public final String getTitle()
```
-Gets a user-defined text string that serves as a descriptive title for the document. Maximum length is 63 characters.
+Gets a user-defined text string that serves as a descriptive title for the document.
+Maximum length is 63 characters.
+
**Returns:**
java.lang.String - A user-defined text string that serves as a descriptive title for the document.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
```
-Sets a user-defined text string that serves as a descriptive title for the document. Maximum length is 63 characters.
+Sets a user-defined text string that serves as a descriptive title for the document.
+Maximum length is 63 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A user-defined text string that serves as a descriptive title for the document. |
+| value | java.lang.String | A user-defined text string that serves as a descriptive title for the document.
+ |
### set(String propertyName, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -460,11 +589,14 @@ public final void set(String propertyName, String value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.lang.String | The property value.
+ |
### set(String propertyName, boolean value) {#set-java.lang.String-boolean-}
```
@@ -474,11 +606,14 @@ public final void set(String propertyName, boolean value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | boolean | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | boolean | The property value.
+ |
### set(String propertyName, double value) {#set-java.lang.String-double-}
```
@@ -488,11 +623,14 @@ public final void set(String propertyName, double value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | double | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | double | The property value.
+ |
### set(String propertyName, Date value) {#set-java.lang.String-java.util.Date-}
```
@@ -502,9 +640,12 @@ public final void set(String propertyName, Date value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.util.Date | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.util.Date | The property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/diagramrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/diagramrootpackage/_index.md
index ec2f3ec8fc..3592d99f10 100644
--- a/english/java/com.groupdocs.metadata.core/diagramrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/diagramrootpackage/_index.md
@@ -14,15 +14,18 @@ public class DiagramRootPackage extends DocumentRootPackage
Represents the root package intended to work with metadata in a diagram.
+
**Learn more**
- * [Working with metadata in Diagrams][]
+* [Working with metadata in Diagrams](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Diagrams)
-This code sample demonstrates how to extract built-in metadata properties from a diagram.
+
+This code sample demonstrates how to extract built-in metadata properties from a diagram.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputVsdx)) {
> DiagramRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getDocumentProperties().getCreator());
@@ -35,16 +38,17 @@ This code sample demonstrates how to extract built-in metadata properties from a
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Diagrams]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Diagrams
## Methods
| Method | Description |
| --- | --- |
-| [getDiagramType()](#getDiagramType--) | Gets the file type metadata package. |
-| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package. |
+| [getDiagramType()](#getDiagramType--) | Gets the file type metadata package.
+ |
+| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package.
+ |
### getDiagramType() {#getDiagramType--}
```
public final DiagramTypePackage getDiagramType()
@@ -53,8 +57,10 @@ public final DiagramTypePackage getDiagramType()
Gets the file type metadata package.
+
**Returns:**
[DiagramTypePackage](../../com.groupdocs.metadata.core/diagramtypepackage) - The file type metadata package.
+
### getDocumentStatistics() {#getDocumentStatistics--}
```
public final DocumentStatistics getDocumentStatistics()
@@ -63,5 +69,7 @@ public final DocumentStatistics getDocumentStatistics()
Gets the document statistics package.
+
**Returns:**
[DocumentStatistics](../../com.groupdocs.metadata.core/documentstatistics) - The document statistics package.
+
diff --git a/english/java/com.groupdocs.metadata.core/diagramtypepackage/_index.md b/english/java/com.groupdocs.metadata.core/diagramtypepackage/_index.md
index 39918ccbdf..1b02cc59a8 100644
--- a/english/java/com.groupdocs.metadata.core/diagramtypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/diagramtypepackage/_index.md
@@ -13,11 +13,13 @@ public class DiagramTypePackage extends FileTypePackage
```
Represents a metadata package containing diagram-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getDiagramFormat()](#getDiagramFormat--) | Gets the exact diagram format. |
+| [getDiagramFormat()](#getDiagramFormat--) | Gets the exact diagram format.
+ |
### getDiagramFormat() {#getDiagramFormat--}
```
public final DiagramFormat getDiagramFormat()
@@ -26,5 +28,7 @@ public final DiagramFormat getDiagramFormat()
Gets the exact diagram format.
+
**Returns:**
[DiagramFormat](../../com.groupdocs.metadata.core/diagramformat) - The exact diagram format.
+
diff --git a/english/java/com.groupdocs.metadata.core/dicompackage/_index.md b/english/java/com.groupdocs.metadata.core/dicompackage/_index.md
index 20edeb3736..7b1a9aae8b 100644
--- a/english/java/com.groupdocs.metadata.core/dicompackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dicompackage/_index.md
@@ -14,36 +14,52 @@ public final class DicomPackage extends CustomPackage
Represents native DICOM metadata.
+
**Learn more**
- * [Working with DICOM metadata][]
+* [Working with DICOM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+DICOM+metadata)
+
+
-[Working with DICOM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+DICOM+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [DicomPackage()](#DicomPackage--) | Initializes a new instance of the Metadata class. |
+| [DicomPackage()](#DicomPackage--) | Initializes a new instance of the
+Metadata
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getHeaderOffset()](#getHeaderOffset--) | Gets the header offset. |
-| [getHeaderBytes()](#getHeaderBytes--) | Gets the header information by bytes. |
-| [getBitsAllocated()](#getBitsAllocated--) | Gets the bits allocated value. |
-| [getDicomInfo()](#getDicomInfo--) | Gets the header information of the DICOM file. |
-| [getBlues()](#getBlues--) | Gets the array colors of the blue. |
-| [getGreens()](#getGreens--) | Gets the array colors of the green. |
-| [getReds()](#getReds--) | Gets the array colors of the red. |
-| [getNumberOfFrames()](#getNumberOfFrames--) | Gets the number of frames. |
+| [getHeaderOffset()](#getHeaderOffset--) | Gets the header offset.
+ |
+| [getHeaderBytes()](#getHeaderBytes--) | Gets the header information by bytes.
+ |
+| [getBitsAllocated()](#getBitsAllocated--) | Gets the bits allocated value.
+ |
+| [getDicomInfo()](#getDicomInfo--) | Gets the header information of the DICOM file.
+ |
+| [getBlues()](#getBlues--) | Gets the array colors of the blue.
+ |
+| [getGreens()](#getGreens--) | Gets the array colors of the green.
+ |
+| [getReds()](#getReds--) | Gets the array colors of the red.
+ |
+| [getNumberOfFrames()](#getNumberOfFrames--) | Gets the number of frames.
+ |
### DicomPackage() {#DicomPackage--}
```
public DicomPackage()
```
-Initializes a new instance of the Metadata class.
+Initializes a new instance of the
+Metadata
+ class.
+
### getHeaderOffset() {#getHeaderOffset--}
```
@@ -52,9 +68,9 @@ public final int getHeaderOffset()
Gets the header offset.
-
Value: The header offset.
+
**Returns:**
int
### getHeaderBytes() {#getHeaderBytes--}
@@ -64,9 +80,9 @@ public final Byte[] getHeaderBytes()
Gets the header information by bytes.
-
Value: The header bytes.
+
**Returns:**
java.lang.Byte[]
### getBitsAllocated() {#getBitsAllocated--}
@@ -77,8 +93,10 @@ public final int getBitsAllocated()
Gets the bits allocated value.
+
**Returns:**
int - The bits allocated.
+
### getDicomInfo() {#getDicomInfo--}
```
public final String[] getDicomInfo()
@@ -87,8 +105,10 @@ public final String[] getDicomInfo()
Gets the header information of the DICOM file.
+
**Returns:**
java.lang.String[] - The dicom header information.
+
### getBlues() {#getBlues--}
```
public final byte[] getBlues()
@@ -97,8 +117,10 @@ public final byte[] getBlues()
Gets the array colors of the blue.
+
**Returns:**
byte[] - The blue colors.
+
### getGreens() {#getGreens--}
```
public final byte[] getGreens()
@@ -107,8 +129,10 @@ public final byte[] getGreens()
Gets the array colors of the green.
+
**Returns:**
byte[] - The green colors.
+
### getReds() {#getReds--}
```
public final byte[] getReds()
@@ -117,8 +141,10 @@ public final byte[] getReds()
Gets the array colors of the red.
+
**Returns:**
byte[] - The red colors.
+
### getNumberOfFrames() {#getNumberOfFrames--}
```
public final int getNumberOfFrames()
@@ -127,5 +153,7 @@ public final int getNumberOfFrames()
Gets the number of frames.
+
**Returns:**
int - The number of frames.
+
diff --git a/english/java/com.groupdocs.metadata.core/dicomrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/dicomrootpackage/_index.md
index 5a69ace2f4..beb9d371f5 100644
--- a/english/java/com.groupdocs.metadata.core/dicomrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dicomrootpackage/_index.md
@@ -14,15 +14,18 @@ public class DicomRootPackage extends ImageRootPackage
Represents the root package intended to work with metadata in a DICOM image.
+
**Learn more**
- * [Working with DICOM metadata][]
+* [Working with DICOM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+DICOM+metadata)
-This example demonstrates how to read DICOM format-specific metadata properties.
+
+This example demonstrates how to read DICOM format-specific metadata properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputDicom)) {
> DicomRootPackage root = metadata.getRootPackageGeneric();
> if (root.getDicomPackage() != null) {
@@ -36,15 +39,15 @@ This example demonstrates how to read DICOM format-specific metadata properties.
> }
>
> ```
-> ```
+> ````
-[Working with DICOM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+DICOM+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getDicomPackage()](#getDicomPackage--) | Gets the DICOM native metadata package. |
+| [getDicomPackage()](#getDicomPackage--) | Gets the DICOM native metadata package.
+ |
### getDicomPackage() {#getDicomPackage--}
```
public final DicomPackage getDicomPackage()
@@ -53,5 +56,7 @@ public final DicomPackage getDicomPackage()
Gets the DICOM native metadata package.
+
**Returns:**
[DicomPackage](../../com.groupdocs.metadata.core/dicompackage) - The DICOM native metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/digitalsignature/_index.md b/english/java/com.groupdocs.metadata.core/digitalsignature/_index.md
index f34c75202d..d32b2c691e 100644
--- a/english/java/com.groupdocs.metadata.core/digitalsignature/_index.md
+++ b/english/java/com.groupdocs.metadata.core/digitalsignature/_index.md
@@ -13,15 +13,21 @@ public class DigitalSignature extends CustomPackage
```
Represents a digital signature used to sign a document.
+
## Methods
| Method | Description |
| --- | --- |
-| [getComments()](#getComments--) | Gets the signing purpose comment. |
-| [isValid()](#isValid--) | Gets a value indicating whether the signature is valid. |
-| [getSignTime()](#getSignTime--) | Gets the time the document was signed. |
-| [getCertificateSubject()](#getCertificateSubject--) | Gets the subject distinguished name from a certificate. |
-| [getCertificateRawData()](#getCertificateRawData--) | Gets the certificate raw data. |
+| [getComments()](#getComments--) | Gets the signing purpose comment.
+ |
+| [isValid()](#isValid--) | Gets a value indicating whether the signature is valid.
+ |
+| [getSignTime()](#getSignTime--) | Gets the time the document was signed.
+ |
+| [getCertificateSubject()](#getCertificateSubject--) | Gets the subject distinguished name from a certificate.
+ |
+| [getCertificateRawData()](#getCertificateRawData--) | Gets the certificate raw data.
+ |
### getComments() {#getComments--}
```
public final String getComments()
@@ -30,8 +36,10 @@ public final String getComments()
Gets the signing purpose comment.
+
**Returns:**
java.lang.String - The signing purpose comment.
+
### isValid() {#isValid--}
```
public Boolean isValid()
@@ -40,8 +48,10 @@ public Boolean isValid()
Gets a value indicating whether the signature is valid.
+
**Returns:**
java.lang.Boolean - True if the the signature is valid; otherwise, false. Null indicates that validation is unavailable for the signature.
+
### getSignTime() {#getSignTime--}
```
public Date getSignTime()
@@ -50,8 +60,10 @@ public Date getSignTime()
Gets the time the document was signed.
+
**Returns:**
java.util.Date - The time the document was signed.
+
### getCertificateSubject() {#getCertificateSubject--}
```
public final String getCertificateSubject()
@@ -60,8 +72,10 @@ public final String getCertificateSubject()
Gets the subject distinguished name from a certificate.
+
**Returns:**
java.lang.String - The subject distinguished name from a certificate.
+
### getCertificateRawData() {#getCertificateRawData--}
```
public final byte[] getCertificateRawData()
@@ -70,5 +84,7 @@ public final byte[] getCertificateRawData()
Gets the certificate raw data.
+
**Returns:**
byte[] - The certificate raw data.
+
diff --git a/english/java/com.groupdocs.metadata.core/djvurootpackage/_index.md b/english/java/com.groupdocs.metadata.core/djvurootpackage/_index.md
index 66f0ae0da5..de1eacc106 100644
--- a/english/java/com.groupdocs.metadata.core/djvurootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/djvurootpackage/_index.md
@@ -13,3 +13,4 @@ public class DjVuRootPackage extends ImageRootPackage
```
Represents the root package intended to work with metadata in an DjVu image.
+
diff --git a/english/java/com.groupdocs.metadata.core/dngpackage/_index.md b/english/java/com.groupdocs.metadata.core/dngpackage/_index.md
index c136a937b0..79babf752a 100644
--- a/english/java/com.groupdocs.metadata.core/dngpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dngpackage/_index.md
@@ -14,46 +14,72 @@ public final class DngPackage extends CustomPackage
Represents native DNG metadata.
+
**Learn more**
- * [Working with DNG metadata][]
+* [Working with DNG metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+DNG+metadata)
+
+
-[Working with DNG metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+DNG+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [DngPackage()](#DngPackage--) | Initializes a new instance of the Metadata class. |
+| [DngPackage()](#DngPackage--) | Initializes a new instance of the
+Metadata
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCameraManufacturer()](#getCameraManufacturer--) | Gets the camera manufacturer. |
-| [getColorsCount()](#getColorsCount--) | Gets the colors. |
-| [getDescription()](#getDescription--) | Gets the description of colors (RGBG,RGBE,GMCY, or GBTG). |
-| [getDngVersion()](#getDngVersion--) | Gets the DNG version. |
-| [getFilters()](#getFilters--) | Gets the Bit mask describing the order of color pixels in the matrix. |
-| [isFoveon()](#isFoveon--) | Gets the is foveon matrix. |
-| [getModel()](#getModel--) | Gets the camera model. |
-| [getRawCount()](#getRawCount--) | Gets the number of RAW images in file (0 means that the file has not been recognized). |
-| [getSoftware()](#getSoftware--) | Gets the software. |
-| [getTranslationCfaDng()](#getTranslationCfaDng--) | Gets the translation array for CFA mosaic DNG format. |
-| [getAperture()](#getAperture--) | Gets the aperture. |
-| [getArtist()](#getArtist--) | Gets the author of image. |
-| [getFocalLength()](#getFocalLength--) | Gets the length of the focal. |
-| [getGpsData()](#getGpsData--) | Gets the GPS data. |
-| [getIsoSpeed()](#getIsoSpeed--) | Gets the ISO sensitivity. |
-| [getShotOrder()](#getShotOrder--) | Gets serial number of image. |
-| [getShutterSpeed()](#getShutterSpeed--) | Gets the shutter speed. |
-| [getTimestamp()](#getTimestamp--) | Gets the date of shooting. |
+| [getCameraManufacturer()](#getCameraManufacturer--) | Gets the camera manufacturer.
+ |
+| [getColorsCount()](#getColorsCount--) | Gets the colors.
+ |
+| [getDescription()](#getDescription--) | Gets the description of colors (RGBG,RGBE,GMCY, or GBTG).
+ |
+| [getDngVersion()](#getDngVersion--) | Gets the DNG version.
+ |
+| [getFilters()](#getFilters--) | Gets the Bit mask describing the order of color pixels in the matrix.
+ |
+| [isFoveon()](#isFoveon--) | Gets the is foveon matrix.
+ |
+| [getModel()](#getModel--) | Gets the camera model.
+ |
+| [getRawCount()](#getRawCount--) | Gets the number of RAW images in file (0 means that the file has not been recognized).
+ |
+| [getSoftware()](#getSoftware--) | Gets the software.
+ |
+| [getTranslationCfaDng()](#getTranslationCfaDng--) | Gets the translation array for CFA mosaic DNG format.
+ |
+| [getAperture()](#getAperture--) | Gets the aperture.
+ |
+| [getArtist()](#getArtist--) | Gets the author of image.
+ |
+| [getFocalLength()](#getFocalLength--) | Gets the length of the focal.
+ |
+| [getGpsData()](#getGpsData--) | Gets the GPS data.
+ |
+| [getIsoSpeed()](#getIsoSpeed--) | Gets the ISO sensitivity.
+ |
+| [getShotOrder()](#getShotOrder--) | Gets serial number of image.
+ |
+| [getShutterSpeed()](#getShutterSpeed--) | Gets the shutter speed.
+ |
+| [getTimestamp()](#getTimestamp--) | Gets the date of shooting.
+ |
### DngPackage() {#DngPackage--}
```
public DngPackage()
```
-Initializes a new instance of the Metadata class.
+Initializes a new instance of the
+Metadata
+ class.
+
### getCameraManufacturer() {#getCameraManufacturer--}
```
@@ -63,8 +89,10 @@ public final String getCameraManufacturer()
Gets the camera manufacturer.
+
**Returns:**
java.lang.String - The make.
+
### getColorsCount() {#getColorsCount--}
```
public final int getColorsCount()
@@ -73,8 +101,10 @@ public final int getColorsCount()
Gets the colors.
+
**Returns:**
int - The colors.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -83,8 +113,10 @@ public final String getDescription()
Gets the description of colors (RGBG,RGBE,GMCY, or GBTG).
+
**Returns:**
java.lang.String - The cdesc.
+
### getDngVersion() {#getDngVersion--}
```
public final long getDngVersion()
@@ -93,8 +125,10 @@ public final long getDngVersion()
Gets the DNG version.
+
**Returns:**
long - The DNG version.
+
### getFilters() {#getFilters--}
```
public final long getFilters()
@@ -103,8 +137,10 @@ public final long getFilters()
Gets the Bit mask describing the order of color pixels in the matrix.
+
**Returns:**
long - The filters.
+
### isFoveon() {#isFoveon--}
```
public final long isFoveon()
@@ -113,8 +149,10 @@ public final long isFoveon()
Gets the is foveon matrix.
+
**Returns:**
long - The is foveon.
+
### getModel() {#getModel--}
```
public final String getModel()
@@ -123,8 +161,10 @@ public final String getModel()
Gets the camera model.
+
**Returns:**
java.lang.String - The model.
+
### getRawCount() {#getRawCount--}
```
public final long getRawCount()
@@ -133,8 +173,10 @@ public final long getRawCount()
Gets the number of RAW images in file (0 means that the file has not been recognized).
+
**Returns:**
long - The raw count.
+
### getSoftware() {#getSoftware--}
```
public final String getSoftware()
@@ -143,8 +185,10 @@ public final String getSoftware()
Gets the software.
+
**Returns:**
java.lang.String - The software.
+
### getTranslationCfaDng() {#getTranslationCfaDng--}
```
public final String[] getTranslationCfaDng()
@@ -153,8 +197,10 @@ public final String[] getTranslationCfaDng()
Gets the translation array for CFA mosaic DNG format.
+
**Returns:**
java.lang.String[] - The xtrans.
+
### getAperture() {#getAperture--}
```
public final float getAperture()
@@ -163,8 +209,10 @@ public final float getAperture()
Gets the aperture.
+
**Returns:**
float - The aperture.
+
### getArtist() {#getArtist--}
```
public final String getArtist()
@@ -173,8 +221,10 @@ public final String getArtist()
Gets the author of image.
+
**Returns:**
java.lang.String - The artist.
+
### getFocalLength() {#getFocalLength--}
```
public final float getFocalLength()
@@ -183,8 +233,10 @@ public final float getFocalLength()
Gets the length of the focal.
+
**Returns:**
float - The length of the focal.
+
### getGpsData() {#getGpsData--}
```
public final long[] getGpsData()
@@ -193,8 +245,10 @@ public final long[] getGpsData()
Gets the GPS data.
+
**Returns:**
long[] - The GPS data.
+
### getIsoSpeed() {#getIsoSpeed--}
```
public final float getIsoSpeed()
@@ -203,8 +257,10 @@ public final float getIsoSpeed()
Gets the ISO sensitivity.
+
**Returns:**
float - The ISO speed.
+
### getShotOrder() {#getShotOrder--}
```
public final long getShotOrder()
@@ -213,8 +269,10 @@ public final long getShotOrder()
Gets serial number of image.
+
**Returns:**
long - The shot order.
+
### getShutterSpeed() {#getShutterSpeed--}
```
public final float getShutterSpeed()
@@ -223,8 +281,10 @@ public final float getShutterSpeed()
Gets the shutter speed.
+
**Returns:**
float - The shutter.
+
### getTimestamp() {#getTimestamp--}
```
public final long getTimestamp()
@@ -233,5 +293,7 @@ public final long getTimestamp()
Gets the date of shooting.
+
**Returns:**
long - The timestamp.
+
diff --git a/english/java/com.groupdocs.metadata.core/dngrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/dngrootpackage/_index.md
index dba52e78d1..f4012a07e3 100644
--- a/english/java/com.groupdocs.metadata.core/dngrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dngrootpackage/_index.md
@@ -14,17 +14,20 @@ public class DngRootPackage extends ImageRootPackage
Represents the root package intended to work with metadata in a DNG image.
+
**Learn more**
- * [Working with metadata in DNG images][]
+* [Working with metadata in DNG images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+DNG+images)
+
+
-[Working with metadata in DNG images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+DNG+images
## Methods
| Method | Description |
| --- | --- |
-| [getDngPackage()](#getDngPackage--) | Gets the DNG header metadata package. |
+| [getDngPackage()](#getDngPackage--) | Gets the DNG header metadata package.
+ |
### getDngPackage() {#getDngPackage--}
```
public final DngPackage getDngPackage()
@@ -33,5 +36,7 @@ public final DngPackage getDngPackage()
Gets the DNG header metadata package.
+
**Returns:**
[DngPackage](../../com.groupdocs.metadata.core/dngpackage) - The DNG header metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/documentinfo/_index.md b/english/java/com.groupdocs.metadata.core/documentinfo/_index.md
index d5fee2dd22..665fad375d 100644
--- a/english/java/com.groupdocs.metadata.core/documentinfo/_index.md
+++ b/english/java/com.groupdocs.metadata.core/documentinfo/_index.md
@@ -17,21 +17,28 @@ public class DocumentInfo implements IDocumentInfo
Provides common information about a loaded document.
+
**Learn more**
- * [Get document info][]
+* [Get document info](../https://docs.groupdocs.com/display/metadatajava/Get+document+info)
+
+
-[Get document info]: https://docs.groupdocs.com/display/metadatajava/Get+document+info
## Methods
| Method | Description |
| --- | --- |
-| [getFileType()](#getFileType--) | Gets the file type of the loaded document. |
-| [getSize()](#getSize--) | Gets the size of the loaded document in bytes. |
-| [getPageCount()](#getPageCount--) | Gets the number of pages (slides, worksheets, etc) in the loaded document. |
-| [getPages()](#getPages--) | Gets a collection of objects representing common information about the document pages (slides, worksheets, etc). |
-| [isEncrypted()](#isEncrypted--) | Gets a value indicating whether the document is encrypted and requires a password to open. |
+| [getFileType()](#getFileType--) | Gets the file type of the loaded document.
+ |
+| [getSize()](#getSize--) | Gets the size of the loaded document in bytes.
+ |
+| [getPageCount()](#getPageCount--) | Gets the number of pages (slides, worksheets, etc) in the loaded document.
+ |
+| [getPages()](#getPages--) | Gets a collection of objects representing common information about the document pages (slides, worksheets, etc).
+ |
+| [isEncrypted()](#isEncrypted--) | Gets a value indicating whether the document is encrypted and requires a password to open.
+ |
### getFileType() {#getFileType--}
```
public final FileTypePackage getFileType()
@@ -40,8 +47,10 @@ public final FileTypePackage getFileType()
Gets the file type of the loaded document.
+
**Returns:**
[FileTypePackage](../../com.groupdocs.metadata.core/filetypepackage) - The file type of the loaded document.
+
### getSize() {#getSize--}
```
public final long getSize()
@@ -50,8 +59,10 @@ public final long getSize()
Gets the size of the loaded document in bytes.
+
**Returns:**
long - The size of the loaded document in bytes.
+
### getPageCount() {#getPageCount--}
```
public final int getPageCount()
@@ -60,8 +71,10 @@ public final int getPageCount()
Gets the number of pages (slides, worksheets, etc) in the loaded document.
+
**Returns:**
int - The number of pages (slides, worksheets, etc) in the loaded document.
+
### getPages() {#getPages--}
```
public final IReadOnlyList getPages()
@@ -70,8 +83,10 @@ public final IReadOnlyList getPages()
Gets a collection of objects representing common information about the document pages (slides, worksheets, etc).
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection of objects representing common information about the document pages (slides, worksheets, etc).
+
### isEncrypted() {#isEncrypted--}
```
public final boolean isEncrypted()
@@ -80,5 +95,7 @@ public final boolean isEncrypted()
Gets a value indicating whether the document is encrypted and requires a password to open.
+
**Returns:**
boolean - A value indicating whether the document is encrypted and requires a password to open.
+
diff --git a/english/java/com.groupdocs.metadata.core/documentpackage/_index.md b/english/java/com.groupdocs.metadata.core/documentpackage/_index.md
index 9ef0648bd8..88df5fc7f1 100644
--- a/english/java/com.groupdocs.metadata.core/documentpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/documentpackage/_index.md
@@ -13,14 +13,19 @@ public abstract class DocumentPackage extends CustomPackage
```
Represents native metadata in an office document.
+
## Methods
| Method | Description |
| --- | --- |
-| [remove(String propertyName)](#remove-java.lang.String-) | Removes a writable metadata property by the specified name. |
-| [clear()](#clear--) | Removes all writable metadata properties from the package. |
-| [clearBuiltInProperties()](#clearBuiltInProperties--) | Removes all built-in metadata properties. |
-| [clearCustomProperties()](#clearCustomProperties--) | Removes all custom metadata properties. |
+| [remove(String propertyName)](#remove-java.lang.String-) | Removes a writable metadata property by the specified name.
+ |
+| [clear()](#clear--) | Removes all writable metadata properties from the package.
+ |
+| [clearBuiltInProperties()](#clearBuiltInProperties--) | Removes all built-in metadata properties.
+ |
+| [clearCustomProperties()](#clearCustomProperties--) | Removes all custom metadata properties.
+ |
### remove(String propertyName) {#remove-java.lang.String-}
```
public final boolean remove(String propertyName)
@@ -29,13 +34,16 @@ public final boolean remove(String propertyName)
Removes a writable metadata property by the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | A metadata property name. |
+| propertyName | java.lang.String | A metadata property name.
+ |
**Returns:**
boolean - true if the property is found and deleted; otherwise false .
+
### clear() {#clear--}
```
public final void clear()
@@ -44,6 +52,7 @@ public final void clear()
Removes all writable metadata properties from the package.
+
### clearBuiltInProperties() {#clearBuiltInProperties--}
```
public final void clearBuiltInProperties()
@@ -52,6 +61,7 @@ public final void clearBuiltInProperties()
Removes all built-in metadata properties.
+
### clearCustomProperties() {#clearCustomProperties--}
```
public final void clearCustomProperties()
@@ -60,3 +70,4 @@ public final void clearCustomProperties()
Removes all custom metadata properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/documentprotectedexception/_index.md b/english/java/com.groupdocs.metadata.core/documentprotectedexception/_index.md
index 7a79147711..c1b93a3beb 100644
--- a/english/java/com.groupdocs.metadata.core/documentprotectedexception/_index.md
+++ b/english/java/com.groupdocs.metadata.core/documentprotectedexception/_index.md
@@ -13,16 +13,23 @@ public final class DocumentProtectedException extends GroupDocsMetadataException
```
The exception that is thrown when document is protected by password.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [DocumentProtectedException()](#DocumentProtectedException--) | Initializes a new instance of the DocumentProtectedException class. |
+| [DocumentProtectedException()](#DocumentProtectedException--) | Initializes a new instance of the
+DocumentProtectedException
+ class.
+ |
### DocumentProtectedException() {#DocumentProtectedException--}
```
public DocumentProtectedException()
```
-Initializes a new instance of the DocumentProtectedException class.
+Initializes a new instance of the
+DocumentProtectedException
+ class.
+
diff --git a/english/java/com.groupdocs.metadata.core/documentrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/documentrootpackage/_index.md
index 569ad212ca..04f95da4d1 100644
--- a/english/java/com.groupdocs.metadata.core/documentrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/documentrootpackage/_index.md
@@ -14,12 +14,16 @@ public abstract class DocumentRootPackage extends RootMetadataPackage
Represents a root package for document formats such as PDF, WordProcessing, Spreadsheet, Presentation, etc.
- TPackage : The type of the native metadata package.
+
+TPackage
+: The type of the native metadata package.
+
## Methods
| Method | Description |
| --- | --- |
-| [getDocumentProperties()](#getDocumentProperties--) | Gets the native metadata properties presented in the document. |
+| [getDocumentProperties()](#getDocumentProperties--) | Gets the native metadata properties presented in the document.
+ |
### getDocumentProperties() {#getDocumentProperties--}
```
public TPackage getDocumentProperties()
@@ -28,5 +32,7 @@ public TPackage getDocumentProperties()
Gets the native metadata properties presented in the document.
+
**Returns:**
TPackage - The document properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/documentstatistics/_index.md b/english/java/com.groupdocs.metadata.core/documentstatistics/_index.md
index a84508aec9..23713ac582 100644
--- a/english/java/com.groupdocs.metadata.core/documentstatistics/_index.md
+++ b/english/java/com.groupdocs.metadata.core/documentstatistics/_index.md
@@ -13,25 +13,35 @@ public class DocumentStatistics extends CustomPackage
```
Represents a set of document statistics.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [DocumentStatistics()](#DocumentStatistics--) | Initializes a new instance of the DocumentStatistics class. |
+| [DocumentStatistics()](#DocumentStatistics--) | Initializes a new instance of the
+DocumentStatistics
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCharacterCount()](#getCharacterCount--) | Gets an estimated number of characters in the document. |
-| [getWordCount()](#getWordCount--) | Gets an estimated number of words in the document. |
-| [getPageCount()](#getPageCount--) | Gets an estimated number of pages in the document. |
+| [getCharacterCount()](#getCharacterCount--) | Gets an estimated number of characters in the document.
+ |
+| [getWordCount()](#getWordCount--) | Gets an estimated number of words in the document.
+ |
+| [getPageCount()](#getPageCount--) | Gets an estimated number of pages in the document.
+ |
### DocumentStatistics() {#DocumentStatistics--}
```
public DocumentStatistics()
```
-Initializes a new instance of the DocumentStatistics class.
+Initializes a new instance of the
+DocumentStatistics
+ class.
+
### getCharacterCount() {#getCharacterCount--}
```
@@ -41,8 +51,10 @@ public final int getCharacterCount()
Gets an estimated number of characters in the document.
+
**Returns:**
int - An estimated number of characters in the document.
+
### getWordCount() {#getWordCount--}
```
public final int getWordCount()
@@ -51,8 +63,10 @@ public final int getWordCount()
Gets an estimated number of words in the document.
+
**Returns:**
int - An estimated number of words in the document.
+
### getPageCount() {#getPageCount--}
```
public final int getPageCount()
@@ -61,5 +75,7 @@ public final int getPageCount()
Gets an estimated number of pages in the document.
+
**Returns:**
int - An estimated number of pages in the document.
+
diff --git a/english/java/com.groupdocs.metadata.core/dublincorepackage/_index.md b/english/java/com.groupdocs.metadata.core/dublincorepackage/_index.md
index 2563c4550f..996411fa0d 100644
--- a/english/java/com.groupdocs.metadata.core/dublincorepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dublincorepackage/_index.md
@@ -13,25 +13,41 @@ public final class DublinCorePackage extends CustomPackage
```
Represents a Dublin Core metadata package.
+
## Methods
| Method | Description |
| --- | --- |
-| [getContributor()](#getContributor--) | Gets the contributor Dublin Core element. |
-| [getCoverage()](#getCoverage--) | Gets the coverage Dublin Core element. |
-| [getCreator()](#getCreator--) | Gets the creator Dublin Core element. |
-| [getDate()](#getDate--) | Gets the date Dublin Core element. |
-| [getDescription()](#getDescription--) | Gets the description Dublin Core element. |
-| [getFormat()](#getFormat--) | Gets the format Dublin Core element. |
-| [getLanguage()](#getLanguage--) | Gets the language Dublin Core element. |
-| [getPublisher()](#getPublisher--) | Gets the publisher Dublin Core element. |
-| [getRelation()](#getRelation--) | Gets the relation Dublin Core element. |
-| [getSource()](#getSource--) | Gets the source Dublin Core element. |
-| [getSubject()](#getSubject--) | Gets the subject Dublin Core element. |
-| [getTitle()](#getTitle--) | Gets the title Dublin Core element. |
-| [getType()](#getType--) | Gets the type Dublin Core element. |
-| [getRights()](#getRights--) | Gets the rights Dublin Core element. |
-| [getIdentifier()](#getIdentifier--) | Gets the identifier Dublin Core element. |
+| [getContributor()](#getContributor--) | Gets the contributor Dublin Core element.
+ |
+| [getCoverage()](#getCoverage--) | Gets the coverage Dublin Core element.
+ |
+| [getCreator()](#getCreator--) | Gets the creator Dublin Core element.
+ |
+| [getDate()](#getDate--) | Gets the date Dublin Core element.
+ |
+| [getDescription()](#getDescription--) | Gets the description Dublin Core element.
+ |
+| [getFormat()](#getFormat--) | Gets the format Dublin Core element.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language Dublin Core element.
+ |
+| [getPublisher()](#getPublisher--) | Gets the publisher Dublin Core element.
+ |
+| [getRelation()](#getRelation--) | Gets the relation Dublin Core element.
+ |
+| [getSource()](#getSource--) | Gets the source Dublin Core element.
+ |
+| [getSubject()](#getSubject--) | Gets the subject Dublin Core element.
+ |
+| [getTitle()](#getTitle--) | Gets the title Dublin Core element.
+ |
+| [getType()](#getType--) | Gets the type Dublin Core element.
+ |
+| [getRights()](#getRights--) | Gets the rights Dublin Core element.
+ |
+| [getIdentifier()](#getIdentifier--) | Gets the identifier Dublin Core element.
+ |
### getContributor() {#getContributor--}
```
public final String getContributor()
@@ -40,8 +56,10 @@ public final String getContributor()
Gets the contributor Dublin Core element.
+
**Returns:**
java.lang.String - An entity responsible for making contributions to the content of the resource. Examples of a Contributor include a person, an organization or a service.
+
### getCoverage() {#getCoverage--}
```
public final String getCoverage()
@@ -50,8 +68,10 @@ public final String getCoverage()
Gets the coverage Dublin Core element.
+
**Returns:**
java.lang.String - The extent or scope of the content of the resource. Coverage will typically include spatial location (a place name or geographic co-ordinates), temporal period (a period label, date, or date range) or jurisdiction (such as a named administrative entity).
+
### getCreator() {#getCreator--}
```
public final String getCreator()
@@ -60,8 +80,10 @@ public final String getCreator()
Gets the creator Dublin Core element.
+
**Returns:**
java.lang.String - An entity primarily responsible for making the content of the resource. Examples of a Creator include a person, an organization, or a service.
+
### getDate() {#getDate--}
```
public final String getDate()
@@ -70,8 +92,10 @@ public final String getDate()
Gets the date Dublin Core element.
+
**Returns:**
java.lang.String - A date associated with an event in the life cycle of the resource. Typically, Date will be associated with the creation or availability of the resource. Recommended best practice for encoding the date value is defined in a profile of ISO 8601 and follows the YYYY-MM-DD format.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -80,8 +104,10 @@ public final String getDescription()
Gets the description Dublin Core element.
+
**Returns:**
java.lang.String - An account of the content of the resource. Description may include but is not limited to: an abstract, table of contents, reference to a graphical representation of content or a free-text account of the content.
+
### getFormat() {#getFormat--}
```
public final String getFormat()
@@ -90,8 +116,10 @@ public final String getFormat()
Gets the format Dublin Core element.
+
**Returns:**
java.lang.String - The physical or digital manifestation of the resource. Typically, Format may include the media-type or dimensions of the resource. Examples of dimensions include size and duration. Format may be used to determine the software, hardware or other equipment needed to display or operate the resource.
+
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -100,8 +128,10 @@ public final String getLanguage()
Gets the language Dublin Core element.
+
**Returns:**
java.lang.String - A language of the intellectual content of the resource. Recommended best practice for the values of the Language element is defined by RFC 3066 which, in conjunction with ISO 639), defines two- and three-letter primary language tags with optional subtags.
+
### getPublisher() {#getPublisher--}
```
public final String getPublisher()
@@ -110,8 +140,10 @@ public final String getPublisher()
Gets the publisher Dublin Core element.
+
**Returns:**
java.lang.String - The entity responsible for making the resource available. Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.
+
### getRelation() {#getRelation--}
```
public final String getRelation()
@@ -120,8 +152,10 @@ public final String getRelation()
Gets the relation Dublin Core element.
+
**Returns:**
java.lang.String - A reference to a related resource. Recommended best practice is to reference the resource by means of a string or number conforming to a formal identification system.
+
### getSource() {#getSource--}
```
public final String getSource()
@@ -130,8 +164,10 @@ public final String getSource()
Gets the source Dublin Core element.
+
**Returns:**
java.lang.String - A Reference to a resource from which the present resource is derived. The present resource may be derived from the Source resource in whole or part. Recommended best practice is to reference the resource by means of a string or number conforming to a formal identification system.
+
### getSubject() {#getSubject--}
```
public final String getSubject()
@@ -140,8 +176,10 @@ public final String getSubject()
Gets the subject Dublin Core element.
+
**Returns:**
java.lang.String - The topic of the content of the resource. Typically, a Subject will be expressed as keywords or key phrases or classification codes that describe the topic of the resource. Recommended best practice is to select a value from a controlled vocabulary or formal classification scheme.
+
### getTitle() {#getTitle--}
```
public final String getTitle()
@@ -150,8 +188,10 @@ public final String getTitle()
Gets the title Dublin Core element.
+
**Returns:**
java.lang.String - The name given to the resource. Typically, a Title will be a name by which the resource is formally known.
+
### getType() {#getType--}
```
public final String getType()
@@ -160,8 +200,10 @@ public final String getType()
Gets the type Dublin Core element.
+
**Returns:**
java.lang.String - The nature or genre of the content of the resource. Type includes terms describing general categories, functions, genres, or aggregation levels for content. Recommended best practice is to select a value from a controlled vocabulary (for example, the DCMIType vocabulary).
+
### getRights() {#getRights--}
```
public final String getRights()
@@ -170,8 +212,10 @@ public final String getRights()
Gets the rights Dublin Core element.
+
**Returns:**
java.lang.String - Information about rights held in and over the resource. Typically a Rights element will contain a rights management statement for the resource, or reference a service providing such information. Rights information often encompasses Intellectual Property Rights (IPR), Copyright, and various Property Rights. If the rights element is absent, no assumptions can be made about the status of these and other rights with respect to the resource.
+
### getIdentifier() {#getIdentifier--}
```
public final String getIdentifier()
@@ -180,5 +224,7 @@ public final String getIdentifier()
Gets the identifier Dublin Core element.
+
**Returns:**
java.lang.String - An unambiguous reference to the resource within a given context. Recommended best practice is to identify the resource by means of a string or number conforming to a formal identification system.
+
diff --git a/english/java/com.groupdocs.metadata.core/dwgrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/dwgrootpackage/_index.md
index 14f1e2ccf6..69d68de338 100644
--- a/english/java/com.groupdocs.metadata.core/dwgrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dwgrootpackage/_index.md
@@ -14,9 +14,11 @@ public class DwgRootPackage extends CadRootPackage
Represents the root package allowing working with metadata in a DWG drawing.
+
**Learn more**
- * [Working with CAD metadata][]
+* [Working with CAD metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata)
+
+
-[Working with CAD metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata
diff --git a/english/java/com.groupdocs.metadata.core/dxfrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/dxfrootpackage/_index.md
index f04a128092..f62095e2bb 100644
--- a/english/java/com.groupdocs.metadata.core/dxfrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/dxfrootpackage/_index.md
@@ -14,9 +14,11 @@ public class DxfRootPackage extends CadRootPackage
Represents the root package allowing working with metadata in a DXF drawing.
+
**Learn more**
- * [Working with CAD metadata][]
+* [Working with CAD metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata)
+
+
-[Working with CAD metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+CAD+metadata
diff --git a/english/java/com.groupdocs.metadata.core/emailheaderpackage/_index.md b/english/java/com.groupdocs.metadata.core/emailheaderpackage/_index.md
index f1db306012..65f505a242 100644
--- a/english/java/com.groupdocs.metadata.core/emailheaderpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/emailheaderpackage/_index.md
@@ -14,17 +14,20 @@ public class EmailHeaderPackage extends CustomPackage
Represents a metadata package containing email message headers.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
+
+
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
## Methods
| Method | Description |
| --- | --- |
-| [get(String header)](#get-java.lang.String-) | Gets the value of the specified header. |
+| [get(String header)](#get-java.lang.String-) | Gets the value of the specified header.
+ |
### get(String header) {#get-java.lang.String-}
```
public final String get(String header)
@@ -33,10 +36,13 @@ public final String get(String header)
Gets the value of the specified header.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| header | java.lang.String | An email header. |
+| header | java.lang.String | An email header.
+ |
**Returns:**
java.lang.String - The value if the package contains the specified header; otherwise, null.
+
diff --git a/english/java/com.groupdocs.metadata.core/emailpackage/_index.md b/english/java/com.groupdocs.metadata.core/emailpackage/_index.md
index d3df65eaae..4caba7fb1f 100644
--- a/english/java/com.groupdocs.metadata.core/emailpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/emailpackage/_index.md
@@ -14,27 +14,40 @@ public abstract class EmailPackage extends CustomPackage
Represents email message metadata.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
+
+
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
## Methods
| Method | Description |
| --- | --- |
-| [getAttachedFileNames()](#getAttachedFileNames--) | Gets an array of the names of the attached files. |
-| [getSubject()](#getSubject--) | Gets the email subject. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the email subject. |
-| [getRecipients()](#getRecipients--) | Gets the array of the email recipients. |
-| [setRecipients(String[] value)](#setRecipients-java.lang.String---) | Sets the array of the email recipients. |
-| [getCarbonCopyRecipients()](#getCarbonCopyRecipients--) | Gets the array of CC (carbon copy) recipients of the email message. |
-| [setCarbonCopyRecipients(String[] value)](#setCarbonCopyRecipients-java.lang.String---) | Sets the array of CC (carbon copy) recipients of the email message. |
-| [getBlindCarbonCopyRecipients()](#getBlindCarbonCopyRecipients--) | Gets the array of BCC (blind carbon copy) recipients of the email message. |
-| [setBlindCarbonCopyRecipients(String[] value)](#setBlindCarbonCopyRecipients-java.lang.String---) | Sets the array of BCC (blind carbon copy) recipients of the email message. |
-| [getSender()](#getSender--) | Gets the email address of the sender. |
-| [getHeaders()](#getHeaders--) | Gets a metadata package containing the email headers. |
+| [getAttachedFileNames()](#getAttachedFileNames--) | Gets an array of the names of the attached files.
+ |
+| [getSubject()](#getSubject--) | Gets the email subject.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the email subject.
+ |
+| [getRecipients()](#getRecipients--) | Gets the array of the email recipients.
+ |
+| [setRecipients(String[] value)](#setRecipients-java.lang.String---) | Sets the array of the email recipients.
+ |
+| [getCarbonCopyRecipients()](#getCarbonCopyRecipients--) | Gets the array of CC (carbon copy) recipients of the email message.
+ |
+| [setCarbonCopyRecipients(String[] value)](#setCarbonCopyRecipients-java.lang.String---) | Sets the array of CC (carbon copy) recipients of the email message.
+ |
+| [getBlindCarbonCopyRecipients()](#getBlindCarbonCopyRecipients--) | Gets the array of BCC (blind carbon copy) recipients of the email message.
+ |
+| [setBlindCarbonCopyRecipients(String[] value)](#setBlindCarbonCopyRecipients-java.lang.String---) | Sets the array of BCC (blind carbon copy) recipients of the email message.
+ |
+| [getSender()](#getSender--) | Gets the email address of the sender.
+ |
+| [getHeaders()](#getHeaders--) | Gets a metadata package containing the email headers.
+ |
### getAttachedFileNames() {#getAttachedFileNames--}
```
public final String[] getAttachedFileNames()
@@ -43,8 +56,10 @@ public final String[] getAttachedFileNames()
Gets an array of the names of the attached files.
+
**Returns:**
java.lang.String[] - An array of the names of the attached files.
+
### getSubject() {#getSubject--}
```
public final String getSubject()
@@ -53,8 +68,10 @@ public final String getSubject()
Gets the email subject.
+
**Returns:**
java.lang.String - The email subject.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -63,10 +80,12 @@ public final void setSubject(String value)
Sets the email subject.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The email subject. |
+| value | java.lang.String | The email subject.
+ |
### getRecipients() {#getRecipients--}
```
@@ -76,8 +95,10 @@ public final String[] getRecipients()
Gets the array of the email recipients.
+
**Returns:**
java.lang.String[] - The array of the email recipients.
+
### setRecipients(String[] value) {#setRecipients-java.lang.String---}
```
public final void setRecipients(String[] value)
@@ -86,10 +107,12 @@ public final void setRecipients(String[] value)
Sets the array of the email recipients.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The array of the email recipients. |
+| value | java.lang.String[] | The array of the email recipients.
+ |
### getCarbonCopyRecipients() {#getCarbonCopyRecipients--}
```
@@ -99,8 +122,10 @@ public final String[] getCarbonCopyRecipients()
Gets the array of CC (carbon copy) recipients of the email message.
+
**Returns:**
java.lang.String[] - The array of CC (carbon copy) recipients of the email message.
+
### setCarbonCopyRecipients(String[] value) {#setCarbonCopyRecipients-java.lang.String---}
```
public final void setCarbonCopyRecipients(String[] value)
@@ -109,10 +134,12 @@ public final void setCarbonCopyRecipients(String[] value)
Sets the array of CC (carbon copy) recipients of the email message.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The array of CC (carbon copy) recipients of the email message. |
+| value | java.lang.String[] | The array of CC (carbon copy) recipients of the email message.
+ |
### getBlindCarbonCopyRecipients() {#getBlindCarbonCopyRecipients--}
```
@@ -122,8 +149,10 @@ public final String[] getBlindCarbonCopyRecipients()
Gets the array of BCC (blind carbon copy) recipients of the email message.
+
**Returns:**
java.lang.String[] - The array of BCC (blind carbon copy) recipients of the email message.
+
### setBlindCarbonCopyRecipients(String[] value) {#setBlindCarbonCopyRecipients-java.lang.String---}
```
public final void setBlindCarbonCopyRecipients(String[] value)
@@ -132,10 +161,12 @@ public final void setBlindCarbonCopyRecipients(String[] value)
Sets the array of BCC (blind carbon copy) recipients of the email message.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The array of BCC (blind carbon copy) recipients of the email message. |
+| value | java.lang.String[] | The array of BCC (blind carbon copy) recipients of the email message.
+ |
### getSender() {#getSender--}
```
@@ -145,8 +176,10 @@ public final String getSender()
Gets the email address of the sender.
+
**Returns:**
java.lang.String - The email address of the sender.
+
### getHeaders() {#getHeaders--}
```
public final EmailHeaderPackage getHeaders()
@@ -155,5 +188,7 @@ public final EmailHeaderPackage getHeaders()
Gets a metadata package containing the email headers.
+
**Returns:**
[EmailHeaderPackage](../../com.groupdocs.metadata.core/emailheaderpackage) - A metadata package containing the email headers.
+
diff --git a/english/java/com.groupdocs.metadata.core/emailrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/emailrootpackage/_index.md
index 0c241f231a..7312d257d6 100644
--- a/english/java/com.groupdocs.metadata.core/emailrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/emailrootpackage/_index.md
@@ -14,18 +14,22 @@ public abstract class EmailRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in an email message.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
+
+
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
## Methods
| Method | Description |
| --- | --- |
-| [getEmailPackage()](#getEmailPackage--) | Gets the email metadata package. |
-| [clearAttachments()](#clearAttachments--) | Removes all the attachments form the email message. |
+| [getEmailPackage()](#getEmailPackage--) | Gets the email metadata package.
+ |
+| [clearAttachments()](#clearAttachments--) | Removes all the attachments form the email message.
+ |
### getEmailPackage() {#getEmailPackage--}
```
public final EmailPackage getEmailPackage()
@@ -34,8 +38,10 @@ public final EmailPackage getEmailPackage()
Gets the email metadata package.
+
**Returns:**
[EmailPackage](../../com.groupdocs.metadata.core/emailpackage) - The email metadata package.
+
### clearAttachments() {#clearAttachments--}
```
public final void clearAttachments()
@@ -44,3 +50,4 @@ public final void clearAttachments()
Removes all the attachments form the email message.
+
diff --git a/english/java/com.groupdocs.metadata.core/emfrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/emfrootpackage/_index.md
index 6d0289ed52..3d248a5c16 100644
--- a/english/java/com.groupdocs.metadata.core/emfrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/emfrootpackage/_index.md
@@ -13,3 +13,4 @@ public class EmfRootPackage extends ImageRootPackage
```
Represents the root package intended to work with metadata in an EMF image.
+
diff --git a/english/java/com.groupdocs.metadata.core/emlpackage/_index.md b/english/java/com.groupdocs.metadata.core/emlpackage/_index.md
index 597b73c84d..957f934984 100644
--- a/english/java/com.groupdocs.metadata.core/emlpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/emlpackage/_index.md
@@ -14,9 +14,11 @@ public class EmlPackage extends EmailPackage
Represents EML message metadata.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
+
+
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
diff --git a/english/java/com.groupdocs.metadata.core/emlrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/emlrootpackage/_index.md
index 1a6f90e1d6..1657f15499 100644
--- a/english/java/com.groupdocs.metadata.core/emlrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/emlrootpackage/_index.md
@@ -14,15 +14,18 @@ public class EmlRootPackage extends EmailRootPackage
Represents the root package allowing working with metadata in an EML email message.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
-This code sample shows how to extract metadata from an EML message.
+
+This code sample shows how to extract metadata from an EML message.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputEml)) {
> EmlRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getEmailPackage().getSender());
@@ -40,15 +43,15 @@ This code sample shows how to extract metadata from an EML message.
> }
>
> ```
-> ```
+> ````
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
## Methods
| Method | Description |
| --- | --- |
-| [getEmlPackage()](#getEmlPackage--) | Gets the EML metadata package. |
+| [getEmlPackage()](#getEmlPackage--) | Gets the EML metadata package.
+ |
### getEmlPackage() {#getEmlPackage--}
```
public final EmlPackage getEmlPackage()
@@ -57,5 +60,7 @@ public final EmlPackage getEmlPackage()
Gets the EML metadata package.
+
**Returns:**
[EmlPackage](../../com.groupdocs.metadata.core/emlpackage) - The EML metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/epubpackage/_index.md b/english/java/com.groupdocs.metadata.core/epubpackage/_index.md
index 8bba0b6724..bf16aae950 100644
--- a/english/java/com.groupdocs.metadata.core/epubpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/epubpackage/_index.md
@@ -14,129 +14,244 @@ public final class EpubPackage extends CustomPackage
Represents metadata in a EPUB e-book.
+
**Learn more**
- * [Working with metadata in EPUB E-Books][]
+* [Working with metadata in EPUB E-Books](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+EPUB+E-Books)
+
+
-[Working with metadata in EPUB E-Books]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+EPUB+E-Books
## Methods
| Method | Description |
| --- | --- |
-| [getImageCover()](#getImageCover--) | Gets the image cover as an array of bytes. |
-| [getVersion()](#getVersion--) | Gets the EPUB version. |
-| [getUniqueIdentifier()](#getUniqueIdentifier--) | Gets the package unique identifier. |
-| [getAbstract()](#getAbstract--) | Gets a summary of the resource. |
-| [setAbstract(String value)](#setAbstract-java.lang.String-) | Sets a summary of the resource. |
-| [getAccessRights()](#getAccessRights--) | Gets the information about who access the resource or an indication of its security status. |
-| [setAccessRights(String value)](#setAccessRights-java.lang.String-) | Sets the information about who access the resource or an indication of its security status. |
-| [getAccrualMethod()](#getAccrualMethod--) | Gets the method by which items are added to a collection. |
-| [setAccrualMethod(String value)](#setAccrualMethod-java.lang.String-) | Sets the method by which items are added to a collection. |
-| [getAccrualPeriodicity()](#getAccrualPeriodicity--) | Gets the frequency with which items are added to a collection. |
-| [setAccrualPeriodicity(String value)](#setAccrualPeriodicity-java.lang.String-) | Sets the frequency with which items are added to a collection. |
-| [getAccrualPolicy()](#getAccrualPolicy--) | Gets the policy governing the addition of items to a collection. |
-| [setAccrualPolicy(String value)](#setAccrualPolicy-java.lang.String-) | Sets the policy governing the addition of items to a collection. |
-| [getAlternative()](#getAlternative--) | Gets an alternative name for the resource. |
-| [setAlternative(String value)](#setAlternative-java.lang.String-) | Sets an alternative name for the resource. |
-| [getAudience()](#getAudience--) | Gets a class of agents for whom the resource is intended or useful. |
-| [setAudience(String value)](#setAudience-java.lang.String-) | Sets a class of agents for whom the resource is intended or useful. |
-| [getAvailable()](#getAvailable--) | Gets the date that the resource became or will become available. |
-| [setAvailable(String value)](#setAvailable-java.lang.String-) | Sets the date that the resource became or will become available. |
-| [getBibliographicCitation()](#getBibliographicCitation--) | Gets a bibliographic reference for the resource. |
-| [setBibliographicCitation(String value)](#setBibliographicCitation-java.lang.String-) | Sets a bibliographic reference for the resource. |
-| [getConformsTo()](#getConformsTo--) | Gets an established standard to which the described resource conforms. |
-| [setConformsTo(String value)](#setConformsTo-java.lang.String-) | Sets an established standard to which the described resource conforms. |
-| [getContributor()](#getContributor--) | Gets an entity responsible for making contributions to the resource. |
-| [setContributor(String value)](#setContributor-java.lang.String-) | Sets an entity responsible for making contributions to the resource. |
-| [getCoverage()](#getCoverage--) | Gets the spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant. |
-| [setCoverage(String value)](#setCoverage-java.lang.String-) | Sets the spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant. |
-| [getCreated()](#getCreated--) | Gets the date of creation of the resource. |
-| [setCreated(String value)](#setCreated-java.lang.String-) | Sets the date of creation of the resource. |
-| [getCreator()](#getCreator--) | Gets an entity responsible for making the resource. |
-| [setCreator(String value)](#setCreator-java.lang.String-) | Sets an entity responsible for making the resource. |
-| [getDate()](#getDate--) | Gets a point or period of time associated with an event in the lifecycle of the resource. |
-| [setDate(String value)](#setDate-java.lang.String-) | Sets a point or period of time associated with an event in the lifecycle of the resource. |
-| [getDateAccepted()](#getDateAccepted--) | Gets the date of acceptance of the resource. |
-| [setDateAccepted(String value)](#setDateAccepted-java.lang.String-) | Sets the date of acceptance of the resource. |
-| [getDateCopyrighted()](#getDateCopyrighted--) | Gets the date of copyright of the resource. |
-| [setDateCopyrighted(String value)](#setDateCopyrighted-java.lang.String-) | Sets the date of copyright of the resource. |
-| [getDateSubmitted()](#getDateSubmitted--) | Gets the date of submission of the resource. |
-| [setDateSubmitted(String value)](#setDateSubmitted-java.lang.String-) | Sets the date of submission of the resource. |
-| [getDescription()](#getDescription--) | Gets an account of the resource. |
-| [setDescription(String value)](#setDescription-java.lang.String-) | Sets an account of the resource. |
-| [getEducationLevel()](#getEducationLevel--) | Gets a class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended. |
-| [setEducationLevel(String value)](#setEducationLevel-java.lang.String-) | Sets a class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended. |
-| [getExtent()](#getExtent--) | Gets the size or duration of the resource. |
-| [setExtent(String value)](#setExtent-java.lang.String-) | Sets the size or duration of the resource. |
-| [getFormat()](#getFormat--) | Gets the file format, physical medium, or dimensions of the resource. |
-| [setFormat(String value)](#setFormat-java.lang.String-) | Sets the file format, physical medium, or dimensions of the resource. |
-| [hasFormat()](#hasFormat--) | Gets or sets a related resource that is substantially the same as the pre-existing described resource, but in another format. |
-| [setHasFormat(String value)](#setHasFormat-java.lang.String-) | Sets a related resource that is substantially the same as the pre-existing described resource, but in another format. |
-| [hasPart()](#hasPart--) | Gets or sets a related resource that is included either physically or logically in the described resource. |
-| [setPart(String value)](#setPart-java.lang.String-) | Sets a related resource that is included either physically or logically in the described resource. |
-| [hasVersion()](#hasVersion--) | Gets or sets a related resource that is a version, edition, or adaptation of the described resource. |
-| [setHasVersion(String value)](#setHasVersion-java.lang.String-) | Sets a related resource that is a version, edition, or adaptation of the described resource. |
-| [getIdentifier()](#getIdentifier--) | Gets an unambiguous reference to the resource within a given context. |
-| [setIdentifier(String value)](#setIdentifier-java.lang.String-) | Sets an unambiguous reference to the resource within a given context. |
-| [getInstructionalMethod()](#getInstructionalMethod--) | Gets a process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. |
-| [setInstructionalMethod(String value)](#setInstructionalMethod-java.lang.String-) | Sets a process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. |
-| [isFormatOf()](#isFormatOf--) | Gets a pre-existing related resource that is substantially the same as the described resource, but in another format. |
-| [setFormatOf(String value)](#setFormatOf-java.lang.String-) | Sets a pre-existing related resource that is substantially the same as the described resource, but in another format. |
-| [isPartOf()](#isPartOf--) | Gets a related resource in which the described resource is physically or logically included. |
-| [setPartOf(String value)](#setPartOf-java.lang.String-) | Sets a related resource in which the described resource is physically or logically included. |
-| [isReferencedBy()](#isReferencedBy--) | Gets a related resource that references, cites, or otherwise points to the described resource. |
-| [setReferencedBy(String value)](#setReferencedBy-java.lang.String-) | Sets a related resource that references, cites, or otherwise points to the described resource. |
-| [isReplacedBy()](#isReplacedBy--) | Gets a related resource that supplants, displaces, or supersedes the described resource. |
-| [setReplacedBy(String value)](#setReplacedBy-java.lang.String-) | Sets a related resource that supplants, displaces, or supersedes the described resource. |
-| [isRequiredBy()](#isRequiredBy--) | Gets a related resource that requires the described resource to support its function, delivery, or coherence. |
-| [setRequiredBy(String value)](#setRequiredBy-java.lang.String-) | Sets a related resource that requires the described resource to support its function, delivery, or coherence. |
-| [getIssued()](#getIssued--) | Gets the date of formal issuance of the resource. |
-| [setIssued(String value)](#setIssued-java.lang.String-) | Sets the date of formal issuance of the resource. |
-| [isVersionOf()](#isVersionOf--) | Gets a related resource of which the described resource is a version, edition, or adaptation. |
-| [setVersionOf(String value)](#setVersionOf-java.lang.String-) | Sets a related resource of which the described resource is a version, edition, or adaptation. |
-| [getLanguage()](#getLanguage--) | Gets the language of the resource. |
-| [setLanguage(String value)](#setLanguage-java.lang.String-) | Sets the language of the resource. |
-| [getLicense()](#getLicense--) | Gets a legal document giving official permission to do something with the resource. |
-| [setLicense(String value)](#setLicense-java.lang.String-) | Sets a legal document giving official permission to do something with the resource. |
-| [getMediator()](#getMediator--) | Gets an entity that mediates access to the resource. |
-| [setMediator(String value)](#setMediator-java.lang.String-) | Sets an entity that mediates access to the resource. |
-| [getMedium()](#getMedium--) | Gets the material or physical carrier of the resource. |
-| [setMedium(String value)](#setMedium-java.lang.String-) | Sets the material or physical carrier of the resource. |
-| [getModified()](#getModified--) | Gets the date on which the resource was changed. |
-| [setModified(String value)](#setModified-java.lang.String-) | Sets the date on which the resource was changed. |
-| [getProvenance()](#getProvenance--) | Gets a statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. |
-| [setProvenance(String value)](#setProvenance-java.lang.String-) | Sets a statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. |
-| [getPublisher()](#getPublisher--) | Gets an entity responsible for making the resource available. |
-| [setPublisher(String value)](#setPublisher-java.lang.String-) | Sets an entity responsible for making the resource available. |
-| [getReferences()](#getReferences--) | Gets a related resource that is referenced, cited, or otherwise pointed to by the described resource. |
-| [setReferences(String value)](#setReferences-java.lang.String-) | Sets a related resource that is referenced, cited, or otherwise pointed to by the described resource. |
-| [getRelation()](#getRelation--) | Gets a related resource. |
-| [setRelation(String value)](#setRelation-java.lang.String-) | Sets a related resource. |
-| [getReplaces()](#getReplaces--) | Gets a related resource that is supplanted, displaced, or superseded by the described resource. |
-| [setReplaces(String value)](#setReplaces-java.lang.String-) | Sets a related resource that is supplanted, displaced, or superseded by the described resource. |
-| [getRequires()](#getRequires--) | Gets a related resource that is required by the described resource to support its function, delivery, or coherence. |
-| [setRequires(String value)](#setRequires-java.lang.String-) | Sets a related resource that is required by the described resource to support its function, delivery, or coherence. |
-| [getRights()](#getRights--) | Gets the information about rights held in and over the resource. |
-| [setRights(String value)](#setRights-java.lang.String-) | Sets the information about rights held in and over the resource. |
-| [getRightsHolder()](#getRightsHolder--) | Gets a person or organization owning or managing rights over the resource. |
-| [setRightsHolder(String value)](#setRightsHolder-java.lang.String-) | Sets a person or organization owning or managing rights over the resource. |
-| [getSource()](#getSource--) | Gets a related resource from which the described resource is derived. |
-| [setSource(String value)](#setSource-java.lang.String-) | Sets a related resource from which the described resource is derived. |
-| [getSpatial()](#getSpatial--) | Gets the spatial characteristics of the resource. |
-| [setSpatial(String value)](#setSpatial-java.lang.String-) | Sets the spatial characteristics of the resource. |
-| [getSubject()](#getSubject--) | Gets a topic of the resource. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets a topic of the resource. |
-| [getTableOfContents()](#getTableOfContents--) | Gets a list of subunits of the resource. |
-| [setTableOfContents(String value)](#setTableOfContents-java.lang.String-) | Sets a list of subunits of the resource. |
-| [getTemporal()](#getTemporal--) | Gets the temporal characteristics of the resource. |
-| [setTemporal(String value)](#setTemporal-java.lang.String-) | Sets the temporal characteristics of the resource. |
-| [getTitle()](#getTitle--) | Gets a name given to the resource. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets a name given to the resource. |
-| [getType()](#getType--) | Gets the nature or genre of the resource. |
-| [setType(String value)](#setType-java.lang.String-) | Sets the nature or genre of the resource. |
-| [getValid()](#getValid--) | Gets the date (often a range) of validity of a resource. |
-| [setValid(String value)](#setValid-java.lang.String-) | Sets the date (often a range) of validity of a resource. |
+| [getImageCover()](#getImageCover--) | Gets the image cover as an array of bytes.
+ |
+| [getVersion()](#getVersion--) | Gets the EPUB version.
+ |
+| [getUniqueIdentifier()](#getUniqueIdentifier--) | Gets the package unique identifier.
+ |
+| [getAbstract()](#getAbstract--) | Gets a summary of the resource.
+ |
+| [setAbstract(String value)](#setAbstract-java.lang.String-) | Sets a summary of the resource.
+ |
+| [getAccessRights()](#getAccessRights--) | Gets the information about who access the resource or an indication of its security status.
+ |
+| [setAccessRights(String value)](#setAccessRights-java.lang.String-) | Sets the information about who access the resource or an indication of its security status.
+ |
+| [getAccrualMethod()](#getAccrualMethod--) | Gets the method by which items are added to a collection.
+ |
+| [setAccrualMethod(String value)](#setAccrualMethod-java.lang.String-) | Sets the method by which items are added to a collection.
+ |
+| [getAccrualPeriodicity()](#getAccrualPeriodicity--) | Gets the frequency with which items are added to a collection.
+ |
+| [setAccrualPeriodicity(String value)](#setAccrualPeriodicity-java.lang.String-) | Sets the frequency with which items are added to a collection.
+ |
+| [getAccrualPolicy()](#getAccrualPolicy--) | Gets the policy governing the addition of items to a collection.
+ |
+| [setAccrualPolicy(String value)](#setAccrualPolicy-java.lang.String-) | Sets the policy governing the addition of items to a collection.
+ |
+| [getAlternative()](#getAlternative--) | Gets an alternative name for the resource.
+ |
+| [setAlternative(String value)](#setAlternative-java.lang.String-) | Sets an alternative name for the resource.
+ |
+| [getAudience()](#getAudience--) | Gets a class of agents for whom the resource is intended or useful.
+ |
+| [setAudience(String value)](#setAudience-java.lang.String-) | Sets a class of agents for whom the resource is intended or useful.
+ |
+| [getAvailable()](#getAvailable--) | Gets the date that the resource became or will become available.
+ |
+| [setAvailable(String value)](#setAvailable-java.lang.String-) | Sets the date that the resource became or will become available.
+ |
+| [getBibliographicCitation()](#getBibliographicCitation--) | Gets a bibliographic reference for the resource.
+ |
+| [setBibliographicCitation(String value)](#setBibliographicCitation-java.lang.String-) | Sets a bibliographic reference for the resource.
+ |
+| [getConformsTo()](#getConformsTo--) | Gets an established standard to which the described resource conforms.
+ |
+| [setConformsTo(String value)](#setConformsTo-java.lang.String-) | Sets an established standard to which the described resource conforms.
+ |
+| [getContributor()](#getContributor--) | Gets an entity responsible for making contributions to the resource.
+ |
+| [setContributor(String value)](#setContributor-java.lang.String-) | Sets an entity responsible for making contributions to the resource.
+ |
+| [getCoverage()](#getCoverage--) | Gets the spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
+ |
+| [setCoverage(String value)](#setCoverage-java.lang.String-) | Sets the spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
+ |
+| [getCreated()](#getCreated--) | Gets the date of creation of the resource.
+ |
+| [setCreated(String value)](#setCreated-java.lang.String-) | Sets the date of creation of the resource.
+ |
+| [getCreator()](#getCreator--) | Gets an entity responsible for making the resource.
+ |
+| [setCreator(String value)](#setCreator-java.lang.String-) | Sets an entity responsible for making the resource.
+ |
+| [getDate()](#getDate--) | Gets a point or period of time associated with an event in the lifecycle of the resource.
+ |
+| [setDate(String value)](#setDate-java.lang.String-) | Sets a point or period of time associated with an event in the lifecycle of the resource.
+ |
+| [getDateAccepted()](#getDateAccepted--) | Gets the date of acceptance of the resource.
+ |
+| [setDateAccepted(String value)](#setDateAccepted-java.lang.String-) | Sets the date of acceptance of the resource.
+ |
+| [getDateCopyrighted()](#getDateCopyrighted--) | Gets the date of copyright of the resource.
+ |
+| [setDateCopyrighted(String value)](#setDateCopyrighted-java.lang.String-) | Sets the date of copyright of the resource.
+ |
+| [getDateSubmitted()](#getDateSubmitted--) | Gets the date of submission of the resource.
+ |
+| [setDateSubmitted(String value)](#setDateSubmitted-java.lang.String-) | Sets the date of submission of the resource.
+ |
+| [getDescription()](#getDescription--) | Gets an account of the resource.
+ |
+| [setDescription(String value)](#setDescription-java.lang.String-) | Sets an account of the resource.
+ |
+| [getEducationLevel()](#getEducationLevel--) | Gets a class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
+ |
+| [setEducationLevel(String value)](#setEducationLevel-java.lang.String-) | Sets a class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
+ |
+| [getExtent()](#getExtent--) | Gets the size or duration of the resource.
+ |
+| [setExtent(String value)](#setExtent-java.lang.String-) | Sets the size or duration of the resource.
+ |
+| [getFormat()](#getFormat--) | Gets the file format, physical medium, or dimensions of the resource.
+ |
+| [setFormat(String value)](#setFormat-java.lang.String-) | Sets the file format, physical medium, or dimensions of the resource.
+ |
+| [hasFormat()](#hasFormat--) | Gets or sets a related resource that is substantially the same as the pre-existing described resource, but in another format.
+ |
+| [setHasFormat(String value)](#setHasFormat-java.lang.String-) | Sets a related resource that is substantially the same as the pre-existing described resource, but in another format.
+ |
+| [hasPart()](#hasPart--) | Gets or sets a related resource that is included either physically or logically in the described resource.
+ |
+| [setPart(String value)](#setPart-java.lang.String-) | Sets a related resource that is included either physically or logically in the described resource.
+ |
+| [hasVersion()](#hasVersion--) | Gets or sets a related resource that is a version, edition, or adaptation of the described resource.
+ |
+| [setHasVersion(String value)](#setHasVersion-java.lang.String-) | Sets a related resource that is a version, edition, or adaptation of the described resource.
+ |
+| [getIdentifier()](#getIdentifier--) | Gets an unambiguous reference to the resource within a given context.
+ |
+| [setIdentifier(String value)](#setIdentifier-java.lang.String-) | Sets an unambiguous reference to the resource within a given context.
+ |
+| [getInstructionalMethod()](#getInstructionalMethod--) | Gets a process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
+ |
+| [setInstructionalMethod(String value)](#setInstructionalMethod-java.lang.String-) | Sets a process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
+ |
+| [isFormatOf()](#isFormatOf--) | Gets a pre-existing related resource that is substantially the same as the described resource, but in another format.
+ |
+| [setFormatOf(String value)](#setFormatOf-java.lang.String-) | Sets a pre-existing related resource that is substantially the same as the described resource, but in another format.
+ |
+| [isPartOf()](#isPartOf--) | Gets a related resource in which the described resource is physically or logically included.
+ |
+| [setPartOf(String value)](#setPartOf-java.lang.String-) | Sets a related resource in which the described resource is physically or logically included.
+ |
+| [isReferencedBy()](#isReferencedBy--) | Gets a related resource that references, cites, or otherwise points to the described resource.
+ |
+| [setReferencedBy(String value)](#setReferencedBy-java.lang.String-) | Sets a related resource that references, cites, or otherwise points to the described resource.
+ |
+| [isReplacedBy()](#isReplacedBy--) | Gets a related resource that supplants, displaces, or supersedes the described resource.
+ |
+| [setReplacedBy(String value)](#setReplacedBy-java.lang.String-) | Sets a related resource that supplants, displaces, or supersedes the described resource.
+ |
+| [isRequiredBy()](#isRequiredBy--) | Gets a related resource that requires the described resource to support its function, delivery, or coherence.
+ |
+| [setRequiredBy(String value)](#setRequiredBy-java.lang.String-) | Sets a related resource that requires the described resource to support its function, delivery, or coherence.
+ |
+| [getIssued()](#getIssued--) | Gets the date of formal issuance of the resource.
+ |
+| [setIssued(String value)](#setIssued-java.lang.String-) | Sets the date of formal issuance of the resource.
+ |
+| [isVersionOf()](#isVersionOf--) | Gets a related resource of which the described resource is a version, edition, or adaptation.
+ |
+| [setVersionOf(String value)](#setVersionOf-java.lang.String-) | Sets a related resource of which the described resource is a version, edition, or adaptation.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language of the resource.
+ |
+| [setLanguage(String value)](#setLanguage-java.lang.String-) | Sets the language of the resource.
+ |
+| [getLicense()](#getLicense--) | Gets a legal document giving official permission to do something with the resource.
+ |
+| [setLicense(String value)](#setLicense-java.lang.String-) | Sets a legal document giving official permission to do something with the resource.
+ |
+| [getMediator()](#getMediator--) | Gets an entity that mediates access to the resource.
+ |
+| [setMediator(String value)](#setMediator-java.lang.String-) | Sets an entity that mediates access to the resource.
+ |
+| [getMedium()](#getMedium--) | Gets the material or physical carrier of the resource.
+ |
+| [setMedium(String value)](#setMedium-java.lang.String-) | Sets the material or physical carrier of the resource.
+ |
+| [getModified()](#getModified--) | Gets the date on which the resource was changed.
+ |
+| [setModified(String value)](#setModified-java.lang.String-) | Sets the date on which the resource was changed.
+ |
+| [getProvenance()](#getProvenance--) | Gets a statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
+ |
+| [setProvenance(String value)](#setProvenance-java.lang.String-) | Sets a statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
+ |
+| [getPublisher()](#getPublisher--) | Gets an entity responsible for making the resource available.
+ |
+| [setPublisher(String value)](#setPublisher-java.lang.String-) | Sets an entity responsible for making the resource available.
+ |
+| [getReferences()](#getReferences--) | Gets a related resource that is referenced, cited, or otherwise pointed to by the described resource.
+ |
+| [setReferences(String value)](#setReferences-java.lang.String-) | Sets a related resource that is referenced, cited, or otherwise pointed to by the described resource.
+ |
+| [getRelation()](#getRelation--) | Gets a related resource.
+ |
+| [setRelation(String value)](#setRelation-java.lang.String-) | Sets a related resource.
+ |
+| [getReplaces()](#getReplaces--) | Gets a related resource that is supplanted, displaced, or superseded by the described resource.
+ |
+| [setReplaces(String value)](#setReplaces-java.lang.String-) | Sets a related resource that is supplanted, displaced, or superseded by the described resource.
+ |
+| [getRequires()](#getRequires--) | Gets a related resource that is required by the described resource to support its function, delivery, or coherence.
+ |
+| [setRequires(String value)](#setRequires-java.lang.String-) | Sets a related resource that is required by the described resource to support its function, delivery, or coherence.
+ |
+| [getRights()](#getRights--) | Gets the information about rights held in and over the resource.
+ |
+| [setRights(String value)](#setRights-java.lang.String-) | Sets the information about rights held in and over the resource.
+ |
+| [getRightsHolder()](#getRightsHolder--) | Gets a person or organization owning or managing rights over the resource.
+ |
+| [setRightsHolder(String value)](#setRightsHolder-java.lang.String-) | Sets a person or organization owning or managing rights over the resource.
+ |
+| [getSource()](#getSource--) | Gets a related resource from which the described resource is derived.
+ |
+| [setSource(String value)](#setSource-java.lang.String-) | Sets a related resource from which the described resource is derived.
+ |
+| [getSpatial()](#getSpatial--) | Gets the spatial characteristics of the resource.
+ |
+| [setSpatial(String value)](#setSpatial-java.lang.String-) | Sets the spatial characteristics of the resource.
+ |
+| [getSubject()](#getSubject--) | Gets a topic of the resource.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets a topic of the resource.
+ |
+| [getTableOfContents()](#getTableOfContents--) | Gets a list of subunits of the resource.
+ |
+| [setTableOfContents(String value)](#setTableOfContents-java.lang.String-) | Sets a list of subunits of the resource.
+ |
+| [getTemporal()](#getTemporal--) | Gets the temporal characteristics of the resource.
+ |
+| [setTemporal(String value)](#setTemporal-java.lang.String-) | Sets the temporal characteristics of the resource.
+ |
+| [getTitle()](#getTitle--) | Gets a name given to the resource.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets a name given to the resource.
+ |
+| [getType()](#getType--) | Gets the nature or genre of the resource.
+ |
+| [setType(String value)](#setType-java.lang.String-) | Sets the nature or genre of the resource.
+ |
+| [getValid()](#getValid--) | Gets the date (often a range) of validity of a resource.
+ |
+| [setValid(String value)](#setValid-java.lang.String-) | Sets the date (often a range) of validity of a resource.
+ |
### getImageCover() {#getImageCover--}
```
public final byte[] getImageCover()
@@ -145,8 +260,10 @@ public final byte[] getImageCover()
Gets the image cover as an array of bytes.
+
**Returns:**
byte[] - The image cover.
+
### getVersion() {#getVersion--}
```
public final String getVersion()
@@ -155,8 +272,10 @@ public final String getVersion()
Gets the EPUB version.
+
**Returns:**
java.lang.String - The EPUB version.
+
### getUniqueIdentifier() {#getUniqueIdentifier--}
```
public final String getUniqueIdentifier()
@@ -165,8 +284,10 @@ public final String getUniqueIdentifier()
Gets the package unique identifier.
+
**Returns:**
java.lang.String - The package unique identifier.
+
### getAbstract() {#getAbstract--}
```
public final String getAbstract()
@@ -175,8 +296,10 @@ public final String getAbstract()
Gets a summary of the resource.
+
**Returns:**
java.lang.String - A summary of the resource.
+
### setAbstract(String value) {#setAbstract-java.lang.String-}
```
public final void setAbstract(String value)
@@ -185,10 +308,12 @@ public final void setAbstract(String value)
Sets a summary of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A summary of the resource. |
+| value | java.lang.String | A summary of the resource.
+ |
### getAccessRights() {#getAccessRights--}
```
@@ -198,8 +323,10 @@ public final String getAccessRights()
Gets the information about who access the resource or an indication of its security status.
+
**Returns:**
java.lang.String - The information about who access the resource or an indication of its security status.
+
### setAccessRights(String value) {#setAccessRights-java.lang.String-}
```
public final void setAccessRights(String value)
@@ -208,10 +335,12 @@ public final void setAccessRights(String value)
Sets the information about who access the resource or an indication of its security status.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The information about who access the resource or an indication of its security status. |
+| value | java.lang.String | The information about who access the resource or an indication of its security status.
+ |
### getAccrualMethod() {#getAccrualMethod--}
```
@@ -221,8 +350,10 @@ public final String getAccrualMethod()
Gets the method by which items are added to a collection.
+
**Returns:**
java.lang.String - The method by which items are added to a collection.
+
### setAccrualMethod(String value) {#setAccrualMethod-java.lang.String-}
```
public final void setAccrualMethod(String value)
@@ -231,10 +362,12 @@ public final void setAccrualMethod(String value)
Sets the method by which items are added to a collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The method by which items are added to a collection. |
+| value | java.lang.String | The method by which items are added to a collection.
+ |
### getAccrualPeriodicity() {#getAccrualPeriodicity--}
```
@@ -244,8 +377,10 @@ public final String getAccrualPeriodicity()
Gets the frequency with which items are added to a collection.
+
**Returns:**
java.lang.String - The frequency with which items are added to a collection.
+
### setAccrualPeriodicity(String value) {#setAccrualPeriodicity-java.lang.String-}
```
public final void setAccrualPeriodicity(String value)
@@ -254,10 +389,12 @@ public final void setAccrualPeriodicity(String value)
Sets the frequency with which items are added to a collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The frequency with which items are added to a collection. |
+| value | java.lang.String | The frequency with which items are added to a collection.
+ |
### getAccrualPolicy() {#getAccrualPolicy--}
```
@@ -267,8 +404,10 @@ public final String getAccrualPolicy()
Gets the policy governing the addition of items to a collection.
+
**Returns:**
java.lang.String - The policy governing the addition of items to a collection.
+
### setAccrualPolicy(String value) {#setAccrualPolicy-java.lang.String-}
```
public final void setAccrualPolicy(String value)
@@ -277,10 +416,12 @@ public final void setAccrualPolicy(String value)
Sets the policy governing the addition of items to a collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The policy governing the addition of items to a collection. |
+| value | java.lang.String | The policy governing the addition of items to a collection.
+ |
### getAlternative() {#getAlternative--}
```
@@ -290,8 +431,10 @@ public final String getAlternative()
Gets an alternative name for the resource.
+
**Returns:**
java.lang.String - An alternative name for the resource.
+
### setAlternative(String value) {#setAlternative-java.lang.String-}
```
public final void setAlternative(String value)
@@ -300,10 +443,12 @@ public final void setAlternative(String value)
Sets an alternative name for the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An alternative name for the resource. |
+| value | java.lang.String | An alternative name for the resource.
+ |
### getAudience() {#getAudience--}
```
@@ -313,8 +458,10 @@ public final String getAudience()
Gets a class of agents for whom the resource is intended or useful.
+
**Returns:**
java.lang.String - A class of agents for whom the resource is intended or useful.
+
### setAudience(String value) {#setAudience-java.lang.String-}
```
public final void setAudience(String value)
@@ -323,10 +470,12 @@ public final void setAudience(String value)
Sets a class of agents for whom the resource is intended or useful.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A class of agents for whom the resource is intended or useful. |
+| value | java.lang.String | A class of agents for whom the resource is intended or useful.
+ |
### getAvailable() {#getAvailable--}
```
@@ -336,8 +485,10 @@ public final String getAvailable()
Gets the date that the resource became or will become available.
+
**Returns:**
java.lang.String - The date that the resource became or will become available.
+
### setAvailable(String value) {#setAvailable-java.lang.String-}
```
public final void setAvailable(String value)
@@ -346,10 +497,12 @@ public final void setAvailable(String value)
Sets the date that the resource became or will become available.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date that the resource became or will become available. |
+| value | java.lang.String | The date that the resource became or will become available.
+ |
### getBibliographicCitation() {#getBibliographicCitation--}
```
@@ -359,8 +512,10 @@ public final String getBibliographicCitation()
Gets a bibliographic reference for the resource.
+
**Returns:**
java.lang.String - A bibliographic reference for the resource.
+
### setBibliographicCitation(String value) {#setBibliographicCitation-java.lang.String-}
```
public final void setBibliographicCitation(String value)
@@ -369,10 +524,12 @@ public final void setBibliographicCitation(String value)
Sets a bibliographic reference for the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A bibliographic reference for the resource. |
+| value | java.lang.String | A bibliographic reference for the resource.
+ |
### getConformsTo() {#getConformsTo--}
```
@@ -382,8 +539,10 @@ public final String getConformsTo()
Gets an established standard to which the described resource conforms.
+
**Returns:**
java.lang.String - An established standard to which the described resource conforms.
+
### setConformsTo(String value) {#setConformsTo-java.lang.String-}
```
public final void setConformsTo(String value)
@@ -392,10 +551,12 @@ public final void setConformsTo(String value)
Sets an established standard to which the described resource conforms.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An established standard to which the described resource conforms. |
+| value | java.lang.String | An established standard to which the described resource conforms.
+ |
### getContributor() {#getContributor--}
```
@@ -405,8 +566,10 @@ public final String getContributor()
Gets an entity responsible for making contributions to the resource.
+
**Returns:**
java.lang.String - An entity responsible for making contributions to the resource.
+
### setContributor(String value) {#setContributor-java.lang.String-}
```
public final void setContributor(String value)
@@ -415,10 +578,12 @@ public final void setContributor(String value)
Sets an entity responsible for making contributions to the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An entity responsible for making contributions to the resource. |
+| value | java.lang.String | An entity responsible for making contributions to the resource.
+ |
### getCoverage() {#getCoverage--}
```
@@ -428,8 +593,10 @@ public final String getCoverage()
Gets the spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
+
**Returns:**
java.lang.String - The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
+
### setCoverage(String value) {#setCoverage-java.lang.String-}
```
public final void setCoverage(String value)
@@ -438,10 +605,12 @@ public final void setCoverage(String value)
Sets the spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant. |
+| value | java.lang.String | The spatial or temporal topic of the resource, spatial applicability of the resource, or jurisdiction under which the resource is relevant.
+ |
### getCreated() {#getCreated--}
```
@@ -451,8 +620,10 @@ public final String getCreated()
Gets the date of creation of the resource.
+
**Returns:**
java.lang.String - The date of creation of the resource.
+
### setCreated(String value) {#setCreated-java.lang.String-}
```
public final void setCreated(String value)
@@ -461,10 +632,12 @@ public final void setCreated(String value)
Sets the date of creation of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date of creation of the resource. |
+| value | java.lang.String | The date of creation of the resource.
+ |
### getCreator() {#getCreator--}
```
@@ -474,8 +647,10 @@ public final String getCreator()
Gets an entity responsible for making the resource.
+
**Returns:**
java.lang.String - An entity responsible for making the resource.
+
### setCreator(String value) {#setCreator-java.lang.String-}
```
public final void setCreator(String value)
@@ -484,10 +659,12 @@ public final void setCreator(String value)
Sets an entity responsible for making the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An entity responsible for making the resource. |
+| value | java.lang.String | An entity responsible for making the resource.
+ |
### getDate() {#getDate--}
```
@@ -497,8 +674,10 @@ public final String getDate()
Gets a point or period of time associated with an event in the lifecycle of the resource.
+
**Returns:**
java.lang.String - A point or period of time associated with an event in the lifecycle of the resource.
+
### setDate(String value) {#setDate-java.lang.String-}
```
public final void setDate(String value)
@@ -507,10 +686,12 @@ public final void setDate(String value)
Sets a point or period of time associated with an event in the lifecycle of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A point or period of time associated with an event in the lifecycle of the resource. |
+| value | java.lang.String | A point or period of time associated with an event in the lifecycle of the resource.
+ |
### getDateAccepted() {#getDateAccepted--}
```
@@ -520,8 +701,10 @@ public final String getDateAccepted()
Gets the date of acceptance of the resource.
+
**Returns:**
java.lang.String - The date of acceptance of the resource.
+
### setDateAccepted(String value) {#setDateAccepted-java.lang.String-}
```
public final void setDateAccepted(String value)
@@ -530,10 +713,12 @@ public final void setDateAccepted(String value)
Sets the date of acceptance of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date of acceptance of the resource. |
+| value | java.lang.String | The date of acceptance of the resource.
+ |
### getDateCopyrighted() {#getDateCopyrighted--}
```
@@ -543,8 +728,10 @@ public final String getDateCopyrighted()
Gets the date of copyright of the resource.
+
**Returns:**
java.lang.String - The date of copyright of the resource.
+
### setDateCopyrighted(String value) {#setDateCopyrighted-java.lang.String-}
```
public final void setDateCopyrighted(String value)
@@ -553,10 +740,12 @@ public final void setDateCopyrighted(String value)
Sets the date of copyright of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date of copyright of the resource. |
+| value | java.lang.String | The date of copyright of the resource.
+ |
### getDateSubmitted() {#getDateSubmitted--}
```
@@ -566,8 +755,10 @@ public final String getDateSubmitted()
Gets the date of submission of the resource.
+
**Returns:**
java.lang.String - The date of submission of the resource.
+
### setDateSubmitted(String value) {#setDateSubmitted-java.lang.String-}
```
public final void setDateSubmitted(String value)
@@ -576,10 +767,12 @@ public final void setDateSubmitted(String value)
Sets the date of submission of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date of submission of the resource. |
+| value | java.lang.String | The date of submission of the resource.
+ |
### getDescription() {#getDescription--}
```
@@ -589,8 +782,10 @@ public final String getDescription()
Gets an account of the resource.
+
**Returns:**
java.lang.String - An account of the resource.
+
### setDescription(String value) {#setDescription-java.lang.String-}
```
public final void setDescription(String value)
@@ -599,10 +794,12 @@ public final void setDescription(String value)
Sets an account of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An account of the resource. |
+| value | java.lang.String | An account of the resource.
+ |
### getEducationLevel() {#getEducationLevel--}
```
@@ -612,8 +809,10 @@ public final String getEducationLevel()
Gets a class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
+
**Returns:**
java.lang.String - A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
+
### setEducationLevel(String value) {#setEducationLevel-java.lang.String-}
```
public final void setEducationLevel(String value)
@@ -622,10 +821,12 @@ public final void setEducationLevel(String value)
Sets a class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended. |
+| value | java.lang.String | A class of agents, defined in terms of progression through an educational or training context, for which the described resource is intended.
+ |
### getExtent() {#getExtent--}
```
@@ -635,8 +836,10 @@ public final String getExtent()
Gets the size or duration of the resource.
+
**Returns:**
java.lang.String - The size or duration of the resource.
+
### setExtent(String value) {#setExtent-java.lang.String-}
```
public final void setExtent(String value)
@@ -645,10 +848,12 @@ public final void setExtent(String value)
Sets the size or duration of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The size or duration of the resource. |
+| value | java.lang.String | The size or duration of the resource.
+ |
### getFormat() {#getFormat--}
```
@@ -658,8 +863,10 @@ public final String getFormat()
Gets the file format, physical medium, or dimensions of the resource.
+
**Returns:**
java.lang.String - The file format, physical medium, or dimensions of the resource.
+
### setFormat(String value) {#setFormat-java.lang.String-}
```
public final void setFormat(String value)
@@ -668,10 +875,12 @@ public final void setFormat(String value)
Sets the file format, physical medium, or dimensions of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The file format, physical medium, or dimensions of the resource. |
+| value | java.lang.String | The file format, physical medium, or dimensions of the resource.
+ |
### hasFormat() {#hasFormat--}
```
@@ -681,8 +890,10 @@ public final String hasFormat()
Gets or sets a related resource that is substantially the same as the pre-existing described resource, but in another format.
+
**Returns:**
java.lang.String - A related resource that is substantially the same as the pre-existing described resource, but in another format.
+
### setHasFormat(String value) {#setHasFormat-java.lang.String-}
```
public final void setHasFormat(String value)
@@ -691,10 +902,12 @@ public final void setHasFormat(String value)
Sets a related resource that is substantially the same as the pre-existing described resource, but in another format.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that is substantially the same as the pre-existing described resource, but in another format. |
+| value | java.lang.String | A related resource that is substantially the same as the pre-existing described resource, but in another format.
+ |
### hasPart() {#hasPart--}
```
@@ -704,8 +917,10 @@ public final String hasPart()
Gets or sets a related resource that is included either physically or logically in the described resource.
+
**Returns:**
java.lang.String - A related resource that is included either physically or logically in the described resource.
+
### setPart(String value) {#setPart-java.lang.String-}
```
public final void setPart(String value)
@@ -714,10 +929,12 @@ public final void setPart(String value)
Sets a related resource that is included either physically or logically in the described resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that is included either physically or logically in the described resource. |
+| value | java.lang.String | A related resource that is included either physically or logically in the described resource.
+ |
### hasVersion() {#hasVersion--}
```
@@ -727,8 +944,10 @@ public final String hasVersion()
Gets or sets a related resource that is a version, edition, or adaptation of the described resource.
+
**Returns:**
java.lang.String - A related resource that is a version, edition, or adaptation of the described resource.
+
### setHasVersion(String value) {#setHasVersion-java.lang.String-}
```
public final void setHasVersion(String value)
@@ -737,10 +956,12 @@ public final void setHasVersion(String value)
Sets a related resource that is a version, edition, or adaptation of the described resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that is a version, edition, or adaptation of the described resource. |
+| value | java.lang.String | A related resource that is a version, edition, or adaptation of the described resource.
+ |
### getIdentifier() {#getIdentifier--}
```
@@ -750,8 +971,10 @@ public final String getIdentifier()
Gets an unambiguous reference to the resource within a given context.
+
**Returns:**
java.lang.String - An unambiguous reference to the resource within a given context.
+
### setIdentifier(String value) {#setIdentifier-java.lang.String-}
```
public final void setIdentifier(String value)
@@ -760,10 +983,12 @@ public final void setIdentifier(String value)
Sets an unambiguous reference to the resource within a given context.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An unambiguous reference to the resource within a given context. |
+| value | java.lang.String | An unambiguous reference to the resource within a given context.
+ |
### getInstructionalMethod() {#getInstructionalMethod--}
```
@@ -773,8 +998,10 @@ public final String getInstructionalMethod()
Gets a process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
+
**Returns:**
java.lang.String - A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
+
### setInstructionalMethod(String value) {#setInstructionalMethod-java.lang.String-}
```
public final void setInstructionalMethod(String value)
@@ -783,10 +1010,12 @@ public final void setInstructionalMethod(String value)
Sets a process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support. |
+| value | java.lang.String | A process, used to engender knowledge, attitudes and skills, that the described resource is designed to support.
+ |
### isFormatOf() {#isFormatOf--}
```
@@ -796,8 +1025,10 @@ public final String isFormatOf()
Gets a pre-existing related resource that is substantially the same as the described resource, but in another format.
+
**Returns:**
java.lang.String - A pre-existing related resource that is substantially the same as the described resource, but in another format.
+
### setFormatOf(String value) {#setFormatOf-java.lang.String-}
```
public final void setFormatOf(String value)
@@ -806,10 +1037,12 @@ public final void setFormatOf(String value)
Sets a pre-existing related resource that is substantially the same as the described resource, but in another format.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A pre-existing related resource that is substantially the same as the described resource, but in another format. |
+| value | java.lang.String | A pre-existing related resource that is substantially the same as the described resource, but in another format.
+ |
### isPartOf() {#isPartOf--}
```
@@ -819,8 +1052,10 @@ public final String isPartOf()
Gets a related resource in which the described resource is physically or logically included.
+
**Returns:**
java.lang.String - A related resource in which the described resource is physically or logically included.
+
### setPartOf(String value) {#setPartOf-java.lang.String-}
```
public final void setPartOf(String value)
@@ -829,10 +1064,12 @@ public final void setPartOf(String value)
Sets a related resource in which the described resource is physically or logically included.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource in which the described resource is physically or logically included. |
+| value | java.lang.String | A related resource in which the described resource is physically or logically included.
+ |
### isReferencedBy() {#isReferencedBy--}
```
@@ -842,8 +1079,10 @@ public final String isReferencedBy()
Gets a related resource that references, cites, or otherwise points to the described resource.
+
**Returns:**
java.lang.String - A related resource that references, cites, or otherwise points to the described resource.
+
### setReferencedBy(String value) {#setReferencedBy-java.lang.String-}
```
public final void setReferencedBy(String value)
@@ -852,10 +1091,12 @@ public final void setReferencedBy(String value)
Sets a related resource that references, cites, or otherwise points to the described resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that references, cites, or otherwise points to the described resource. |
+| value | java.lang.String | A related resource that references, cites, or otherwise points to the described resource.
+ |
### isReplacedBy() {#isReplacedBy--}
```
@@ -865,8 +1106,10 @@ public final String isReplacedBy()
Gets a related resource that supplants, displaces, or supersedes the described resource.
+
**Returns:**
java.lang.String - A related resource that supplants, displaces, or supersedes the described resource.
+
### setReplacedBy(String value) {#setReplacedBy-java.lang.String-}
```
public final void setReplacedBy(String value)
@@ -875,10 +1118,12 @@ public final void setReplacedBy(String value)
Sets a related resource that supplants, displaces, or supersedes the described resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that supplants, displaces, or supersedes the described resource. |
+| value | java.lang.String | A related resource that supplants, displaces, or supersedes the described resource.
+ |
### isRequiredBy() {#isRequiredBy--}
```
@@ -888,8 +1133,10 @@ public final String isRequiredBy()
Gets a related resource that requires the described resource to support its function, delivery, or coherence.
+
**Returns:**
java.lang.String - A related resource that requires the described resource to support its function, delivery, or coherence.
+
### setRequiredBy(String value) {#setRequiredBy-java.lang.String-}
```
public final void setRequiredBy(String value)
@@ -898,10 +1145,12 @@ public final void setRequiredBy(String value)
Sets a related resource that requires the described resource to support its function, delivery, or coherence.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that requires the described resource to support its function, delivery, or coherence. |
+| value | java.lang.String | A related resource that requires the described resource to support its function, delivery, or coherence.
+ |
### getIssued() {#getIssued--}
```
@@ -911,8 +1160,10 @@ public final String getIssued()
Gets the date of formal issuance of the resource.
+
**Returns:**
java.lang.String - The date of formal issuance of the resource.
+
### setIssued(String value) {#setIssued-java.lang.String-}
```
public final void setIssued(String value)
@@ -921,10 +1172,12 @@ public final void setIssued(String value)
Sets the date of formal issuance of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date of formal issuance of the resource. |
+| value | java.lang.String | The date of formal issuance of the resource.
+ |
### isVersionOf() {#isVersionOf--}
```
@@ -934,8 +1187,10 @@ public final String isVersionOf()
Gets a related resource of which the described resource is a version, edition, or adaptation.
+
**Returns:**
java.lang.String - A related resource of which the described resource is a version, edition, or adaptation.
+
### setVersionOf(String value) {#setVersionOf-java.lang.String-}
```
public final void setVersionOf(String value)
@@ -944,10 +1199,12 @@ public final void setVersionOf(String value)
Sets a related resource of which the described resource is a version, edition, or adaptation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource of which the described resource is a version, edition, or adaptation. |
+| value | java.lang.String | A related resource of which the described resource is a version, edition, or adaptation.
+ |
### getLanguage() {#getLanguage--}
```
@@ -957,8 +1214,10 @@ public final String getLanguage()
Gets the language of the resource.
+
**Returns:**
java.lang.String - The language of the resource.
+
### setLanguage(String value) {#setLanguage-java.lang.String-}
```
public final void setLanguage(String value)
@@ -967,10 +1226,12 @@ public final void setLanguage(String value)
Sets the language of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The language of the resource. |
+| value | java.lang.String | The language of the resource.
+ |
### getLicense() {#getLicense--}
```
@@ -980,8 +1241,10 @@ public final String getLicense()
Gets a legal document giving official permission to do something with the resource.
+
**Returns:**
java.lang.String - A legal document giving official permission to do something with the resource.
+
### setLicense(String value) {#setLicense-java.lang.String-}
```
public final void setLicense(String value)
@@ -990,10 +1253,12 @@ public final void setLicense(String value)
Sets a legal document giving official permission to do something with the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A legal document giving official permission to do something with the resource. |
+| value | java.lang.String | A legal document giving official permission to do something with the resource.
+ |
### getMediator() {#getMediator--}
```
@@ -1003,8 +1268,10 @@ public final String getMediator()
Gets an entity that mediates access to the resource.
+
**Returns:**
java.lang.String - An entity that mediates access to the resource.
+
### setMediator(String value) {#setMediator-java.lang.String-}
```
public final void setMediator(String value)
@@ -1013,10 +1280,12 @@ public final void setMediator(String value)
Sets an entity that mediates access to the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An entity that mediates access to the resource. |
+| value | java.lang.String | An entity that mediates access to the resource.
+ |
### getMedium() {#getMedium--}
```
@@ -1026,8 +1295,10 @@ public final String getMedium()
Gets the material or physical carrier of the resource.
+
**Returns:**
java.lang.String - The material or physical carrier of the resource.
+
### setMedium(String value) {#setMedium-java.lang.String-}
```
public final void setMedium(String value)
@@ -1036,10 +1307,12 @@ public final void setMedium(String value)
Sets the material or physical carrier of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The material or physical carrier of the resource. |
+| value | java.lang.String | The material or physical carrier of the resource.
+ |
### getModified() {#getModified--}
```
@@ -1049,8 +1322,10 @@ public final String getModified()
Gets the date on which the resource was changed.
+
**Returns:**
java.lang.String - The date on which the resource was changed.
+
### setModified(String value) {#setModified-java.lang.String-}
```
public final void setModified(String value)
@@ -1059,10 +1334,12 @@ public final void setModified(String value)
Sets the date on which the resource was changed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date on which the resource was changed. |
+| value | java.lang.String | The date on which the resource was changed.
+ |
### getProvenance() {#getProvenance--}
```
@@ -1072,8 +1349,10 @@ public final String getProvenance()
Gets a statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
+
**Returns:**
java.lang.String - A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
+
### setProvenance(String value) {#setProvenance-java.lang.String-}
```
public final void setProvenance(String value)
@@ -1082,10 +1361,12 @@ public final void setProvenance(String value)
Sets a statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation. |
+| value | java.lang.String | A statement of any changes in ownership and custody of the resource since its creation that are significant for its authenticity, integrity, and interpretation.
+ |
### getPublisher() {#getPublisher--}
```
@@ -1095,8 +1376,10 @@ public final String getPublisher()
Gets an entity responsible for making the resource available.
+
**Returns:**
java.lang.String - An entity responsible for making the resource available.
+
### setPublisher(String value) {#setPublisher-java.lang.String-}
```
public final void setPublisher(String value)
@@ -1105,10 +1388,12 @@ public final void setPublisher(String value)
Sets an entity responsible for making the resource available.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | An entity responsible for making the resource available. |
+| value | java.lang.String | An entity responsible for making the resource available.
+ |
### getReferences() {#getReferences--}
```
@@ -1118,8 +1403,10 @@ public final String getReferences()
Gets a related resource that is referenced, cited, or otherwise pointed to by the described resource.
+
**Returns:**
java.lang.String - A related resource that is referenced, cited, or otherwise pointed to by the described resource.
+
### setReferences(String value) {#setReferences-java.lang.String-}
```
public final void setReferences(String value)
@@ -1128,10 +1415,12 @@ public final void setReferences(String value)
Sets a related resource that is referenced, cited, or otherwise pointed to by the described resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that is referenced, cited, or otherwise pointed to by the described resource. |
+| value | java.lang.String | A related resource that is referenced, cited, or otherwise pointed to by the described resource.
+ |
### getRelation() {#getRelation--}
```
@@ -1141,8 +1430,10 @@ public final String getRelation()
Gets a related resource.
+
**Returns:**
java.lang.String - A related resource.
+
### setRelation(String value) {#setRelation-java.lang.String-}
```
public final void setRelation(String value)
@@ -1151,10 +1442,12 @@ public final void setRelation(String value)
Sets a related resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource. |
+| value | java.lang.String | A related resource.
+ |
### getReplaces() {#getReplaces--}
```
@@ -1164,8 +1457,10 @@ public final String getReplaces()
Gets a related resource that is supplanted, displaced, or superseded by the described resource.
+
**Returns:**
java.lang.String - A related resource that is supplanted, displaced, or superseded by the described resource.
+
### setReplaces(String value) {#setReplaces-java.lang.String-}
```
public final void setReplaces(String value)
@@ -1174,10 +1469,12 @@ public final void setReplaces(String value)
Sets a related resource that is supplanted, displaced, or superseded by the described resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that is supplanted, displaced, or superseded by the described resource. |
+| value | java.lang.String | A related resource that is supplanted, displaced, or superseded by the described resource.
+ |
### getRequires() {#getRequires--}
```
@@ -1187,8 +1484,10 @@ public final String getRequires()
Gets a related resource that is required by the described resource to support its function, delivery, or coherence.
+
**Returns:**
java.lang.String - A related resource that is required by the described resource to support its function, delivery, or coherence.
+
### setRequires(String value) {#setRequires-java.lang.String-}
```
public final void setRequires(String value)
@@ -1197,10 +1496,12 @@ public final void setRequires(String value)
Sets a related resource that is required by the described resource to support its function, delivery, or coherence.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource that is required by the described resource to support its function, delivery, or coherence. |
+| value | java.lang.String | A related resource that is required by the described resource to support its function, delivery, or coherence.
+ |
### getRights() {#getRights--}
```
@@ -1210,8 +1511,10 @@ public final String getRights()
Gets the information about rights held in and over the resource.
+
**Returns:**
java.lang.String - The information about rights held in and over the resource.
+
### setRights(String value) {#setRights-java.lang.String-}
```
public final void setRights(String value)
@@ -1220,10 +1523,12 @@ public final void setRights(String value)
Sets the information about rights held in and over the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The information about rights held in and over the resource. |
+| value | java.lang.String | The information about rights held in and over the resource.
+ |
### getRightsHolder() {#getRightsHolder--}
```
@@ -1233,8 +1538,10 @@ public final String getRightsHolder()
Gets a person or organization owning or managing rights over the resource.
+
**Returns:**
java.lang.String - A person or organization owning or managing rights over the resource.
+
### setRightsHolder(String value) {#setRightsHolder-java.lang.String-}
```
public final void setRightsHolder(String value)
@@ -1243,10 +1550,12 @@ public final void setRightsHolder(String value)
Sets a person or organization owning or managing rights over the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A person or organization owning or managing rights over the resource. |
+| value | java.lang.String | A person or organization owning or managing rights over the resource.
+ |
### getSource() {#getSource--}
```
@@ -1256,8 +1565,10 @@ public final String getSource()
Gets a related resource from which the described resource is derived.
+
**Returns:**
java.lang.String - A related resource from which the described resource is derived.
+
### setSource(String value) {#setSource-java.lang.String-}
```
public final void setSource(String value)
@@ -1266,10 +1577,12 @@ public final void setSource(String value)
Sets a related resource from which the described resource is derived.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A related resource from which the described resource is derived. |
+| value | java.lang.String | A related resource from which the described resource is derived.
+ |
### getSpatial() {#getSpatial--}
```
@@ -1279,8 +1592,10 @@ public final String getSpatial()
Gets the spatial characteristics of the resource.
+
**Returns:**
java.lang.String - The spatial characteristics of the resource.
+
### setSpatial(String value) {#setSpatial-java.lang.String-}
```
public final void setSpatial(String value)
@@ -1289,10 +1604,12 @@ public final void setSpatial(String value)
Sets the spatial characteristics of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The spatial characteristics of the resource. |
+| value | java.lang.String | The spatial characteristics of the resource.
+ |
### getSubject() {#getSubject--}
```
@@ -1302,8 +1619,10 @@ public final String getSubject()
Gets a topic of the resource.
+
**Returns:**
java.lang.String - A topic of the resource.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -1312,10 +1631,12 @@ public final void setSubject(String value)
Sets a topic of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A topic of the resource. |
+| value | java.lang.String | A topic of the resource.
+ |
### getTableOfContents() {#getTableOfContents--}
```
@@ -1325,8 +1646,10 @@ public final String getTableOfContents()
Gets a list of subunits of the resource.
+
**Returns:**
java.lang.String - A list of subunits of the resource.
+
### setTableOfContents(String value) {#setTableOfContents-java.lang.String-}
```
public final void setTableOfContents(String value)
@@ -1335,10 +1658,12 @@ public final void setTableOfContents(String value)
Sets a list of subunits of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A list of subunits of the resource. |
+| value | java.lang.String | A list of subunits of the resource.
+ |
### getTemporal() {#getTemporal--}
```
@@ -1348,8 +1673,10 @@ public final String getTemporal()
Gets the temporal characteristics of the resource.
+
**Returns:**
java.lang.String - The temporal characteristics of the resource.
+
### setTemporal(String value) {#setTemporal-java.lang.String-}
```
public final void setTemporal(String value)
@@ -1358,10 +1685,12 @@ public final void setTemporal(String value)
Sets the temporal characteristics of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The temporal characteristics of the resource. |
+| value | java.lang.String | The temporal characteristics of the resource.
+ |
### getTitle() {#getTitle--}
```
@@ -1371,8 +1700,10 @@ public final String getTitle()
Gets a name given to the resource.
+
**Returns:**
java.lang.String - A name given to the resource.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -1381,10 +1712,12 @@ public final void setTitle(String value)
Sets a name given to the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A name given to the resource. |
+| value | java.lang.String | A name given to the resource.
+ |
### getType() {#getType--}
```
@@ -1394,8 +1727,10 @@ public final String getType()
Gets the nature or genre of the resource.
+
**Returns:**
java.lang.String - The nature or genre of the resource.
+
### setType(String value) {#setType-java.lang.String-}
```
public final void setType(String value)
@@ -1404,10 +1739,12 @@ public final void setType(String value)
Sets the nature or genre of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The nature or genre of the resource. |
+| value | java.lang.String | The nature or genre of the resource.
+ |
### getValid() {#getValid--}
```
@@ -1417,8 +1754,10 @@ public final String getValid()
Gets the date (often a range) of validity of a resource.
+
**Returns:**
java.lang.String - The date (often a range) of validity of a resource.
+
### setValid(String value) {#setValid-java.lang.String-}
```
public final void setValid(String value)
@@ -1427,8 +1766,10 @@ public final void setValid(String value)
Sets the date (often a range) of validity of a resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date (often a range) of validity of a resource. |
+| value | java.lang.String | The date (often a range) of validity of a resource.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/epubrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/epubrootpackage/_index.md
index b2f6fba0ab..4700b3f161 100644
--- a/english/java/com.groupdocs.metadata.core/epubrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/epubrootpackage/_index.md
@@ -17,15 +17,18 @@ public class EpubRootPackage extends RootMetadataPackage implements IDublinCore
Represents the root package allowing working with metadata in an EPUB e-book.
+
**Learn more**
- * [Working with metadata in EPUB E-Books][]
+* [Working with metadata in EPUB E-Books](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+EPUB+E-Books)
-This code sample shows how to read EPUB format-specific metadata properties.
+
+This code sample shows how to read EPUB format-specific metadata properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputEpub)) {
> EpubRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getEpubPackage().getVersion());
@@ -34,16 +37,17 @@ This code sample shows how to read EPUB format-specific metadata properties.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in EPUB E-Books]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+EPUB+E-Books
## Methods
| Method | Description |
| --- | --- |
-| [getEpubPackage()](#getEpubPackage--) | Gets the EPUB metadata package. |
-| [getDublinCorePackage()](#getDublinCorePackage--) | Gets the Dublin Core metadata package extracted from the e-book. |
+| [getEpubPackage()](#getEpubPackage--) | Gets the EPUB metadata package.
+ |
+| [getDublinCorePackage()](#getDublinCorePackage--) | Gets the Dublin Core metadata package extracted from the e-book.
+ |
### getEpubPackage() {#getEpubPackage--}
```
public final EpubPackage getEpubPackage()
@@ -52,8 +56,10 @@ public final EpubPackage getEpubPackage()
Gets the EPUB metadata package.
+
**Returns:**
[EpubPackage](../../com.groupdocs.metadata.core/epubpackage) - The EPUB metadata package.
+
### getDublinCorePackage() {#getDublinCorePackage--}
```
public final DublinCorePackage getDublinCorePackage()
@@ -62,5 +68,7 @@ public final DublinCorePackage getDublinCorePackage()
Gets the Dublin Core metadata package extracted from the e-book.
+
**Returns:**
[DublinCorePackage](../../com.groupdocs.metadata.core/dublincorepackage) - The Dublin Core metadata package extracted from the e-book.
+
diff --git a/english/java/com.groupdocs.metadata.core/exifdictionarybasepackage/_index.md b/english/java/com.groupdocs.metadata.core/exifdictionarybasepackage/_index.md
index a7c2af1bd9..65ab00c0a5 100644
--- a/english/java/com.groupdocs.metadata.core/exifdictionarybasepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/exifdictionarybasepackage/_index.md
@@ -14,21 +14,28 @@ public abstract class ExifDictionaryBasePackage extends CustomPackage
Provides an abstract base class for EXIF metadata dictionaries.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
## Methods
| Method | Description |
| --- | --- |
-| [toList()](#toList--) | Creates a list from the package. |
-| [getByTiffTagID(TiffTagID tagId)](#getByTiffTagID-com.groupdocs.metadata.core.TiffTagID-) | Gets the TIFF tag with the specified id. |
-| [remove(TiffTagID tagId)](#remove-com.groupdocs.metadata.core.TiffTagID-) | Removes the property with the specified id. |
-| [set(TiffTag tag)](#set-com.groupdocs.metadata.core.TiffTag-) | Adds or replaces the specified tag. |
-| [clear()](#clear--) | Removes all TIFF tags stored in the package. |
+| [toList()](#toList--) | Creates a list from the package.
+ |
+| [getByTiffTagID(TiffTagID tagId)](#getByTiffTagID-com.groupdocs.metadata.core.TiffTagID-) | Gets the TIFF tag with the specified id.
+ |
+| [remove(TiffTagID tagId)](#remove-com.groupdocs.metadata.core.TiffTagID-) | Removes the property with the specified id.
+ |
+| [set(TiffTag tag)](#set-com.groupdocs.metadata.core.TiffTag-) | Adds or replaces the specified tag.
+ |
+| [clear()](#clear--) | Removes all TIFF tags stored in the package.
+ |
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -37,8 +44,10 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains all TIFF tags from the package.
+
### getByTiffTagID(TiffTagID tagId) {#getByTiffTagID-com.groupdocs.metadata.core.TiffTagID-}
```
public final TiffTag getByTiffTagID(TiffTagID tagId)
@@ -47,13 +56,16 @@ public final TiffTag getByTiffTagID(TiffTagID tagId)
Gets the TIFF tag with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagId | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The id of the tag to retrieve. |
+| tagId | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The id of the tag to retrieve.
+ |
**Returns:**
[TiffTag](../../com.groupdocs.metadata.core/tifftag) - The TiffTag with the specified tag id.
+
### remove(TiffTagID tagId) {#remove-com.groupdocs.metadata.core.TiffTagID-}
```
public final boolean remove(TiffTagID tagId)
@@ -62,13 +74,16 @@ public final boolean remove(TiffTagID tagId)
Removes the property with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagId | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | A TIFF tag id. |
+| tagId | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | A TIFF tag id.
+ |
**Returns:**
boolean - True if the specified TIFF tag is found and removed; otherwise, false.
+
### set(TiffTag tag) {#set-com.groupdocs.metadata.core.TiffTag-}
```
public final void set(TiffTag tag)
@@ -77,10 +92,12 @@ public final void set(TiffTag tag)
Adds or replaces the specified tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tag | [TiffTag](../../com.groupdocs.metadata.core/tifftag) | The tag to set. |
+| tag | [TiffTag](../../com.groupdocs.metadata.core/tifftag) | The tag to set.
+ |
### clear() {#clear--}
```
@@ -90,3 +107,4 @@ public final void clear()
Removes all TIFF tags stored in the package.
+
diff --git a/english/java/com.groupdocs.metadata.core/exifgpsaltituderef/_index.md b/english/java/com.groupdocs.metadata.core/exifgpsaltituderef/_index.md
index 279c523702..b8a2df2ddb 100644
--- a/english/java/com.groupdocs.metadata.core/exifgpsaltituderef/_index.md
+++ b/english/java/com.groupdocs.metadata.core/exifgpsaltituderef/_index.md
@@ -16,12 +16,15 @@ public enum ExifGpsAltitudeRef extends Enum implements IEnum
```
Represents a GPS altitude reference.
+
## Fields
| Field | Description |
| --- | --- |
-| [AboveSeaLevel](#AboveSeaLevel) | Above sea level. |
-| [BelowSeaLevel](#BelowSeaLevel) | Below sea level. |
+| [AboveSeaLevel](#AboveSeaLevel) | Above sea level.
+ |
+| [BelowSeaLevel](#BelowSeaLevel) | Below sea level.
+ |
## Methods
| Method | Description |
@@ -43,6 +46,7 @@ public static final ExifGpsAltitudeRef AboveSeaLevel
Above sea level.
+
### BelowSeaLevel {#BelowSeaLevel}
```
public static final ExifGpsAltitudeRef BelowSeaLevel
@@ -51,6 +55,7 @@ public static final ExifGpsAltitudeRef BelowSeaLevel
Below sea level.
+
### values() {#values--}
```
public static ExifGpsAltitudeRef[] values()
@@ -109,6 +114,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -119,6 +125,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -134,6 +141,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -149,6 +157,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -159,5 +168,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/exifgpspackage/_index.md b/english/java/com.groupdocs.metadata.core/exifgpspackage/_index.md
index c29bb5f64f..379d1faa71 100644
--- a/english/java/com.groupdocs.metadata.core/exifgpspackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/exifgpspackage/_index.md
@@ -14,90 +14,164 @@ public final class ExifGpsPackage extends ExifDictionaryBasePackage
Represents GPS metadata in an EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [ExifGpsPackage()](#ExifGpsPackage--) | Initializes a new instance of the ExifGpsPackage class. |
+| [ExifGpsPackage()](#ExifGpsPackage--) | Initializes a new instance of the
+ExifGpsPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAltitude()](#getAltitude--) | Gets the altitude based on the reference in AltitudeRef . |
-| [setAltitude(TiffRational value)](#setAltitude-com.groupdocs.metadata.core.TiffRational-) | Sets the altitude based on the reference in AltitudeRef . |
-| [getAltitudeRef()](#getAltitudeRef--) | Gets the altitude used as the reference altitude. |
-| [setAltitudeRef(ExifGpsAltitudeRef value)](#setAltitudeRef-com.groupdocs.metadata.core.ExifGpsAltitudeRef-) | Sets the altitude used as the reference altitude. |
-| [getAreaInformation()](#getAreaInformation--) | Gets the character string recording the name of the GPS area. |
-| [setAreaInformation(byte[] value)](#setAreaInformation-byte---) | Sets the character string recording the name of the GPS area. |
-| [getDateStamp()](#getDateStamp--) | Gets the character string recording date and time information relative to UTC (Coordinated Universal Time). |
-| [setDateStamp(String value)](#setDateStamp-java.lang.String-) | Sets the character string recording date and time information relative to UTC (Coordinated Universal Time). |
-| [getDestBearing()](#getDestBearing--) | Gets the GPS bearing to the destination point. |
-| [setDestBearing(TiffRational value)](#setDestBearing-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS bearing to the destination point. |
-| [getDestBearingRef()](#getDestBearingRef--) | Gets the GPS reference used for giving the bearing to the destination point. |
-| [setDestBearingRef(String value)](#setDestBearingRef-java.lang.String-) | Sets the GPS reference used for giving the bearing to the destination point. |
-| [getDestDistance()](#getDestDistance--) | Gets the GPS distance to the destination point. |
-| [setDestDistance(TiffRational value)](#setDestDistance-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS distance to the destination point. |
-| [getDestDistanceRef()](#getDestDistanceRef--) | Gets the GPS unit used to express the distance to the destination point. |
-| [setDestDistanceRef(String value)](#setDestDistanceRef-java.lang.String-) | Sets the GPS unit used to express the distance to the destination point. |
-| [getDestLatitude()](#getDestLatitude--) | Gets the GPS latitude of the destination point. |
-| [setDestLatitude(TiffRational[] value)](#setDestLatitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS latitude of the destination point. |
-| [getDestLatitudeRef()](#getDestLatitudeRef--) | Gets the GPS value which indicates whether the latitude of the destination point is north or south latitude. |
-| [setDestLatitudeRef(String value)](#setDestLatitudeRef-java.lang.String-) | Sets the GPS value which indicates whether the latitude of the destination point is north or south latitude. |
-| [getDestLongitude()](#getDestLongitude--) | Gets the GPS longitude of the destination point. |
-| [setDestLongitude(TiffRational[] value)](#setDestLongitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS longitude of the destination point. |
-| [getDestLongitudeRef()](#getDestLongitudeRef--) | Gets the GPS value which indicates whether the longitude of the destination point is east or west longitude. |
-| [setDestLongitudeRef(String value)](#setDestLongitudeRef-java.lang.String-) | Sets the GPS value which indicates whether the longitude of the destination point is east or west longitude. |
-| [getDifferential()](#getDifferential--) | Gets a GPS value which indicates whether differential correction is applied to the GPS receiver. |
-| [setDifferential(Integer value)](#setDifferential-java.lang.Integer-) | Sets a GPS value which indicates whether differential correction is applied to the GPS receiver. |
-| [getDataDegreeOfPrecision()](#getDataDegreeOfPrecision--) | Gets the GPS DOP (data degree of precision). |
-| [setDataDegreeOfPrecision(TiffRational value)](#setDataDegreeOfPrecision-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS DOP (data degree of precision). |
-| [getImgDirection()](#getImgDirection--) | Gets the GPS direction of the image when it was captured. |
-| [setImgDirection(TiffRational value)](#setImgDirection-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS direction of the image when it was captured. |
-| [getImgDirectionRef()](#getImgDirectionRef--) | Gets the GPS reference for giving the direction of the image when it is captured. |
-| [setImgDirectionRef(String value)](#setImgDirectionRef-java.lang.String-) | Sets the GPS reference for giving the direction of the image when it is captured. |
-| [getLatitude()](#getLatitude--) | Gets the GPS latitude. |
-| [setLatitude(TiffRational[] value)](#setLatitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS latitude. |
-| [getLatitudeRef()](#getLatitudeRef--) | Gets a GPS value indicating whether the latitude is north or south latitude. |
-| [setLatitudeRef(String value)](#setLatitudeRef-java.lang.String-) | Sets a GPS value indicating whether the latitude is north or south latitude. |
-| [getLongitude()](#getLongitude--) | Gets the GPS longitude. |
-| [setLongitude(TiffRational[] value)](#setLongitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS longitude. |
-| [getLongitudeRef()](#getLongitudeRef--) | Gets a GPS value indicating whether the longitude is east or west longitude. |
-| [setLongitudeRef(String value)](#setLongitudeRef-java.lang.String-) | Sets a GPS value indicating whether the longitude is east or west longitude. |
-| [getMapDatum()](#getMapDatum--) | Gets the geodetic survey data used by the GPS receiver. |
-| [setMapDatum(String value)](#setMapDatum-java.lang.String-) | Sets the geodetic survey data used by the GPS receiver. |
-| [getMeasureMode()](#getMeasureMode--) | Gets the GPS measurement mode. |
-| [setMeasureMode(String value)](#setMeasureMode-java.lang.String-) | Sets the GPS measurement mode. |
-| [getProcessingMethod()](#getProcessingMethod--) | Gets a character string recording the name of the method used for location finding. |
-| [setProcessingMethod(byte[] value)](#setProcessingMethod-byte---) | Sets a character string recording the name of the method used for location finding. |
-| [getSatellites()](#getSatellites--) | Gets the GPS satellites used for measurements. |
-| [setSatellites(String value)](#setSatellites-java.lang.String-) | Sets the GPS satellites used for measurements. |
-| [getSpeed()](#getSpeed--) | Gets the speed of GPS receiver movement. |
-| [setSpeed(TiffRational value)](#setSpeed-com.groupdocs.metadata.core.TiffRational-) | Sets the speed of GPS receiver movement. |
-| [getSpeedRef()](#getSpeedRef--) | Gets the unit used to express the GPS receiver speed of movement. |
-| [setSpeedRef(String value)](#setSpeedRef-java.lang.String-) | Sets the unit used to express the GPS receiver speed of movement. |
-| [getStatus()](#getStatus--) | Gets the status of the GPS receiver when the image is recorded. |
-| [setStatus(String value)](#setStatus-java.lang.String-) | Sets the status of the GPS receiver when the image is recorded. |
-| [getTimeStamp()](#getTimeStamp--) | Gets the time as UTC (Coordinated Universal Time). |
-| [setTimeStamp(TiffRational[] value)](#setTimeStamp-com.groupdocs.metadata.core.TiffRational---) | Sets the time as UTC (Coordinated Universal Time). |
-| [getGpsTrack()](#getGpsTrack--) | Gets the direction of GPS receiver movement. |
-| [setGpsTrack(TiffRational value)](#setGpsTrack-com.groupdocs.metadata.core.TiffRational-) | Sets the direction of GPS receiver movement. |
-| [getTrackRef()](#getTrackRef--) | Gets the reference for giving the direction of GPS receiver movement. |
-| [setTrackRef(String value)](#setTrackRef-java.lang.String-) | Sets the reference for giving the direction of GPS receiver movement. |
-| [getVersionID()](#getVersionID--) | Gets the version of GPS IFD. |
-| [setVersionID(byte[] value)](#setVersionID-byte---) | Sets the version of GPS IFD. |
+| [getAltitude()](#getAltitude--) | Gets the altitude based on the reference in
+AltitudeRef
+.
+ |
+| [setAltitude(TiffRational value)](#setAltitude-com.groupdocs.metadata.core.TiffRational-) | Sets the altitude based on the reference in
+AltitudeRef
+.
+ |
+| [getAltitudeRef()](#getAltitudeRef--) | Gets the altitude used as the reference altitude.
+ |
+| [setAltitudeRef(ExifGpsAltitudeRef value)](#setAltitudeRef-com.groupdocs.metadata.core.ExifGpsAltitudeRef-) | Sets the altitude used as the reference altitude.
+ |
+| [getAreaInformation()](#getAreaInformation--) | Gets the character string recording the name of the GPS area.
+ |
+| [setAreaInformation(byte[] value)](#setAreaInformation-byte---) | Sets the character string recording the name of the GPS area.
+ |
+| [getDateStamp()](#getDateStamp--) | Gets the character string recording date and time information relative to UTC (Coordinated Universal Time).
+ |
+| [setDateStamp(String value)](#setDateStamp-java.lang.String-) | Sets the character string recording date and time information relative to UTC (Coordinated Universal Time).
+ |
+| [getDestBearing()](#getDestBearing--) | Gets the GPS bearing to the destination point.
+ |
+| [setDestBearing(TiffRational value)](#setDestBearing-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS bearing to the destination point.
+ |
+| [getDestBearingRef()](#getDestBearingRef--) | Gets the GPS reference used for giving the bearing to the destination point.
+ |
+| [setDestBearingRef(String value)](#setDestBearingRef-java.lang.String-) | Sets the GPS reference used for giving the bearing to the destination point.
+ |
+| [getDestDistance()](#getDestDistance--) | Gets the GPS distance to the destination point.
+ |
+| [setDestDistance(TiffRational value)](#setDestDistance-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS distance to the destination point.
+ |
+| [getDestDistanceRef()](#getDestDistanceRef--) | Gets the GPS unit used to express the distance to the destination point.
+ |
+| [setDestDistanceRef(String value)](#setDestDistanceRef-java.lang.String-) | Sets the GPS unit used to express the distance to the destination point.
+ |
+| [getDestLatitude()](#getDestLatitude--) | Gets the GPS latitude of the destination point.
+ |
+| [setDestLatitude(TiffRational[] value)](#setDestLatitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS latitude of the destination point.
+ |
+| [getDestLatitudeRef()](#getDestLatitudeRef--) | Gets the GPS value which indicates whether the latitude of the destination point is north or south latitude.
+ |
+| [setDestLatitudeRef(String value)](#setDestLatitudeRef-java.lang.String-) | Sets the GPS value which indicates whether the latitude of the destination point is north or south latitude.
+ |
+| [getDestLongitude()](#getDestLongitude--) | Gets the GPS longitude of the destination point.
+ |
+| [setDestLongitude(TiffRational[] value)](#setDestLongitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS longitude of the destination point.
+ |
+| [getDestLongitudeRef()](#getDestLongitudeRef--) | Gets the GPS value which indicates whether the longitude of the destination point is east or west longitude.
+ |
+| [setDestLongitudeRef(String value)](#setDestLongitudeRef-java.lang.String-) | Sets the GPS value which indicates whether the longitude of the destination point is east or west longitude.
+ |
+| [getDifferential()](#getDifferential--) | Gets a GPS value which indicates whether differential correction is applied to the GPS receiver.
+ |
+| [setDifferential(Integer value)](#setDifferential-java.lang.Integer-) | Sets a GPS value which indicates whether differential correction is applied to the GPS receiver.
+ |
+| [getDataDegreeOfPrecision()](#getDataDegreeOfPrecision--) | Gets the GPS DOP (data degree of precision).
+ |
+| [setDataDegreeOfPrecision(TiffRational value)](#setDataDegreeOfPrecision-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS DOP (data degree of precision).
+ |
+| [getImgDirection()](#getImgDirection--) | Gets the GPS direction of the image when it was captured.
+ |
+| [setImgDirection(TiffRational value)](#setImgDirection-com.groupdocs.metadata.core.TiffRational-) | Sets the GPS direction of the image when it was captured.
+ |
+| [getImgDirectionRef()](#getImgDirectionRef--) | Gets the GPS reference for giving the direction of the image when it is captured.
+ |
+| [setImgDirectionRef(String value)](#setImgDirectionRef-java.lang.String-) | Sets the GPS reference for giving the direction of the image when it is captured.
+ |
+| [getLatitude()](#getLatitude--) | Gets the GPS latitude.
+ |
+| [setLatitude(TiffRational[] value)](#setLatitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS latitude.
+ |
+| [getLatitudeRef()](#getLatitudeRef--) | Gets a GPS value indicating whether the latitude is north or south latitude.
+ |
+| [setLatitudeRef(String value)](#setLatitudeRef-java.lang.String-) | Sets a GPS value indicating whether the latitude is north or south latitude.
+ |
+| [getLongitude()](#getLongitude--) | Gets the GPS longitude.
+ |
+| [setLongitude(TiffRational[] value)](#setLongitude-com.groupdocs.metadata.core.TiffRational---) | Sets the GPS longitude.
+ |
+| [getLongitudeRef()](#getLongitudeRef--) | Gets a GPS value indicating whether the longitude is east or west longitude.
+ |
+| [setLongitudeRef(String value)](#setLongitudeRef-java.lang.String-) | Sets a GPS value indicating whether the longitude is east or west longitude.
+ |
+| [getMapDatum()](#getMapDatum--) | Gets the geodetic survey data used by the GPS receiver.
+ |
+| [setMapDatum(String value)](#setMapDatum-java.lang.String-) | Sets the geodetic survey data used by the GPS receiver.
+ |
+| [getMeasureMode()](#getMeasureMode--) | Gets the GPS measurement mode.
+ |
+| [setMeasureMode(String value)](#setMeasureMode-java.lang.String-) | Sets the GPS measurement mode.
+ |
+| [getProcessingMethod()](#getProcessingMethod--) | Gets a character string recording the name of the method used for location finding.
+ |
+| [setProcessingMethod(byte[] value)](#setProcessingMethod-byte---) | Sets a character string recording the name of the method used for location finding.
+ |
+| [getSatellites()](#getSatellites--) | Gets the GPS satellites used for measurements.
+ |
+| [setSatellites(String value)](#setSatellites-java.lang.String-) | Sets the GPS satellites used for measurements.
+ |
+| [getSpeed()](#getSpeed--) | Gets the speed of GPS receiver movement.
+ |
+| [setSpeed(TiffRational value)](#setSpeed-com.groupdocs.metadata.core.TiffRational-) | Sets the speed of GPS receiver movement.
+ |
+| [getSpeedRef()](#getSpeedRef--) | Gets the unit used to express the GPS receiver speed of movement.
+ |
+| [setSpeedRef(String value)](#setSpeedRef-java.lang.String-) | Sets the unit used to express the GPS receiver speed of movement.
+ |
+| [getStatus()](#getStatus--) | Gets the status of the GPS receiver when the image is recorded.
+ |
+| [setStatus(String value)](#setStatus-java.lang.String-) | Sets the status of the GPS receiver when the image is recorded.
+ |
+| [getTimeStamp()](#getTimeStamp--) | Gets the time as UTC (Coordinated Universal Time).
+ |
+| [setTimeStamp(TiffRational[] value)](#setTimeStamp-com.groupdocs.metadata.core.TiffRational---) | Sets the time as UTC (Coordinated Universal Time).
+ |
+| [getGpsTrack()](#getGpsTrack--) | Gets the direction of GPS receiver movement.
+ |
+| [setGpsTrack(TiffRational value)](#setGpsTrack-com.groupdocs.metadata.core.TiffRational-) | Sets the direction of GPS receiver movement.
+ |
+| [getTrackRef()](#getTrackRef--) | Gets the reference for giving the direction of GPS receiver movement.
+ |
+| [setTrackRef(String value)](#setTrackRef-java.lang.String-) | Sets the reference for giving the direction of GPS receiver movement.
+ |
+| [getVersionID()](#getVersionID--) | Gets the version of GPS IFD.
+ |
+| [setVersionID(byte[] value)](#setVersionID-byte---) | Sets the version of GPS IFD.
+ |
### ExifGpsPackage() {#ExifGpsPackage--}
```
public ExifGpsPackage()
```
-Initializes a new instance of the ExifGpsPackage class.
+Initializes a new instance of the
+ExifGpsPackage
+ class.
+
### getAltitude() {#getAltitude--}
```
@@ -105,22 +179,32 @@ public final TiffRational getAltitude()
```
-Gets the altitude based on the reference in AltitudeRef . The reference unit is meters.
+Gets the altitude based on the reference in
+AltitudeRef
+.
+The reference unit is meters.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The altitude based on the reference in AltitudeRef .
+
### setAltitude(TiffRational value) {#setAltitude-com.groupdocs.metadata.core.TiffRational-}
```
public final void setAltitude(TiffRational value)
```
-Sets the altitude based on the reference in AltitudeRef . The reference unit is meters.
+Sets the altitude based on the reference in
+AltitudeRef
+.
+The reference unit is meters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The altitude based on the reference in AltitudeRef . |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The altitude based on the reference in AltitudeRef .
+ |
### getAltitudeRef() {#getAltitudeRef--}
```
@@ -128,22 +212,32 @@ public final ExifGpsAltitudeRef getAltitudeRef()
```
-Gets the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given. If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the Altitude tag.
+Gets the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given.
+If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the
+Altitude
+ tag.
+
**Returns:**
[ExifGpsAltitudeRef](../../com.groupdocs.metadata.core/exifgpsaltituderef) - The altitude used as the reference altitude
+
### setAltitudeRef(ExifGpsAltitudeRef value) {#setAltitudeRef-com.groupdocs.metadata.core.ExifGpsAltitudeRef-}
```
public final void setAltitudeRef(ExifGpsAltitudeRef value)
```
-Sets the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given. If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the Altitude tag.
+Sets the altitude used as the reference altitude. If the reference is sea level and the altitude is above sea level, 0 is given.
+If the altitude is below sea level, a value of 1 is given and the altitude is indicated as an absolute value in the
+Altitude
+ tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [ExifGpsAltitudeRef](../../com.groupdocs.metadata.core/exifgpsaltituderef) | The altitude used as the reference altitude |
+| value | [ExifGpsAltitudeRef](../../com.groupdocs.metadata.core/exifgpsaltituderef) | The altitude used as the reference altitude
+ |
### getAreaInformation() {#getAreaInformation--}
```
@@ -153,8 +247,10 @@ public final byte[] getAreaInformation()
Gets the character string recording the name of the GPS area. The first byte indicates the character code used, and this is followed by the name of the GPS area.
+
**Returns:**
byte[] - The character string recording the name of the GPS area.
+
### setAreaInformation(byte[] value) {#setAreaInformation-byte---}
```
public final void setAreaInformation(byte[] value)
@@ -163,10 +259,12 @@ public final void setAreaInformation(byte[] value)
Sets the character string recording the name of the GPS area. The first byte indicates the character code used, and this is followed by the name of the GPS area.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | The character string recording the name of the GPS area. |
+| value | byte[] | The character string recording the name of the GPS area.
+ |
### getDateStamp() {#getDateStamp--}
```
@@ -176,8 +274,10 @@ public final String getDateStamp()
Gets the character string recording date and time information relative to UTC (Coordinated Universal Time). The format is YYYY:MM:DD.
+
**Returns:**
java.lang.String - The character string recording date and time information relative to UTC (Coordinated Universal Time). The format is YYYY:MM:DD.
+
### setDateStamp(String value) {#setDateStamp-java.lang.String-}
```
public final void setDateStamp(String value)
@@ -186,10 +286,12 @@ public final void setDateStamp(String value)
Sets the character string recording date and time information relative to UTC (Coordinated Universal Time). The format is YYYY:MM:DD.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The character string recording date and time information relative to UTC (Coordinated Universal Time). The format is YYYY:MM:DD. |
+| value | java.lang.String | The character string recording date and time information relative to UTC (Coordinated Universal Time). The format is YYYY:MM:DD.
+ |
### getDestBearing() {#getDestBearing--}
```
@@ -197,22 +299,28 @@ public final TiffRational getDestBearing()
```
-Gets the GPS bearing to the destination point. The range of values is from 0.00 to 359.99.
+Gets the GPS bearing to the destination point.
+The range of values is from 0.00 to 359.99.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The bearing to the destination point.
+
### setDestBearing(TiffRational value) {#setDestBearing-com.groupdocs.metadata.core.TiffRational-}
```
public final void setDestBearing(TiffRational value)
```
-Sets the GPS bearing to the destination point. The range of values is from 0.00 to 359.99.
+Sets the GPS bearing to the destination point.
+The range of values is from 0.00 to 359.99.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The bearing to the destination point. |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The bearing to the destination point.
+ |
### getDestBearingRef() {#getDestBearingRef--}
```
@@ -220,22 +328,28 @@ public final String getDestBearingRef()
```
-Gets the GPS reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction.
+Gets the GPS reference used for giving the bearing to the destination point.
+'T' denotes true direction and 'M' is magnetic direction.
+
**Returns:**
java.lang.String - The GPS reference used for giving the bearing to the destination point.
+
### setDestBearingRef(String value) {#setDestBearingRef-java.lang.String-}
```
public final void setDestBearingRef(String value)
```
-Sets the GPS reference used for giving the bearing to the destination point. 'T' denotes true direction and 'M' is magnetic direction.
+Sets the GPS reference used for giving the bearing to the destination point.
+'T' denotes true direction and 'M' is magnetic direction.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The GPS reference used for giving the bearing to the destination point. |
+| value | java.lang.String | The GPS reference used for giving the bearing to the destination point.
+ |
### getDestDistance() {#getDestDistance--}
```
@@ -245,8 +359,10 @@ public final TiffRational getDestDistance()
Gets the GPS distance to the destination point.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The distance to the destination point.
+
### setDestDistance(TiffRational value) {#setDestDistance-com.groupdocs.metadata.core.TiffRational-}
```
public final void setDestDistance(TiffRational value)
@@ -255,10 +371,12 @@ public final void setDestDistance(TiffRational value)
Sets the GPS distance to the destination point.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The distance to the destination point. |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The distance to the destination point.
+ |
### getDestDistanceRef() {#getDestDistanceRef--}
```
@@ -266,22 +384,28 @@ public final String getDestDistanceRef()
```
-Gets the GPS unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots.
+Gets the GPS unit used to express the distance to the destination point.
+'K', 'M' and 'N' represent kilometers, miles and knots.
+
**Returns:**
java.lang.String - The GPS unit used to express the distance to the destination point.
+
### setDestDistanceRef(String value) {#setDestDistanceRef-java.lang.String-}
```
public final void setDestDistanceRef(String value)
```
-Sets the GPS unit used to express the distance to the destination point. 'K', 'M' and 'N' represent kilometers, miles and knots.
+Sets the GPS unit used to express the distance to the destination point.
+'K', 'M' and 'N' represent kilometers, miles and knots.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The GPS unit used to express the distance to the destination point. |
+| value | java.lang.String | The GPS unit used to express the distance to the destination point.
+ |
### getDestLatitude() {#getDestLatitude--}
```
@@ -291,8 +415,10 @@ public final TiffRational[] getDestLatitude()
Gets the GPS latitude of the destination point.
+
**Returns:**
com.groupdocs.metadata.core.TiffRational[] - The latitude of the destination point.
+
### setDestLatitude(TiffRational[] value) {#setDestLatitude-com.groupdocs.metadata.core.TiffRational---}
```
public final void setDestLatitude(TiffRational[] value)
@@ -301,10 +427,12 @@ public final void setDestLatitude(TiffRational[] value)
Sets the GPS latitude of the destination point.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The latitude of the destination point. |
+| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The latitude of the destination point.
+ |
### getDestLatitudeRef() {#getDestLatitudeRef--}
```
@@ -312,22 +440,28 @@ public final String getDestLatitudeRef()
```
-Gets the GPS value which indicates whether the latitude of the destination point is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude.
+Gets the GPS value which indicates whether the latitude of the destination point is north or south latitude.
+The ASCII value 'N' indicates north latitude, and 'S' is south latitude.
+
**Returns:**
java.lang.String - The GPS value which indicates whether the latitude of the destination point is north or south latitude.
+
### setDestLatitudeRef(String value) {#setDestLatitudeRef-java.lang.String-}
```
public final void setDestLatitudeRef(String value)
```
-Sets the GPS value which indicates whether the latitude of the destination point is north or south latitude. The ASCII value 'N' indicates north latitude, and 'S' is south latitude.
+Sets the GPS value which indicates whether the latitude of the destination point is north or south latitude.
+The ASCII value 'N' indicates north latitude, and 'S' is south latitude.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The GPS value which indicates whether the latitude of the destination point is north or south latitude. |
+| value | java.lang.String | The GPS value which indicates whether the latitude of the destination point is north or south latitude.
+ |
### getDestLongitude() {#getDestLongitude--}
```
@@ -337,8 +471,10 @@ public final TiffRational[] getDestLongitude()
Gets the GPS longitude of the destination point.
+
**Returns:**
com.groupdocs.metadata.core.TiffRational[] - The GPS longitude of the destination point.
+
### setDestLongitude(TiffRational[] value) {#setDestLongitude-com.groupdocs.metadata.core.TiffRational---}
```
public final void setDestLongitude(TiffRational[] value)
@@ -347,10 +483,12 @@ public final void setDestLongitude(TiffRational[] value)
Sets the GPS longitude of the destination point.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The GPS longitude of the destination point. |
+| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The GPS longitude of the destination point.
+ |
### getDestLongitudeRef() {#getDestLongitudeRef--}
```
@@ -358,22 +496,28 @@ public final String getDestLongitudeRef()
```
-Gets the GPS value which indicates whether the longitude of the destination point is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude.
+Gets the GPS value which indicates whether the longitude of the destination point is east or west longitude.
+ASCII 'E' indicates east longitude, and 'W' is west longitude.
+
**Returns:**
java.lang.String - The GPS value which indicates whether the longitude of the destination point is east or west longitude.
+
### setDestLongitudeRef(String value) {#setDestLongitudeRef-java.lang.String-}
```
public final void setDestLongitudeRef(String value)
```
-Sets the GPS value which indicates whether the longitude of the destination point is east or west longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude.
+Sets the GPS value which indicates whether the longitude of the destination point is east or west longitude.
+ASCII 'E' indicates east longitude, and 'W' is west longitude.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The GPS value which indicates whether the longitude of the destination point is east or west longitude. |
+| value | java.lang.String | The GPS value which indicates whether the longitude of the destination point is east or west longitude.
+ |
### getDifferential() {#getDifferential--}
```
@@ -383,8 +527,10 @@ public final Integer getDifferential()
Gets a GPS value which indicates whether differential correction is applied to the GPS receiver.
+
**Returns:**
java.lang.Integer - A GPS value which indicates whether differential correction is applied to the GPS receiver.
+
### setDifferential(Integer value) {#setDifferential-java.lang.Integer-}
```
public final void setDifferential(Integer value)
@@ -393,10 +539,12 @@ public final void setDifferential(Integer value)
Sets a GPS value which indicates whether differential correction is applied to the GPS receiver.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | A GPS value which indicates whether differential correction is applied to the GPS receiver. |
+| value | java.lang.Integer | A GPS value which indicates whether differential correction is applied to the GPS receiver.
+ |
### getDataDegreeOfPrecision() {#getDataDegreeOfPrecision--}
```
@@ -404,22 +552,28 @@ public final TiffRational getDataDegreeOfPrecision()
```
-Gets the GPS DOP (data degree of precision). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.
+Gets the GPS DOP (data degree of precision).
+An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The data degree of precision.
+
### setDataDegreeOfPrecision(TiffRational value) {#setDataDegreeOfPrecision-com.groupdocs.metadata.core.TiffRational-}
```
public final void setDataDegreeOfPrecision(TiffRational value)
```
-Sets the GPS DOP (data degree of precision). An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.
+Sets the GPS DOP (data degree of precision).
+An HDOP value is written during two-dimensional measurement, and PDOP during three-dimensional measurement.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The data degree of precision. |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The data degree of precision.
+ |
### getImgDirection() {#getImgDirection--}
```
@@ -427,22 +581,28 @@ public final TiffRational getImgDirection()
```
-Gets the GPS direction of the image when it was captured. The range of values is from 0.00 to 359.99.
+Gets the GPS direction of the image when it was captured.
+The range of values is from 0.00 to 359.99.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The GPS direction of the image when it was captured.
+
### setImgDirection(TiffRational value) {#setImgDirection-com.groupdocs.metadata.core.TiffRational-}
```
public final void setImgDirection(TiffRational value)
```
-Sets the GPS direction of the image when it was captured. The range of values is from 0.00 to 359.99.
+Sets the GPS direction of the image when it was captured.
+The range of values is from 0.00 to 359.99.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The GPS direction of the image when it was captured. |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The GPS direction of the image when it was captured.
+ |
### getImgDirectionRef() {#getImgDirectionRef--}
```
@@ -450,22 +610,28 @@ public final String getImgDirectionRef()
```
-Gets the GPS reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction.
+Gets the GPS reference for giving the direction of the image when it is captured.
+'T' denotes true direction and 'M' is magnetic direction.
+
**Returns:**
java.lang.String - The GPS reference for giving the direction of the image when it is captured.
+
### setImgDirectionRef(String value) {#setImgDirectionRef-java.lang.String-}
```
public final void setImgDirectionRef(String value)
```
-Sets the GPS reference for giving the direction of the image when it is captured. 'T' denotes true direction and 'M' is magnetic direction.
+Sets the GPS reference for giving the direction of the image when it is captured.
+'T' denotes true direction and 'M' is magnetic direction.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The GPS reference for giving the direction of the image when it is captured. |
+| value | java.lang.String | The GPS reference for giving the direction of the image when it is captured.
+ |
### getLatitude() {#getLatitude--}
```
@@ -475,8 +641,10 @@ public final TiffRational[] getLatitude()
Gets the GPS latitude.
+
**Returns:**
com.groupdocs.metadata.core.TiffRational[] - The latitude.
+
### setLatitude(TiffRational[] value) {#setLatitude-com.groupdocs.metadata.core.TiffRational---}
```
public final void setLatitude(TiffRational[] value)
@@ -485,10 +653,12 @@ public final void setLatitude(TiffRational[] value)
Sets the GPS latitude.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The latitude. |
+| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The latitude.
+ |
### getLatitudeRef() {#getLatitudeRef--}
```
@@ -498,8 +668,10 @@ public final String getLatitudeRef()
Gets a GPS value indicating whether the latitude is north or south latitude.
+
**Returns:**
java.lang.String - A GPS value indicating whether the latitude is north or south latitude.
+
### setLatitudeRef(String value) {#setLatitudeRef-java.lang.String-}
```
public final void setLatitudeRef(String value)
@@ -508,10 +680,12 @@ public final void setLatitudeRef(String value)
Sets a GPS value indicating whether the latitude is north or south latitude.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A GPS value indicating whether the latitude is north or south latitude. |
+| value | java.lang.String | A GPS value indicating whether the latitude is north or south latitude.
+ |
### getLongitude() {#getLongitude--}
```
@@ -521,8 +695,10 @@ public final TiffRational[] getLongitude()
Gets the GPS longitude.
+
**Returns:**
com.groupdocs.metadata.core.TiffRational[] - The longitude.
+
### setLongitude(TiffRational[] value) {#setLongitude-com.groupdocs.metadata.core.TiffRational---}
```
public final void setLongitude(TiffRational[] value)
@@ -531,10 +707,12 @@ public final void setLongitude(TiffRational[] value)
Sets the GPS longitude.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The longitude. |
+| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The longitude.
+ |
### getLongitudeRef() {#getLongitudeRef--}
```
@@ -544,8 +722,10 @@ public final String getLongitudeRef()
Gets a GPS value indicating whether the longitude is east or west longitude.
+
**Returns:**
java.lang.String - A GPS value indicating whether the longitude is east or west longitude.
+
### setLongitudeRef(String value) {#setLongitudeRef-java.lang.String-}
```
public final void setLongitudeRef(String value)
@@ -554,10 +734,12 @@ public final void setLongitudeRef(String value)
Sets a GPS value indicating whether the longitude is east or west longitude.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A GPS value indicating whether the longitude is east or west longitude. |
+| value | java.lang.String | A GPS value indicating whether the longitude is east or west longitude.
+ |
### getMapDatum() {#getMapDatum--}
```
@@ -567,8 +749,10 @@ public final String getMapDatum()
Gets the geodetic survey data used by the GPS receiver.
+
**Returns:**
java.lang.String - The geodetic survey data used by the GPS receiver.
+
### setMapDatum(String value) {#setMapDatum-java.lang.String-}
```
public final void setMapDatum(String value)
@@ -577,10 +761,12 @@ public final void setMapDatum(String value)
Sets the geodetic survey data used by the GPS receiver.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The geodetic survey data used by the GPS receiver. |
+| value | java.lang.String | The geodetic survey data used by the GPS receiver.
+ |
### getMeasureMode() {#getMeasureMode--}
```
@@ -590,8 +776,10 @@ public final String getMeasureMode()
Gets the GPS measurement mode.
+
**Returns:**
java.lang.String - The measure mode.
+
### setMeasureMode(String value) {#setMeasureMode-java.lang.String-}
```
public final void setMeasureMode(String value)
@@ -600,10 +788,12 @@ public final void setMeasureMode(String value)
Sets the GPS measurement mode.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The measure mode. |
+| value | java.lang.String | The measure mode.
+ |
### getProcessingMethod() {#getProcessingMethod--}
```
@@ -611,22 +801,28 @@ public final byte[] getProcessingMethod()
```
-Gets a character string recording the name of the method used for location finding. The first byte indicates the character code used, and this is followed by the name of the method.
+Gets a character string recording the name of the method used for location finding.
+The first byte indicates the character code used, and this is followed by the name of the method.
+
**Returns:**
byte[] - A character string recording the name of the method used for location finding.
+
### setProcessingMethod(byte[] value) {#setProcessingMethod-byte---}
```
public final void setProcessingMethod(byte[] value)
```
-Sets a character string recording the name of the method used for location finding. The first byte indicates the character code used, and this is followed by the name of the method.
+Sets a character string recording the name of the method used for location finding.
+The first byte indicates the character code used, and this is followed by the name of the method.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | A character string recording the name of the method used for location finding. |
+| value | byte[] | A character string recording the name of the method used for location finding.
+ |
### getSatellites() {#getSatellites--}
```
@@ -634,22 +830,32 @@ public final String getSatellites()
```
-Gets the GPS satellites used for measurements. This tag can be used to describe the number of satellites, their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL.
+Gets the GPS satellites used for measurements.
+This tag can be used to describe the number of satellites,
+their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not
+specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL.
+
**Returns:**
java.lang.String - The GPS satellites used for measurements.
+
### setSatellites(String value) {#setSatellites-java.lang.String-}
```
public final void setSatellites(String value)
```
-Sets the GPS satellites used for measurements. This tag can be used to describe the number of satellites, their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL.
+Sets the GPS satellites used for measurements.
+This tag can be used to describe the number of satellites,
+their ID number, angle of elevation, azimuth, SNR and other information in ASCII notation. The format is not
+specified. If the GPS receiver is incapable of taking measurements, value of the tag shall be set to NULL.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The GPS satellites used for measurements. |
+| value | java.lang.String | The GPS satellites used for measurements.
+ |
### getSpeed() {#getSpeed--}
```
@@ -659,8 +865,10 @@ public final TiffRational getSpeed()
Gets the speed of GPS receiver movement.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The speed of GPS receiver movement.
+
### setSpeed(TiffRational value) {#setSpeed-com.groupdocs.metadata.core.TiffRational-}
```
public final void setSpeed(TiffRational value)
@@ -669,10 +877,12 @@ public final void setSpeed(TiffRational value)
Sets the speed of GPS receiver movement.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The speed of GPS receiver movement. |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The speed of GPS receiver movement.
+ |
### getSpeedRef() {#getSpeedRef--}
```
@@ -680,22 +890,28 @@ public final String getSpeedRef()
```
-Gets the unit used to express the GPS receiver speed of movement. 'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.
+Gets the unit used to express the GPS receiver speed of movement.
+'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.
+
**Returns:**
java.lang.String - The unit used to express the GPS receiver speed of movement.
+
### setSpeedRef(String value) {#setSpeedRef-java.lang.String-}
```
public final void setSpeedRef(String value)
```
-Sets the unit used to express the GPS receiver speed of movement. 'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.
+Sets the unit used to express the GPS receiver speed of movement.
+'K' 'M' and 'N' represents kilometers per hour, miles per hour, and knots.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The unit used to express the GPS receiver speed of movement. |
+| value | java.lang.String | The unit used to express the GPS receiver speed of movement.
+ |
### getStatus() {#getStatus--}
```
@@ -705,8 +921,10 @@ public final String getStatus()
Gets the status of the GPS receiver when the image is recorded.
+
**Returns:**
java.lang.String - The status of the GPS receiver when the image is recorded.
+
### setStatus(String value) {#setStatus-java.lang.String-}
```
public final void setStatus(String value)
@@ -715,10 +933,12 @@ public final void setStatus(String value)
Sets the status of the GPS receiver when the image is recorded.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The status of the GPS receiver when the image is recorded. |
+| value | java.lang.String | The status of the GPS receiver when the image is recorded.
+ |
### getTimeStamp() {#getTimeStamp--}
```
@@ -726,22 +946,28 @@ public final TiffRational[] getTimeStamp()
```
-Gets the time as UTC (Coordinated Universal Time). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.
+Gets the time as UTC (Coordinated Universal Time).
+TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.
+
**Returns:**
com.groupdocs.metadata.core.TiffRational[] - The time as UTC (Coordinated Universal Time).
+
### setTimeStamp(TiffRational[] value) {#setTimeStamp-com.groupdocs.metadata.core.TiffRational---}
```
public final void setTimeStamp(TiffRational[] value)
```
-Sets the time as UTC (Coordinated Universal Time). TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.
+Sets the time as UTC (Coordinated Universal Time).
+TimeStamp is expressed as three RATIONAL values giving the hour, minute, and second.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The time as UTC (Coordinated Universal Time). |
+| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The time as UTC (Coordinated Universal Time).
+ |
### getGpsTrack() {#getGpsTrack--}
```
@@ -751,8 +977,10 @@ public final TiffRational getGpsTrack()
Gets the direction of GPS receiver movement.
+
**Returns:**
[TiffRational](../../com.groupdocs.metadata.core/tiffrational) - The direction of GPS receiver movement.
+
### setGpsTrack(TiffRational value) {#setGpsTrack-com.groupdocs.metadata.core.TiffRational-}
```
public final void setGpsTrack(TiffRational value)
@@ -761,10 +989,12 @@ public final void setGpsTrack(TiffRational value)
Sets the direction of GPS receiver movement.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The direction of GPS receiver movement. |
+| value | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The direction of GPS receiver movement.
+ |
### getTrackRef() {#getTrackRef--}
```
@@ -772,22 +1002,28 @@ public final String getTrackRef()
```
-Gets the reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction.
+Gets the reference for giving the direction of GPS receiver movement.
+'T' denotes true direction and 'M' is magnetic direction.
+
**Returns:**
java.lang.String - The reference for giving the direction of GPS receiver movement.
+
### setTrackRef(String value) {#setTrackRef-java.lang.String-}
```
public final void setTrackRef(String value)
```
-Sets the reference for giving the direction of GPS receiver movement. 'T' denotes true direction and 'M' is magnetic direction.
+Sets the reference for giving the direction of GPS receiver movement.
+'T' denotes true direction and 'M' is magnetic direction.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The reference for giving the direction of GPS receiver movement. |
+| value | java.lang.String | The reference for giving the direction of GPS receiver movement.
+ |
### getVersionID() {#getVersionID--}
```
@@ -797,8 +1033,10 @@ public final byte[] getVersionID()
Gets the version of GPS IFD.
+
**Returns:**
byte[] - The version of GPS IFD
+
### setVersionID(byte[] value) {#setVersionID-byte---}
```
public final void setVersionID(byte[] value)
@@ -807,8 +1045,10 @@ public final void setVersionID(byte[] value)
Sets the version of GPS IFD.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | The version of GPS IFD |
+| value | byte[] | The version of GPS IFD
+ |
diff --git a/english/java/com.groupdocs.metadata.core/exififdpackage/_index.md b/english/java/com.groupdocs.metadata.core/exififdpackage/_index.md
index 0759c7953c..e7551c6272 100644
--- a/english/java/com.groupdocs.metadata.core/exififdpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/exififdpackage/_index.md
@@ -14,24 +14,34 @@ public final class ExifIfdPackage extends ExifDictionaryBasePackage
Represents the Exif Image File Directory. Exif IFD is a set of tags for recording Exif-specific attribute information.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getCameraOwnerName()](#getCameraOwnerName--) | Gets the camera owner's name. |
-| [setCameraOwnerName(String value)](#setCameraOwnerName-java.lang.String-) | Sets the camera owner's name. |
-| [getBodySerialNumber()](#getBodySerialNumber--) | Gets the camera body serial number. |
-| [setBodySerialNumber(String value)](#setBodySerialNumber-java.lang.String-) | Sets the camera body serial number. |
-| [getCfaPattern()](#getCfaPattern--) | Gets the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. |
-| [setCfaPattern(byte[] value)](#setCfaPattern-byte---) | Sets the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. |
-| [getUserComment()](#getUserComment--) | Gets the user comment. |
-| [setUserComment(String value)](#setUserComment-java.lang.String-) | Sets the user comment. |
+| [getCameraOwnerName()](#getCameraOwnerName--) | Gets the camera owner's name.
+ |
+| [setCameraOwnerName(String value)](#setCameraOwnerName-java.lang.String-) | Sets the camera owner's name.
+ |
+| [getBodySerialNumber()](#getBodySerialNumber--) | Gets the camera body serial number.
+ |
+| [setBodySerialNumber(String value)](#setBodySerialNumber-java.lang.String-) | Sets the camera body serial number.
+ |
+| [getCfaPattern()](#getCfaPattern--) | Gets the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+ |
+| [setCfaPattern(byte[] value)](#setCfaPattern-byte---) | Sets the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+ |
+| [getUserComment()](#getUserComment--) | Gets the user comment.
+ |
+| [setUserComment(String value)](#setUserComment-java.lang.String-) | Sets the user comment.
+ |
### getCameraOwnerName() {#getCameraOwnerName--}
```
public final String getCameraOwnerName()
@@ -40,8 +50,10 @@ public final String getCameraOwnerName()
Gets the camera owner's name.
+
**Returns:**
java.lang.String - The name of the camera owner.
+
### setCameraOwnerName(String value) {#setCameraOwnerName-java.lang.String-}
```
public final void setCameraOwnerName(String value)
@@ -50,10 +62,12 @@ public final void setCameraOwnerName(String value)
Sets the camera owner's name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the camera owner. |
+| value | java.lang.String | The name of the camera owner.
+ |
### getBodySerialNumber() {#getBodySerialNumber--}
```
@@ -63,8 +77,10 @@ public final String getBodySerialNumber()
Gets the camera body serial number.
+
**Returns:**
java.lang.String - The camera body serial number.
+
### setBodySerialNumber(String value) {#setBodySerialNumber-java.lang.String-}
```
public final void setBodySerialNumber(String value)
@@ -73,10 +89,12 @@ public final void setBodySerialNumber(String value)
Sets the camera body serial number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The camera body serial number. |
+| value | java.lang.String | The camera body serial number.
+ |
### getCfaPattern() {#getCfaPattern--}
```
@@ -86,8 +104,10 @@ public final byte[] getCfaPattern()
Gets the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+
**Returns:**
byte[] - The color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+
### setCfaPattern(byte[] value) {#setCfaPattern-byte---}
```
public final void setCfaPattern(byte[] value)
@@ -96,10 +116,12 @@ public final void setCfaPattern(byte[] value)
Sets the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | byte[] | The color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. |
+| value | byte[] | The color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+ |
### getUserComment() {#getUserComment--}
```
@@ -109,8 +131,10 @@ public final String getUserComment()
Gets the user comment.
+
**Returns:**
java.lang.String - The user comment.
+
### setUserComment(String value) {#setUserComment-java.lang.String-}
```
public final void setUserComment(String value)
@@ -119,8 +143,10 @@ public final void setUserComment(String value)
Sets the user comment.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The user comment. |
+| value | java.lang.String | The user comment.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/exifpackage/_index.md b/english/java/com.groupdocs.metadata.core/exifpackage/_index.md
index 5a651a6f2b..c027157961 100644
--- a/english/java/com.groupdocs.metadata.core/exifpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/exifpackage/_index.md
@@ -14,15 +14,18 @@ public class ExifPackage extends ExifDictionaryBasePackage
Represents an EXIF metadata package (Exchangeable Image File Format).
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
-This code sample demonstrates how to update common EXIF properties.
+
+This code sample demonstrates how to update common EXIF properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputJpeg)) {
> IExif root = (IExif) metadata.getRootPackage();
> // Set the EXIF package if it's missing
@@ -41,49 +44,77 @@ This code sample demonstrates how to update common EXIF properties.
> }
>
> ```
-> ```
+> ````
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [ExifPackage()](#ExifPackage--) | Initializes a new instance of the ExifPackage class. |
+| [ExifPackage()](#ExifPackage--) | Initializes a new instance of the
+ExifPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getGpsPackage()](#getGpsPackage--) | Gets the GPS data. |
-| [getExifIfdPackage()](#getExifIfdPackage--) | Gets the EXIF IFD data. |
-| [getThumbnail()](#getThumbnail--) | Gets the image thumbnail represented as an array of bytes. |
-| [getArtist()](#getArtist--) | Gets the name of the camera owner, photographer or image creator. |
-| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the name of the camera owner, photographer or image creator. |
-| [getCopyright()](#getCopyright--) | Gets the copyright notice. |
-| [setCopyright(String value)](#setCopyright-java.lang.String-) | Sets the copyright notice. |
-| [getDateTime()](#getDateTime--) | Gets the date and time of image creation. |
-| [setDateTime(String value)](#setDateTime-java.lang.String-) | Sets the date and time of image creation. |
-| [getImageDescription()](#getImageDescription--) | Gets a character string giving the title of the image. |
-| [setImageDescription(String value)](#setImageDescription-java.lang.String-) | Sets a character string giving the title of the image. |
-| [getImageLength()](#getImageLength--) | Gets the number of rows of image data. |
-| [setImageLength(int value)](#setImageLength-int-) | Sets the number of rows of image data. |
-| [getImageWidth()](#getImageWidth--) | Gets the number of columns of image data, equal to the number of pixels per row. |
-| [setImageWidth(int value)](#setImageWidth-int-) | Sets the number of columns of image data, equal to the number of pixels per row. |
-| [getOrientation()](#getOrientation--) | Gets or sets the orientation. |
-| [setOrientation(int value)](#setOrientation-int-) | Gets or sets the orientation. |
-| [getMake()](#getMake--) | Gets the manufacturer of the recording equipment. |
-| [setMake(String value)](#setMake-java.lang.String-) | Sets the manufacturer of the recording equipment. |
-| [getModel()](#getModel--) | Gets the model name or model number of the equipment. |
-| [setModel(String value)](#setModel-java.lang.String-) | Sets the model name or model number of the equipment. |
-| [getSoftware()](#getSoftware--) | Gets the name and version of the software or firmware of the camera or image input device used to generate the image. |
-| [setSoftware(String value)](#setSoftware-java.lang.String-) | Sets the name and version of the software or firmware of the camera or image input device used to generate the image. |
+| [getGpsPackage()](#getGpsPackage--) | Gets the GPS data.
+ |
+| [getExifIfdPackage()](#getExifIfdPackage--) | Gets the EXIF IFD data.
+ |
+| [getThumbnail()](#getThumbnail--) | Gets the image thumbnail represented as an array of bytes.
+ |
+| [getArtist()](#getArtist--) | Gets the name of the camera owner, photographer or image creator.
+ |
+| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the name of the camera owner, photographer or image creator.
+ |
+| [getCopyright()](#getCopyright--) | Gets the copyright notice.
+ |
+| [setCopyright(String value)](#setCopyright-java.lang.String-) | Sets the copyright notice.
+ |
+| [getDateTime()](#getDateTime--) | Gets the date and time of image creation.
+ |
+| [setDateTime(String value)](#setDateTime-java.lang.String-) | Sets the date and time of image creation.
+ |
+| [getImageDescription()](#getImageDescription--) | Gets a character string giving the title of the image.
+ |
+| [setImageDescription(String value)](#setImageDescription-java.lang.String-) | Sets a character string giving the title of the image.
+ |
+| [getImageLength()](#getImageLength--) | Gets the number of rows of image data.
+ |
+| [setImageLength(int value)](#setImageLength-int-) | Sets the number of rows of image data.
+ |
+| [getImageWidth()](#getImageWidth--) | Gets the number of columns of image data, equal to the number of pixels per row.
+ |
+| [setImageWidth(int value)](#setImageWidth-int-) | Sets the number of columns of image data, equal to the number of pixels per row.
+ |
+| [getOrientation()](#getOrientation--) | Gets or sets the orientation.
+ |
+| [setOrientation(int value)](#setOrientation-int-) | Gets or sets the orientation.
+ |
+| [getMake()](#getMake--) | Gets the manufacturer of the recording equipment.
+ |
+| [setMake(String value)](#setMake-java.lang.String-) | Sets the manufacturer of the recording equipment.
+ |
+| [getModel()](#getModel--) | Gets the model name or model number of the equipment.
+ |
+| [setModel(String value)](#setModel-java.lang.String-) | Sets the model name or model number of the equipment.
+ |
+| [getSoftware()](#getSoftware--) | Gets the name and version of the software or firmware of the camera or image input device used to generate the image.
+ |
+| [setSoftware(String value)](#setSoftware-java.lang.String-) | Sets the name and version of the software or firmware of the camera or image input device used to generate the image.
+ |
### ExifPackage() {#ExifPackage--}
```
public ExifPackage()
```
-Initializes a new instance of the ExifPackage class.
+Initializes a new instance of the
+ExifPackage
+ class.
+
### getGpsPackage() {#getGpsPackage--}
```
@@ -93,8 +124,10 @@ public final ExifGpsPackage getGpsPackage()
Gets the GPS data.
+
**Returns:**
[ExifGpsPackage](../../com.groupdocs.metadata.core/exifgpspackage) - The GPS data.
+
### getExifIfdPackage() {#getExifIfdPackage--}
```
public final ExifIfdPackage getExifIfdPackage()
@@ -103,8 +136,10 @@ public final ExifIfdPackage getExifIfdPackage()
Gets the EXIF IFD data.
+
**Returns:**
[ExifIfdPackage](../../com.groupdocs.metadata.core/exififdpackage) - The EXIF IFD data.
+
### getThumbnail() {#getThumbnail--}
```
public final byte[] getThumbnail()
@@ -113,12 +148,19 @@ public final byte[] getThumbnail()
Gets the image thumbnail represented as an array of bytes.
+
**Returns:**
byte[] - The image thumbnail represented as an array of bytes.
---------------------
+
+
+*** ** * ** ***
This feature is not available in trial mode.
+
+
+
+
### getArtist() {#getArtist--}
```
public final String getArtist()
@@ -127,8 +169,10 @@ public final String getArtist()
Gets the name of the camera owner, photographer or image creator.
+
**Returns:**
java.lang.String - The name of the camera owner, photographer or image creator.
+
### setArtist(String value) {#setArtist-java.lang.String-}
```
public final void setArtist(String value)
@@ -137,10 +181,12 @@ public final void setArtist(String value)
Sets the name of the camera owner, photographer or image creator.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the camera owner, photographer or image creator. |
+| value | java.lang.String | The name of the camera owner, photographer or image creator.
+ |
### getCopyright() {#getCopyright--}
```
@@ -150,8 +196,10 @@ public final String getCopyright()
Gets the copyright notice.
+
**Returns:**
java.lang.String - The copyright notice.
+
### setCopyright(String value) {#setCopyright-java.lang.String-}
```
public final void setCopyright(String value)
@@ -160,10 +208,12 @@ public final void setCopyright(String value)
Sets the copyright notice.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The copyright notice. |
+| value | java.lang.String | The copyright notice.
+ |
### getDateTime() {#getDateTime--}
```
@@ -171,22 +221,28 @@ public final String getDateTime()
```
-Gets the date and time of image creation. In the EXIF standard, it is the date and time the file was changed.
+Gets the date and time of image creation.
+In the EXIF standard, it is the date and time the file was changed.
+
**Returns:**
java.lang.String - The date and time of image creation.
+
### setDateTime(String value) {#setDateTime-java.lang.String-}
```
public final void setDateTime(String value)
```
-Sets the date and time of image creation. In the EXIF standard, it is the date and time the file was changed.
+Sets the date and time of image creation.
+In the EXIF standard, it is the date and time the file was changed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The date and time of image creation. |
+| value | java.lang.String | The date and time of image creation.
+ |
### getImageDescription() {#getImageDescription--}
```
@@ -194,22 +250,28 @@ public final String getImageDescription()
```
-Gets a character string giving the title of the image. It may be a comment such as "1988 company picnic" or the like.
+Gets a character string giving the title of the image.
+It may be a comment such as "1988 company picnic" or the like.
+
**Returns:**
java.lang.String - The image description.
+
### setImageDescription(String value) {#setImageDescription-java.lang.String-}
```
public final void setImageDescription(String value)
```
-Sets a character string giving the title of the image. It may be a comment such as "1988 company picnic" or the like.
+Sets a character string giving the title of the image.
+It may be a comment such as "1988 company picnic" or the like.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The image description. |
+| value | java.lang.String | The image description.
+ |
### getImageLength() {#getImageLength--}
```
@@ -219,8 +281,10 @@ public final int getImageLength()
Gets the number of rows of image data.
+
**Returns:**
int - The number of rows of image data.
+
### setImageLength(int value) {#setImageLength-int-}
```
public final void setImageLength(int value)
@@ -229,10 +293,12 @@ public final void setImageLength(int value)
Sets the number of rows of image data.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The number of rows of image data. |
+| value | int | The number of rows of image data.
+ |
### getImageWidth() {#getImageWidth--}
```
@@ -242,8 +308,10 @@ public final int getImageWidth()
Gets the number of columns of image data, equal to the number of pixels per row.
+
**Returns:**
int - The number of columns of image data, equal to the number of pixels per row.
+
### setImageWidth(int value) {#setImageWidth-int-}
```
public final void setImageWidth(int value)
@@ -252,10 +320,12 @@ public final void setImageWidth(int value)
Sets the number of columns of image data, equal to the number of pixels per row.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The number of columns of image data, equal to the number of pixels per row. |
+| value | int | The number of columns of image data, equal to the number of pixels per row.
+ |
### getOrientation() {#getOrientation--}
```
@@ -264,9 +334,9 @@ public final int getOrientation()
Gets or sets the orientation.
-
Value: The orientation.
+
**Returns:**
int
### setOrientation(int value) {#setOrientation-int-}
@@ -276,9 +346,9 @@ public final void setOrientation(int value)
Gets or sets the orientation.
-
Value: The orientation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -290,22 +360,28 @@ public final String getMake()
```
-Gets the manufacturer of the recording equipment. This is the manufacturer of the DSC, scanner, video digitizer or other equipment that generated the image.
+Gets the manufacturer of the recording equipment.
+This is the manufacturer of the DSC, scanner, video digitizer or other equipment that generated the image.
+
**Returns:**
java.lang.String - The manufacturer of the recording equipment.
+
### setMake(String value) {#setMake-java.lang.String-}
```
public final void setMake(String value)
```
-Sets the manufacturer of the recording equipment. This is the manufacturer of the DSC, scanner, video digitizer or other equipment that generated the image.
+Sets the manufacturer of the recording equipment.
+This is the manufacturer of the DSC, scanner, video digitizer or other equipment that generated the image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The manufacturer of the recording equipment. |
+| value | java.lang.String | The manufacturer of the recording equipment.
+ |
### getModel() {#getModel--}
```
@@ -313,22 +389,28 @@ public final String getModel()
```
-Gets the model name or model number of the equipment. This is the model name or number of the DSC, scanner, video digitizer or other equipment that generated the image.
+Gets the model name or model number of the equipment.
+This is the model name or number of the DSC, scanner, video digitizer or other equipment that generated the image.
+
**Returns:**
java.lang.String - The model name or model number of the equipment.
+
### setModel(String value) {#setModel-java.lang.String-}
```
public final void setModel(String value)
```
-Sets the model name or model number of the equipment. This is the model name or number of the DSC, scanner, video digitizer or other equipment that generated the image.
+Sets the model name or model number of the equipment.
+This is the model name or number of the DSC, scanner, video digitizer or other equipment that generated the image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The model name or model number of the equipment. |
+| value | java.lang.String | The model name or model number of the equipment.
+ |
### getSoftware() {#getSoftware--}
```
@@ -338,8 +420,10 @@ public final String getSoftware()
Gets the name and version of the software or firmware of the camera or image input device used to generate the image.
+
**Returns:**
java.lang.String - The name and version of the software or firmware of the camera or image input device used to generate the image.
+
### setSoftware(String value) {#setSoftware-java.lang.String-}
```
public final void setSoftware(String value)
@@ -348,8 +432,10 @@ public final void setSoftware(String value)
Sets the name and version of the software or firmware of the camera or image input device used to generate the image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name and version of the software or firmware of the camera or image input device used to generate the image. |
+| value | java.lang.String | The name and version of the software or firmware of the camera or image input device used to generate the image.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/fileformat/_index.md b/english/java/com.groupdocs.metadata.core/fileformat/_index.md
index 610506a376..039c5ac995 100644
--- a/english/java/com.groupdocs.metadata.core/fileformat/_index.md
+++ b/english/java/com.groupdocs.metadata.core/fileformat/_index.md
@@ -16,55 +16,102 @@ public enum FileFormat extends Enum implements IEnumValue
```
Represents the recognized format of a loaded file.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The file type is not recognized. |
-| [Presentation](#Presentation) | A presentation file. |
-| [Spreadsheet](#Spreadsheet) | A spreadsheet file. |
-| [WordProcessing](#WordProcessing) | A word processing file. |
-| [Diagram](#Diagram) | A diagram file. |
-| [Note](#Note) | An electronic note file. |
-| [ProjectManagement](#ProjectManagement) | A project management format. |
-| [Pdf](#Pdf) | A PDF file. |
-| [Tiff](#Tiff) | A TIFF image. |
-| [Jpeg](#Jpeg) | A JPEG image. |
-| [Psd](#Psd) | A PSD image. |
-| [Jpeg2000](#Jpeg2000) | A Jpeg2000 image. |
-| [Gif](#Gif) | A GIF image. |
-| [Png](#Png) | A PNG image. |
-| [Bmp](#Bmp) | A BMP image. |
-| [Dicom](#Dicom) | A DICOM image. |
-| [WebP](#WebP) | A WEBP image. |
-| [Emf](#Emf) | An EMF image. |
-| [Wmf](#Wmf) | A WMF image. |
-| [DjVu](#DjVu) | A DjVu file. |
-| [Wav](#Wav) | A WAV audio file. |
-| [Mp3](#Mp3) | An Mp3 audio file. |
-| [Avi](#Avi) | An AVI video. |
-| [Flv](#Flv) | An FLV video. |
-| [Asf](#Asf) | An ASF video. |
-| [Mov](#Mov) | A QuickTime video. |
-| [Matroska](#Matroska) | A video encoded with the Matroska multimedia container. |
-| [Zip](#Zip) | A ZIP archive. |
-| [SevenZip](#SevenZip) | 7z is a compressed archive file format that supports several different data compression, encryption and pre-processing algorithms. |
-| [VCard](#VCard) | A VCard file. |
-| [Epub](#Epub) | An EPUB electronic book. |
-| [OpenType](#OpenType) | An OpenType font. |
-| [Dxf](#Dxf) | A DXF (Drawing Exchange Format) drawing. |
-| [Dwg](#Dwg) | A DWG drawing. |
-| [Eml](#Eml) | An EML email message. |
-| [Msg](#Msg) | An MSG email message. |
-| [Torrent](#Torrent) | A torrent file that contains metadata about files and folders to be distributed. |
-| [Heif](#Heif) | A HEIF/HEIC image. |
-| [Dng](#Dng) | A dng RAW image. |
-| [Cr2](#Cr2) | A CR2 image. |
-| [Gltf](#Gltf) | A glTF (GL Transmission Format) 3D file. |
-| [Svg](#Svg) | An SVG (Scalable Vector Graphics) image. |
-| [Avif](#Avif) | An AVIF (AV1 Image File Format) image. |
-| [Rar](#Rar) | RAR is a proprietary archive file format that supports data compression, error correction and file spanning. |
-| [Tar](#Tar) | In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes. |
+| [Unknown](#Unknown) | The file type is not recognized.
+ |
+| [Presentation](#Presentation) | A presentation file.
+ |
+| [Spreadsheet](#Spreadsheet) | A spreadsheet file.
+ |
+| [WordProcessing](#WordProcessing) | A word processing file.
+ |
+| [Diagram](#Diagram) | A diagram file.
+ |
+| [Note](#Note) | An electronic note file.
+ |
+| [ProjectManagement](#ProjectManagement) | A project management format.
+ |
+| [Pdf](#Pdf) | A PDF file.
+ |
+| [Tiff](#Tiff) | A TIFF image.
+ |
+| [Jpeg](#Jpeg) | A JPEG image.
+ |
+| [Psd](#Psd) | A PSD image.
+ |
+| [Jpeg2000](#Jpeg2000) | A Jpeg2000 image.
+ |
+| [Gif](#Gif) | A GIF image.
+ |
+| [Png](#Png) | A PNG image.
+ |
+| [Bmp](#Bmp) | A BMP image.
+ |
+| [Dicom](#Dicom) | A DICOM image.
+ |
+| [WebP](#WebP) | A WEBP image.
+ |
+| [Emf](#Emf) | An EMF image.
+ |
+| [Wmf](#Wmf) | A WMF image.
+ |
+| [DjVu](#DjVu) | A DjVu file.
+ |
+| [Wav](#Wav) | A WAV audio file.
+ |
+| [Mp3](#Mp3) | An Mp3 audio file.
+ |
+| [Avi](#Avi) | An AVI video.
+ |
+| [Flv](#Flv) | An FLV video.
+ |
+| [Asf](#Asf) | An ASF video.
+ |
+| [Mov](#Mov) | A QuickTime video.
+ |
+| [Matroska](#Matroska) | A video encoded with the Matroska multimedia container.
+ |
+| [Zip](#Zip) | A ZIP archive.
+ |
+| [SevenZip](#SevenZip) | 7z is a compressed archive file format that supports several different data compression,
+encryption and pre-processing algorithms.
+ |
+| [VCard](#VCard) | A VCard file.
+ |
+| [Epub](#Epub) | An EPUB electronic book.
+ |
+| [OpenType](#OpenType) | An OpenType font.
+ |
+| [Dxf](#Dxf) | A DXF (Drawing Exchange Format) drawing.
+ |
+| [Dwg](#Dwg) | A DWG drawing.
+ |
+| [Eml](#Eml) | An EML email message.
+ |
+| [Msg](#Msg) | An MSG email message.
+ |
+| [Torrent](#Torrent) | A torrent file that contains metadata about files and folders to be distributed.
+ |
+| [Heif](#Heif) | A HEIF/HEIC image.
+ |
+| [Dng](#Dng) | A dng RAW image.
+ |
+| [Cr2](#Cr2) | A CR2 image.
+ |
+| [Gltf](#Gltf) | A glTF (GL Transmission Format) 3D file.
+ |
+| [Svg](#Svg) | An SVG (Scalable Vector Graphics) image.
+ |
+| [Avif](#Avif) | An AVIF (AV1 Image File Format) image.
+ |
+| [Rar](#Rar) | RAR is a proprietary archive file format that supports data compression, error correction and file spanning.
+ |
+| [Tar](#Tar) | In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
+ |
## Methods
| Method | Description |
@@ -86,27 +133,36 @@ public static final FileFormat Unknown
The file type is not recognized.
+
### Presentation {#Presentation}
```
public static final FileFormat Presentation
```
-A presentation file. You must be familiar with PPTX and PPT extension files while working with Microsoft PowerPoint. These are Presentation file formats that store collection of records to accommodate presentation data such as slides, shapes, text, animations, video, audio and embedded objects. Learn more about this file format [here][] .
+A presentation file.
+You must be familiar with PPTX and PPT extension files while working with Microsoft PowerPoint.
+These are Presentation file formats that store collection of records to accommodate presentation data such as slides, shapes,
+text, animations, video, audio and embedded objects.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/)
+.
-[here]: https://wiki.fileformat.com/presentation/
-
### Spreadsheet {#Spreadsheet}
```
public static final FileFormat Spreadsheet
```
-A spreadsheet file. A spreadsheet file contains data in the form of rows and columns. You can open, view and edit such files using spreadsheet software applications such as Microsoft Excel that is now available for both Windows and MacOS operating system. Similarly, Google sheets is a free online spreadsheet creating and editing tool that works from any web browser. Learn more about this file format [here][] .
-
+A spreadsheet file.
+A spreadsheet file contains data in the form of rows and columns.
+You can open, view and edit such files using spreadsheet software applications such as Microsoft Excel that is now available for both Windows and MacOS operating system.
+Similarly, Google sheets is a free online spreadsheet creating and editing tool that works from any web browser.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/
### WordProcessing {#WordProcessing}
```
@@ -114,11 +170,16 @@ public static final FileFormat WordProcessing
```
-A word processing file. A word processing file contains user information in plain text or rich text format. A plain text file format contains unformatted text and no font or page settings etc. can be applied. In contrast, a rich text file format allows formatting options such as setting fonts type, styles (bold, italic, underline, etc.), page margins, headings, bullets and numbers, and several other formatting features. Learn more about this file format [here][] .
+A word processing file.
+A word processing file contains user information in plain text or rich text format. A plain text file format
+contains unformatted text and no font or page settings etc. can be applied.
+In contrast, a rich text file format allows formatting options such as setting fonts type, styles (bold, italic, underline, etc.),
+page margins, headings, bullets and numbers, and several other formatting features.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/)
+.
-[here]: https://wiki.fileformat.com/word-processing/
-
### Diagram {#Diagram}
```
public static final FileFormat Diagram
@@ -127,16 +188,20 @@ public static final FileFormat Diagram
A diagram file.
+
### Note {#Note}
```
public static final FileFormat Note
```
-An electronic note file. Note-taking programs such as Microsoft OneNote lets you create, open and edit notes files that contain sections and pages for storing notes. A note document can be as simple as a text document as well as more detailed consisting of digital images, audio/video clips, and hand sketch drawings. Learn more about this file format [here][] .
-
+An electronic note file.
+Note-taking programs such as Microsoft OneNote lets you create, open and edit notes files that contain sections and pages for storing notes.
+A note document can be as simple as a text document as well as more detailed consisting of digital images, audio/video clips, and hand sketch drawings.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/note-taking/)
+.
-[here]: https://wiki.fileformat.com/note-taking/
### ProjectManagement {#ProjectManagement}
```
@@ -144,21 +209,29 @@ public static final FileFormat ProjectManagement
```
-A project management format. Have you ever come across and wondered what is an MPP file or how to open it? MPP and other similar files are Project file formats that are created by Project Management software such as Microsoft Project. A project file is a collection of tasks, resources, and their scheduling to get a measurable output in the form or a product or a service. Learn more about this file format [here][] .
+A project management format.
+Have you ever come across and wondered what is an MPP file or how to open it?
+MPP and other similar files are Project file formats that are created by Project Management software such as Microsoft Project.
+A project file is a collection of tasks, resources, and their scheduling to get a measurable output in the form or a product or a service.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/project-management/)
+.
-[here]: https://wiki.fileformat.com/project-management/
-
### Pdf {#Pdf}
```
public static final FileFormat Pdf
```
-A PDF file. Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. Learn more about this file format [here][] .
-
+A PDF file.
+Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this
+file format was to introduce a standard for representation of documents and other reference material in
+a format that is independent of application software, hardware as well as Operating System. Learn more
+about this file format
+[here](../https://wiki.fileformat.com/view/pdf/)
+.
-[here]: https://wiki.fileformat.com/view/pdf/
### Tiff {#Tiff}
```
@@ -166,10 +239,13 @@ public static final FileFormat Tiff
```
-A TIFF image. TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety of devices that comply with this file format standard. Learn more about this file format [here][] .
+A TIFF image.
+TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety
+of devices that comply with this file format standard. Learn more about this file format
+[here](../https://wiki.fileformat.com/image/tiff/)
+.
-[here]: https://wiki.fileformat.com/image/tiff/
### Jpeg {#Jpeg}
```
@@ -177,10 +253,12 @@ public static final FileFormat Jpeg
```
-A JPEG image. JPEG is a type of image format that is saved using the method of lossy compression. Learn more about this file format [here][] .
-
+A JPEG image.
+JPEG is a type of image format that is saved using the method of lossy compression.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/jpeg/)
+.
-[here]: https://wiki.fileformat.com/image/jpeg/
### Psd {#Psd}
```
@@ -188,21 +266,27 @@ public static final FileFormat Psd
```
-A PSD image. PSD, Photoshop Document, represents Adobe Photoshop's native file format used for graphics designing and development. PSD files may include image layers, adjustment layers, layer masks, annotations, file information, keywords and other Photoshop-specific elements. Learn more about this file format [here][] .
+A PSD image.
+PSD, Photoshop Document, represents Adobe Photoshop's native file format used for graphics designing and development.
+PSD files may include image layers, adjustment layers, layer masks, annotations, file information, keywords and other Photoshop-specific elements.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/psd/)
+.
-[here]: https://wiki.fileformat.com/image/psd/
-
### Jpeg2000 {#Jpeg2000}
```
public static final FileFormat Jpeg2000
```
-A Jpeg2000 image. JPEG 2000 (JPX) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about this file format [here][] .
-
+A Jpeg2000 image.
+JPEG 2000 (JPX) is an image coding system and state-of-the-art image compression standard. Designed,
+using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about
+this file format
+[here](../https://wiki.fileformat.com/image/jp2/)
+.
-[here]: https://wiki.fileformat.com/image/jp2/
### Gif {#Gif}
```
@@ -210,10 +294,12 @@ public static final FileFormat Gif
```
-A GIF image. A GIF or Graphical Interchange Format is a type of highly compressed image. Learn more about this file format [here][] .
-
+A GIF image.
+A GIF or Graphical Interchange Format is a type of highly compressed image.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/gif/)
+.
-[here]: https://wiki.fileformat.com/image/gif/
### Png {#Png}
```
@@ -221,21 +307,26 @@ public static final FileFormat Png
```
-A PNG image. PNG, Portable Network Graphics, refers to a type of raster image file format that use lossless compression. Learn more about this file format [here][] .
+A PNG image.
+PNG, Portable Network Graphics, refers to a type of raster image file format that use lossless compression.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/png/)
+.
-[here]: https://wiki.fileformat.com/image/png/
-
### Bmp {#Bmp}
```
public static final FileFormat Bmp
```
-A BMP image. Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap (DIB) file format. Learn more about this file format [here][] .
-
+A BMP image.
+Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images.
+These images are independent of graphics adapter and are also called device independent bitmap (DIB) file
+format. Learn more about this file format
+[here](../https://wiki.fileformat.com/image/bmp/)
+.
-[here]: https://wiki.fileformat.com/image/bmp/
### Dicom {#Dicom}
```
@@ -243,10 +334,13 @@ public static final FileFormat Dicom
```
-A DICOM image. DICOM is the acronym for Digital Imaging and Communications in Medicine and pertains to the field of Medical Informatics. DICOM is the combination of file format definition and a network communications protocol. Learn more about this file format [ here ][here] .
-
+A DICOM image.
+DICOM is the acronym for Digital Imaging and Communications in Medicine and pertains to the field of Medical Informatics.
+DICOM is the combination of file format definition and a network communications protocol.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/dicom/)
+.
-[here]: https://wiki.fileformat.com/image/dicom/
### WebP {#WebP}
```
@@ -254,21 +348,27 @@ public static final FileFormat WebP
```
-A WEBP image. WebP, introduced by Google, is a modern raster web image file format that is based on lossless and lossy compression. It provides same image quality while considerably reducing the image size. Learn more about this file format [here][] .
+A WEBP image.
+WebP, introduced by Google, is a modern raster web image file format that is based on lossless and
+lossy compression. It provides same image quality while considerably reducing the image size.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/webp/)
+.
-[here]: https://wiki.fileformat.com/image/webp/
-
### Emf {#Emf}
```
public static final FileFormat Emf
```
-An EMF image. Enhanced metafile format (EMF) stores graphical images device-independently. Metafiles of EMF comprises of variable-length records in chronological order that can render the stored image after parsing on any output device. Learn more about this file format [here][] .
-
+An EMF image.
+Enhanced metafile format (EMF) stores graphical images device-independently.
+Metafiles of EMF comprises of variable-length records in chronological order that can render the stored image after parsing on any output device.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/emf/)
+.
-[here]: https://wiki.fileformat.com/image/emf/
### Wmf {#Wmf}
```
@@ -276,10 +376,13 @@ public static final FileFormat Wmf
```
-A WMF image. Files with WMF extension represent Microsoft Windows Metafile (WMF) for storing vector as well as bitmap-format images data. To be more accurate, WMF belongs to the vector file format category of Graphics file formats that is device independent. Learn more about this file format [here][] .
-
+A WMF image.
+Files with WMF extension represent Microsoft Windows Metafile (WMF) for storing vector as well as bitmap-format images data.
+To be more accurate, WMF belongs to the vector file format category of Graphics file formats that is device independent.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/wmf/)
+.
-[here]: https://wiki.fileformat.com/image/wmf/
### DjVu {#DjVu}
```
@@ -287,21 +390,27 @@ public static final FileFormat DjVu
```
-A DjVu file. DjVu is a graphics file format intended for scanned documents and books especially those which contain the combination of text, drawings, images and photographs. It was developed by AT&T Labs. Learn more about this file format [here][] .
+A DjVu file.
+DjVu is a graphics file format intended for scanned documents and books especially those which contain the combination of text,
+drawings, images and photographs. It was developed by AT\&T Labs.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/djvu/)
+.
-[here]: https://wiki.fileformat.com/image/djvu/
-
### Wav {#Wav}
```
public static final FileFormat Wav
```
-A WAV audio file. WAV, known for WAVE (Waveform Audio File Format), is a subset of Microsoft's Resource Interchange File Format (RIFF) specification for storing digital audio files. The format doesn't apply any compression to the bitstream and stores the audio recordings with different sampling rates and bitrates. Learn more about this file format [here][] .
-
+A WAV audio file.
+WAV, known for WAVE (Waveform Audio File Format), is a subset of Microsoft's Resource Interchange File Format (RIFF) specification for storing digital audio files.
+The format doesn't apply any compression to the bitstream and stores the audio recordings with different sampling rates and bitrates.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/audio/wav/)
+.
-[here]: https://wiki.fileformat.com/audio/wav/
### Mp3 {#Mp3}
```
@@ -309,10 +418,13 @@ public static final FileFormat Mp3
```
-An Mp3 audio file. Files with MP3 extension are digitally encoded file formats for audio files that are formally based on the MPEG-1 Audio Layer III or MPEG-2 Audio Layer III. It was developed by the Moving Picture Experts Group (MPEG) that uses Layer 3 audio compression. Learn more about this file format [here][] .
-
+An Mp3 audio file.
+Files with MP3 extension are digitally encoded file formats for audio files that are formally based on the MPEG-1 Audio Layer III or MPEG-2 Audio Layer III.
+It was developed by the Moving Picture Experts Group (MPEG) that uses Layer 3 audio compression.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/audio/mp3/)
+.
-[here]: https://wiki.fileformat.com/audio/mp3/
### Avi {#Avi}
```
@@ -320,11 +432,14 @@ public static final FileFormat Avi
```
-An AVI video. The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft. It holds the audio and video data created and compressed using several codecs (Coders/Decoders) such as Xvid and DivX. Learn more about this file format [here][] .
+An AVI video.
+The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft.
+It holds the audio and video data created and compressed using several codecs (Coders/Decoders) such as Xvid and DivX.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/avi/)
+.
-[here]: https://wiki.fileformat.com/video/avi/
-
### Flv {#Flv}
```
public static final FileFormat Flv
@@ -333,16 +448,21 @@ public static final FileFormat Flv
An FLV video.
+
### Asf {#Asf}
```
public static final FileFormat Asf
```
-An ASF video. The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams. Microsoft Windows Media Video (WMV) is the compressed video format and Microsoft Windows Media Audio (WMA) is the compressed audio format along with additional metadata in the ASF container developed by Microsoft. Learn more about this file format [here][] .
-
+An ASF video.
+The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams.
+Microsoft Windows Media Video (WMV) is the compressed video format and Microsoft Windows Media Audio (WMA) is the compressed audio format
+along with additional metadata in the ASF container developed by Microsoft.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/wmv/)
+.
-[here]: https://wiki.fileformat.com/video/wmv/
### Mov {#Mov}
```
@@ -350,11 +470,15 @@ public static final FileFormat Mov
```
-A QuickTime video. Mov or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks, each track holds a particular type of data i.e. Video, Audio, text etc. Mov format is compatible both in Windows and Macintosh systems. Learn more about this file format [here][] .
+A QuickTime video.
+Mov or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks,
+each track holds a particular type of data i.e. Video, Audio, text etc.
+Mov format is compatible both in Windows and Macintosh systems.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/mov/)
+.
-[here]: https://wiki.fileformat.com/video/mov/
-
### Matroska {#Matroska}
```
public static final FileFormat Matroska
@@ -363,24 +487,33 @@ public static final FileFormat Matroska
A video encoded with the Matroska multimedia container.
+
### Zip {#Zip}
```
public static final FileFormat Zip
```
-A ZIP archive. ZIP file extension represents archives that can hold one or more files or directories. The archive can have compression applied to the included files in order to reduce the ZIP file size. ZIP file format was made public back in February 1989 by Phil Katz for achieving archiving of files and folders. Learn more about this file format [here][] .
+A ZIP archive.
+ZIP file extension represents archives that can hold one or more files or directories.
+The archive can have compression applied to the included files in order to reduce the ZIP file size.
+ZIP file format was made public back in February 1989 by Phil Katz for achieving archiving of files and folders.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/compression/zip/)
+.
-[here]: https://wiki.fileformat.com/compression/zip/
-
### SevenZip {#SevenZip}
```
public static final FileFormat SevenZip
```
-7z is a compressed archive file format that supports several different data compression, encryption and pre-processing algorithms. The 7z format initially appeared as implemented by the 7-Zip archiver. The 7-Zip program is publicly available under the terms of the GNU Lesser General Public License.
+7z is a compressed archive file format that supports several different data compression,
+encryption and pre-processing algorithms.
+The 7z format initially appeared as implemented by the 7-Zip archiver.
+The 7-Zip program is publicly available under the terms of the GNU Lesser General Public License.
+
### VCard {#VCard}
```
@@ -388,21 +521,27 @@ public static final FileFormat VCard
```
-A VCard file. VCF (Virtual Card Format) or vCard is a digital file format for storing contact information. The format is widely used for data interchange among popular information exchange applications. Learn more about this file format [here][] .
+A VCard file.
+VCF (Virtual Card Format) or vCard is a digital file format for storing contact information.
+The format is widely used for data interchange among popular information exchange applications.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/email/vcf/)
+.
-[here]: https://wiki.fileformat.com/email/vcf/
-
### Epub {#Epub}
```
public static final FileFormat Epub
```
-An EPUB electronic book. Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers. The format has been so common by now that it is supported by many e-readers and software applications. Learn more about this file format [here][] .
-
+An EPUB electronic book.
+Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers.
+The format has been so common by now that it is supported by many e-readers and software applications.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/ebook/epub/)
+.
-[here]: https://wiki.fileformat.com/ebook/epub/
### OpenType {#OpenType}
```
@@ -412,27 +551,34 @@ public static final FileFormat OpenType
An OpenType font.
+
### Dxf {#Dxf}
```
public static final FileFormat Dxf
```
-A DXF (Drawing Exchange Format) drawing. DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file. Each element in the file has a prefix integer number called a group code. Learn more about this file format [here][] .
+A DXF (Drawing Exchange Format) drawing.
+DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file.
+Each element in the file has a prefix integer number called a group code.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/cad/dxf/)
+.
-[here]: https://wiki.fileformat.com/cad/dxf/
-
### Dwg {#Dwg}
```
public static final FileFormat Dwg
```
-A DWG drawing. Files with DWG extension represent proprietary binary files used for containing 2D and 3D design data. Like DXF, which are ASCII files, DWG represent the binary file format for CAD (Computer Aided Design) drawings. Learn more about this file format [here][] .
-
+A DWG drawing.
+Files with DWG extension represent proprietary binary files used for containing 2D and 3D design data.
+Like DXF, which are ASCII files, DWG represent the binary file format for CAD (Computer Aided Design) drawings.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/cad/dwg/)
+.
-[here]: https://wiki.fileformat.com/cad/dwg/
### Eml {#Eml}
```
@@ -440,10 +586,13 @@ public static final FileFormat Eml
```
-An EML email message. EML file format represents email messages saved using Outlook and other relevant applications. Almost all emailing clients support this file format for its compliance with RFC-822 Internet Message Format Standard. Learn more about this file format [here][] .
-
+An EML email message.
+EML file format represents email messages saved using Outlook and other relevant applications.
+Almost all emailing clients support this file format for its compliance with RFC-822 Internet Message Format Standard.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/email/eml/)
+.
-[here]: https://wiki.fileformat.com/email/eml/
### Msg {#Msg}
```
@@ -451,11 +600,15 @@ public static final FileFormat Msg
```
-An MSG email message. MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks. Such messages may contain one or more email fields, with the sender, recipient, subject, date, and message body, or contact information, appointment particulars, and one or more task specifications. Learn more about this file format [here][] .
+An MSG email message.
+MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks.
+Such messages may contain one or more email fields, with the sender, recipient, subject, date,
+and message body, or contact information, appointment particulars, and one or more task specifications.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/email/msg/)
+.
-[here]: https://wiki.fileformat.com/email/msg/
-
### Torrent {#Torrent}
```
public static final FileFormat Torrent
@@ -464,6 +617,7 @@ public static final FileFormat Torrent
A torrent file that contains metadata about files and folders to be distributed.
+
### Heif {#Heif}
```
public static final FileFormat Heif
@@ -472,6 +626,7 @@ public static final FileFormat Heif
A HEIF/HEIC image.
+
### Dng {#Dng}
```
public static final FileFormat Dng
@@ -480,6 +635,7 @@ public static final FileFormat Dng
A dng RAW image.
+
### Cr2 {#Cr2}
```
public static final FileFormat Cr2
@@ -488,6 +644,7 @@ public static final FileFormat Cr2
A CR2 image.
+
### Gltf {#Gltf}
```
public static final FileFormat Gltf
@@ -496,6 +653,7 @@ public static final FileFormat Gltf
A glTF (GL Transmission Format) 3D file.
+
### Svg {#Svg}
```
public static final FileFormat Svg
@@ -504,6 +662,7 @@ public static final FileFormat Svg
An SVG (Scalable Vector Graphics) image.
+
### Avif {#Avif}
```
public static final FileFormat Avif
@@ -512,6 +671,7 @@ public static final FileFormat Avif
An AVIF (AV1 Image File Format) image.
+
### Rar {#Rar}
```
public static final FileFormat Rar
@@ -520,6 +680,7 @@ public static final FileFormat Rar
RAR is a proprietary archive file format that supports data compression, error correction and file spanning.
+
### Tar {#Tar}
```
public static final FileFormat Tar
@@ -528,6 +689,7 @@ public static final FileFormat Tar
In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
+
### values() {#values--}
```
public static FileFormat[] values()
@@ -586,6 +748,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -596,6 +759,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -611,6 +775,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -626,6 +791,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -636,5 +802,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/filetype/_index.md b/english/java/com.groupdocs.metadata.core/filetype/_index.md
index 4e6f51f4c2..50adf9f852 100644
--- a/english/java/com.groupdocs.metadata.core/filetype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/filetype/_index.md
@@ -16,118 +16,249 @@ Represents the file type.
**Learn more**
- * [Supported Document Formats][]
- * [Get supported file formats][]
+* [Supported Document Formats](../https://docs.groupdocs.com/metadata/java/supported-document-formats/)
+* [Get supported file formats](../https://docs.groupdocs.com/metadata/java/get-supported-file-formats/)
+
+
-[Supported Document Formats]: https://docs.groupdocs.com/metadata/java/supported-document-formats/
-[Get supported file formats]: https://docs.groupdocs.com/metadata/java/get-supported-file-formats/
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | Represents unknown file type. |
-| [TORRENT](#TORRENT) | Represents TORRENT file type. |
-| [PDF](#PDF) | Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. |
-| [PPT](#PPT) | A file with PPT extension represents PowerPoint file that consists of a collection of slides for displaying as SlideShow. |
-| [PPTX](#PPTX) | Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application. |
-| [POTX](#POTX) | Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. |
-| [PPTM](#PPTM) | Files with PPTM extension are Macro-enabled Presentation files that are created with Microsoft PowerPoint 2007 or higher versions. |
-| [POTM](#POTM) | Files with POTM extension are Microsoft PowerPoint template files with support for Macros. |
-| [PPS](#PPS) | PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose. |
-| [PPSX](#PPSX) | PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. |
-| [PPSM](#PPSM) | Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft PowerPoint 2007 or higher. |
-| [POT](#POT) | Files with .POT extension represent Microsoft PowerPoint template files in binary format created by PowerPoint 97-2003 versions. |
-| [XLS](#XLS) | Files with XLS extension represent Excel Binary File Format. |
-| [XLSX](#XLSX) | XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release of Microsoft Office 2007. |
-| [XLSM](#XLSM) | Files with XLSM extension is a type of Spreasheet files that support Macros. |
-| [XLT](#XLT) | Files with .XLT extension are template files created with Microsoft Excel which is a spreadsheet application which comes as part of Microsoft Office suite. |
-| [ODT](#ODT) | ODT files are type of documents created with word processing applications that are based on OpenDocument Text File format. |
-| [DOT](#DOT) | Files with .DOT extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOC or DOCX files. |
-| [DOC](#DOC) | Files with .doc extension represent documents generated by Microsoft Word or other word processing documents in binary file format. |
-| [DOCX](#DOCX) | DOCX is a well-known format for Microsoft Word documents. |
-| [XLTX](#XLTX) | Files with XLTX extension represent Microsoft Excel Template files that are based on the Office OpenXML file format specifications. |
-| [DOTX](#DOTX) | Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files. |
-| [ODS](#ODS) | Files with ODS extension stand for OpenDocument Spreadsheet Document format that are editable by user. |
-| [XLTM](#XLTM) | The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled template files. |
-| [XLSB](#XLSB) | XLSB file format specifies the Excel Binary File Format, which is a collection of records and structures that specify Excel workbook content. |
-| [DOTM](#DOTM) | A file with DOTM extension represents template file created with Microsoft Word 2007 or higher. |
-| [DOCM](#DOCM) | DOCM files are Microsoft Word 2007 or higher generated documents with the ability to run macros. |
-| [EPUB](#EPUB) | Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers. |
-| [TTF](#TTF) | TTF represents font files based on the TrueType specifications font technology. |
-| [TTC](#TTC) | TTC (TrueType Collection) is a TrueType font collection format. |
-| [OTF](#OTF) | A file with .otf extension refers to OpenType font format. |
-| [OTC](#OTC) | OTC (OpenType Collection) is a OpenType font collection format. |
-| [ONE](#ONE) | File represented by .ONE extension are created by Microsoft OneNote application. |
-| [ZIP](#ZIP) | ZIP file extension represents archives that can hold one or more files or directories. |
-| [ZIPX](#ZIPX) | ZIPX is a Zip file in which WinZip has used one or more of its available advanced compression methods. |
-| [JAR](#JAR) | JAR is a Java Archive file that contains many different application related files as a single file. |
-| [VCF](#VCF) | VCF (Virtual Card Format) or vCard is a digital file format for storing contact information. |
-| [VCR](#VCR) | VCR (Virtual Card Format) or vCard is a digital file format for storing contact information. |
-| [EML](#EML) | EML file format represents email messages saved using Outlook and other relevant applications. |
-| [MSG](#MSG) | MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks. |
-| [MP3](#MP3) | Files with MP3 extension are digitally encoded file formats for audio files that are formally based on the MPEG-1 Audio Layer III or MPEG-2 Audio Layer III. |
-| [WAV](#WAV) | WAV, known for WAVE (Waveform Audio File Format), is a subset of Microsoft's Resource Interchange File Format (RIFF) specification for storing digital audio files. |
-| [BMP](#BMP) | Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. |
-| [DJVU](#DJVU) | DjVu is a graphics file format intended for scanned documents and books especially those which contain the combination of text, drawings, images and photographs. |
-| [DJV](#DJV) | DjVu is a graphics file format intended for scanned documents and books especially those which contain the combination of text, drawings, images and photographs. |
-| [GIF](#GIF) | A GIF or Graphical Interchange Format is a type of highly compressed image. |
-| [JPG](#JPG) | A JPEG is a type of image format that is saved using the method of lossy compression. |
-| [JPE](#JPE) | A JPEG is a type of image format that is saved using the method of lossy compression. |
-| [JPEG](#JPEG) | A JPEG is a type of image format that is saved using the method of lossy compression. |
-| [JP2](#JP2) | JPEG 2000 (JP2) is an image coding system and state-of-the-art image compression standard. |
-| [J2K](#J2K) | JPEG 2000 (J2K) is an image coding system and state-of-the-art image compression standard. |
-| [JPF](#JPF) | JPEG 2000 (JPF) is an image coding system and state-of-the-art image compression standard. |
-| [JPX](#JPX) | JPEG 2000 (JPX) is an image coding system and state-of-the-art image compression standard. |
-| [JPM](#JPM) | JPEG 2000 (JPM) is an image coding system and state-of-the-art image compression standard. |
-| [MJ2](#MJ2) | Video format defined as Motion JPEG 2000 (Part 3); contains a motion sequence of JPEG 2000 images; does not involve inter-frame coding, but instead encodes each frame independently using JPEG 2000 compression. |
-| [PNG](#PNG) | PNG, Portable Network Graphics, refers to a type of raster image file format that use loseless compression. |
-| [TIFF](#TIFF) | TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety of devices that comply with this file format standard. |
-| [TIF](#TIF) | TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety of devices that comply with this file format standard. |
-| [WEBP](#WEBP) | WebP, introduced by Google, is a modern raster web image file format that is based on lossless and lossy compression. |
-| [EMF](#EMF) | Enhanced metafile format (EMF) stores graphical images device-independently. |
-| [WMF](#WMF) | Files with WMF extension represent Microsoft Windows Metafile (WMF) for storing vector as well as bitmap-format images data. |
-| [PSD](#PSD) | PSD, Photoshop Document, represents Adobe Photoshop's native file format used for graphics designing and development. |
-| [MPP](#MPP) | MPP is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software. |
-| [MPT](#MPT) | MPT is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software. |
-| [VSD](#VSD) | VSD files are drawings created with Microsoft Visio application to represent variety of graphical objects and the interconnection between these. |
-| [VDX](#VDX) | Any drawing or chart created in Microsoft Visio, but saved in XML format have .VDX extension. |
-| [VSDX](#VSDX) | Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft Office 2013 onwards. |
-| [VSS](#VSS) | VSS are stencil files created with Microsoft Visio 2007 and earlier. |
-| [VSX](#VSX) | Files with .VSX extension refer to stencils that consist of drawings and shapes that are used for creating diagrams in Microsoft Visio. |
-| [VTX](#VTX) | Files with .VTX extension refer to Microsoft Visio drawing template that is saved to disc in XML file format. |
-| [DICOM](#DICOM) | DICOM is the acronym for Digital Imaging and Communications in Medicine and pertains to the field of Medical Informatics. |
-| [HEIF](#HEIF) | An HEIF file is a High-Efficiency Container Image file format that is capable of storing a single image or a sequence of images in a single file. |
-| [HEIC](#HEIC) | An HEIC file is a High-Efficiency Container Image file format that can store multiple images as a collection in a single file. |
-| [DWG](#DWG) | Files with DWG extension represent proprietary binary files used for containing 2D and 3D design data. |
-| [DXF](#DXF) | DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file. |
-| [AVI](#AVI) | The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft. |
-| [MOV](#MOV) | MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks, each track holds a particular type of data i.e. |
-| [QT](#QT) | MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks, each track holds a particular type of data i.e. |
-| [MKA](#MKA) | MKA (Matroska Audio) is the Matroska multimedia container format used for Audio. |
-| [MKV](#MKV) | MKV (Matroska Video) is a multimedia container similar to MOV and AVI format but it supports more than one audio and subtitle track in the same file. |
-| [MK3D](#MK3D) | MK3D is actually stereoscopic 3D video created using Matroska 3D format. |
-| [WEBM](#WEBM) | WEBM is a video file based on the open, royalty-free WebM file format. |
-| [FLV](#FLV) | FLV (Flash Video) is a container file format which is used to deliver audio/video content over the internet by using the Adobe Flash Player or Adobe Air. |
-| [ASF](#ASF) | The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams. |
-| [DNG](#DNG) | DNG is a digital camera image format used for the storage of raw files. |
-| [CR2](#CR2) | The .CR2 file format (Canon RAW version 2) is a digital photography RAW format created by Canon. |
-| [SEVENZIP](#SEVENZIP) | 7z is a compressed archive file format that supports several different data compression, encryption and pre-processing algorithms. |
-| [RAR](#RAR) | RAR is a proprietary archive file format that supports data compression, error correction and file spanning. |
-| [TAR](#TAR) | In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes. |
-| [GLTF](#GLTF) | glTF (GL Transmission Format) is a 3D file format used for 3D scenes and models. |
-| [SVG](#SVG) | SVG (Scalable Vector Graphics) is an XML-based vector image format. |
-| [AVIF](#AVIF) | AVIF (AV1 Image File Format) is an image format based on the AV1 video codec. |
+| [Unknown](#Unknown) | Represents unknown file type.
+ |
+| [TORRENT](#TORRENT) | Represents TORRENT file type.
+ |
+| [PDF](#PDF) | Portable Document Format (PDF) is a type of document created by Adobe back in 1990s.
+ |
+| [PPT](#PPT) | A file with PPT extension represents PowerPoint file that consists of a collection of slides for
+displaying as SlideShow.
+ |
+| [PPTX](#PPTX) | Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application.
+ |
+| [POTX](#POTX) | Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with
+Microsoft PowerPoint 2007 and above.
+ |
+| [PPTM](#PPTM) | Files with PPTM extension are Macro-enabled Presentation files that are created with
+Microsoft PowerPoint 2007 or higher versions.
+ |
+| [POTM](#POTM) | Files with POTM extension are Microsoft PowerPoint template files with support for Macros.
+ |
+| [PPS](#PPS) | PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose.
+ |
+| [PPSX](#PPSX) | PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for
+Slide Show purpose.
+ |
+| [PPSM](#PPSM) | Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft
+PowerPoint 2007 or higher.
+ |
+| [POT](#POT) | Files with .POT extension represent Microsoft PowerPoint template files in binary format created by PowerPoint 97-2003 versions.
+ |
+| [XLS](#XLS) | Files with XLS extension represent Excel Binary File Format.
+ |
+| [XLSX](#XLSX) | XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release
+of Microsoft Office 2007.
+ |
+| [XLSM](#XLSM) | Files with XLSM extension is a type of Spreasheet files that support Macros.
+ |
+| [XLT](#XLT) | Files with .XLT extension are template files created with Microsoft Excel which is a spreadsheet
+application which comes as part of Microsoft Office suite.
+ |
+| [ODT](#ODT) | ODT files are type of documents created with word processing applications that are based on OpenDocument
+Text File format.
+ |
+| [DOT](#DOT) | Files with .DOT extension are template files created by Microsoft Word to have pre-formatted settings
+for generation of further DOC or DOCX files.
+ |
+| [DOC](#DOC) | Files with .doc extension represent documents generated by Microsoft Word or other word processing
+documents in binary file format.
+ |
+| [DOCX](#DOCX) | DOCX is a well-known format for Microsoft Word documents.
+ |
+| [XLTX](#XLTX) | Files with XLTX extension represent Microsoft Excel Template files that are based on the Office OpenXML
+file format specifications.
+ |
+| [DOTX](#DOTX) | Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings
+for generation of further DOCX files.
+ |
+| [ODS](#ODS) | Files with ODS extension stand for OpenDocument Spreadsheet Document format that are editable by user.
+ |
+| [XLTM](#XLTM) | The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled
+template files.
+ |
+| [XLSB](#XLSB) | XLSB file format specifies the Excel Binary File Format, which is a collection of records and
+structures that specify Excel workbook content.
+ |
+| [DOTM](#DOTM) | A file with DOTM extension represents template file created with Microsoft Word 2007 or higher.
+ |
+| [DOCM](#DOCM) | DOCM files are Microsoft Word 2007 or higher generated documents with the ability to run macros.
+ |
+| [EPUB](#EPUB) | Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers.
+ |
+| [TTF](#TTF) | TTF represents font files based on the TrueType specifications font technology.
+ |
+| [TTC](#TTC) | TTC (TrueType Collection) is a TrueType font collection format.
+ |
+| [OTF](#OTF) | A file with .otf extension refers to OpenType font format.
+ |
+| [OTC](#OTC) | OTC (OpenType Collection) is a OpenType font collection format.
+ |
+| [ONE](#ONE) | File represented by .ONE extension are created by Microsoft OneNote application.
+ |
+| [ZIP](#ZIP) | ZIP file extension represents archives that can hold one or more files or directories.
+ |
+| [ZIPX](#ZIPX) | ZIPX is a Zip file in which WinZip has used one or more of its available advanced compression methods.
+ |
+| [JAR](#JAR) | JAR is a Java Archive file that contains many different application related files as a single file.
+ |
+| [VCF](#VCF) | VCF (Virtual Card Format) or vCard is a digital file format for storing contact information.
+ |
+| [VCR](#VCR) | VCR (Virtual Card Format) or vCard is a digital file format for storing contact information.
+ |
+| [EML](#EML) | EML file format represents email messages saved using Outlook and other relevant applications.
+ |
+| [MSG](#MSG) | MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact,
+appointment, or other tasks.
+ |
+| [MP3](#MP3) | Files with MP3 extension are digitally encoded file formats for audio files that are formally based
+on the MPEG-1 Audio Layer III or MPEG-2 Audio Layer III.
+ |
+| [WAV](#WAV) | WAV, known for WAVE (Waveform Audio File Format), is a subset of Microsoft's Resource Interchange File Format (RIFF)
+specification for storing digital audio files.
+ |
+| [BMP](#BMP) | Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images.
+ |
+| [DJVU](#DJVU) | DjVu is a graphics file format intended for scanned documents and books especially those which contain
+the combination of text, drawings, images and photographs.
+ |
+| [DJV](#DJV) | DjVu is a graphics file format intended for scanned documents and books especially those which contain
+the combination of text, drawings, images and photographs.
+ |
+| [GIF](#GIF) | A GIF or Graphical Interchange Format is a type of highly compressed image.
+ |
+| [JPG](#JPG) | A JPEG is a type of image format that is saved using the method of lossy compression.
+ |
+| [JPE](#JPE) | A JPEG is a type of image format that is saved using the method of lossy compression.
+ |
+| [JPEG](#JPEG) | A JPEG is a type of image format that is saved using the method of lossy compression.
+ |
+| [JP2](#JP2) | JPEG 2000 (JP2) is an image coding system and state-of-the-art image compression standard.
+ |
+| [J2K](#J2K) | JPEG 2000 (J2K) is an image coding system and state-of-the-art image compression standard.
+ |
+| [JPF](#JPF) | JPEG 2000 (JPF) is an image coding system and state-of-the-art image compression standard.
+ |
+| [JPX](#JPX) | JPEG 2000 (JPX) is an image coding system and state-of-the-art image compression standard.
+ |
+| [JPM](#JPM) | JPEG 2000 (JPM) is an image coding system and state-of-the-art image compression standard.
+ |
+| [MJ2](#MJ2) | Video format defined as Motion JPEG 2000 (Part 3); contains a motion sequence of JPEG 2000 images;
+does not involve inter-frame coding, but instead encodes each frame independently using JPEG 2000 compression.
+ |
+| [PNG](#PNG) | PNG, Portable Network Graphics, refers to a type of raster image file format that use loseless compression.
+ |
+| [TIFF](#TIFF) | TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety
+of devices that comply with this file format standard.
+ |
+| [TIF](#TIF) | TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety
+of devices that comply with this file format standard.
+ |
+| [WEBP](#WEBP) | WebP, introduced by Google, is a modern raster web image file format that is based on lossless and
+lossy compression.
+ |
+| [EMF](#EMF) | Enhanced metafile format (EMF) stores graphical images device-independently.
+ |
+| [WMF](#WMF) | Files with WMF extension represent Microsoft Windows Metafile (WMF) for storing vector as well as bitmap-format images data.
+ |
+| [PSD](#PSD) | PSD, Photoshop Document, represents Adobe Photoshop's native file format used for graphics designing and development.
+ |
+| [MPP](#MPP) | MPP is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software.
+ |
+| [MPT](#MPT) | MPT is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software.
+ |
+| [VSD](#VSD) | VSD files are drawings created with Microsoft Visio application to represent variety of graphical
+objects and the interconnection between these.
+ |
+| [VDX](#VDX) | Any drawing or chart created in Microsoft Visio, but saved in XML format have .VDX extension.
+ |
+| [VSDX](#VSDX) | Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft
+Office 2013 onwards.
+ |
+| [VSS](#VSS) | VSS are stencil files created with Microsoft Visio 2007 and earlier.
+ |
+| [VSX](#VSX) | Files with .VSX extension refer to stencils that consist of drawings and shapes that are used for
+creating diagrams in Microsoft Visio.
+ |
+| [VTX](#VTX) | Files with .VTX extension refer to Microsoft Visio drawing template that is saved to disc in XML file format.
+ |
+| [DICOM](#DICOM) | DICOM is the acronym for Digital Imaging and Communications in Medicine and pertains to the field of Medical Informatics.
+ |
+| [HEIF](#HEIF) | An HEIF file is a High-Efficiency Container Image file format that is capable of storing a single image or a sequence of images in a single file.
+ |
+| [HEIC](#HEIC) | An HEIC file is a High-Efficiency Container Image file format that can store multiple images as a collection in a single file.
+ |
+| [DWG](#DWG) | Files with DWG extension represent proprietary binary files used for containing 2D and 3D design data.
+ |
+| [DXF](#DXF) | DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file.
+ |
+| [AVI](#AVI) | The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft.
+ |
+| [MOV](#MOV) | MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks,
+each track holds a particular type of data i.e.
+ |
+| [QT](#QT) | MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks,
+each track holds a particular type of data i.e.
+ |
+| [MKA](#MKA) | MKA (Matroska Audio) is the Matroska multimedia container format used for Audio.
+ |
+| [MKV](#MKV) | MKV (Matroska Video) is a multimedia container similar to MOV and AVI format
+but it supports more than one audio and subtitle track in the same file.
+ |
+| [MK3D](#MK3D) | MK3D is actually stereoscopic 3D video created using Matroska 3D format.
+ |
+| [WEBM](#WEBM) | WEBM is a video file based on the open, royalty-free WebM file format.
+ |
+| [FLV](#FLV) | FLV (Flash Video) is a container file format
+which is used to deliver audio/video content over the internet by using the Adobe Flash Player or Adobe Air.
+ |
+| [ASF](#ASF) | The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams.
+ |
+| [DNG](#DNG) | DNG is a digital camera image format used for the storage of raw files.
+ |
+| [CR2](#CR2) | The .CR2 file format (Canon RAW version 2) is a digital photography RAW format created by Canon.
+ |
+| [SEVENZIP](#SEVENZIP) | 7z is a compressed archive file format that supports several different data compression,
+encryption and pre-processing algorithms.
+ |
+| [RAR](#RAR) | RAR is a proprietary archive file format that supports data compression, error correction and file spanning.
+ |
+| [TAR](#TAR) | In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
+ |
+| [GLTF](#GLTF) | glTF (GL Transmission Format) is a 3D file format used for 3D scenes and models.
+ |
+| [SVG](#SVG) | SVG (Scalable Vector Graphics) is an XML-based vector image format.
+ |
+| [AVIF](#AVIF) | AVIF (AV1 Image File Format) is an image format based on the AV1 video codec.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getDescription()](#getDescription--) | Gets the file type description. |
-| [getExtension()](#getExtension--) | Gets the file extension. |
-| [getFileFormat()](#getFileFormat--) | Gets the file format. |
-| [toString()](#toString--) | Returns a String that represents the current FileType . |
-| [getSupportedFileTypes()](#getSupportedFileTypes--) | Retrieves supported file types. |
-| [fromExtension(String fileExtension)](#fromExtension-java.lang.String-) | Gets FileType for provided fileExtension |
+| [getDescription()](#getDescription--) | Gets the file type description.
+ |
+| [getExtension()](#getExtension--) | Gets the file extension.
+ |
+| [getFileFormat()](#getFileFormat--) | Gets the file format.
+ |
+| [toString()](#toString--) | Returns a String that represents the current
+FileType
+.
+ |
+| [getSupportedFileTypes()](#getSupportedFileTypes--) | Retrieves supported file types.
+ |
+| [fromExtension(String fileExtension)](#fromExtension-java.lang.String-) | Gets FileType for provided fileExtension
+ |
### Unknown {#Unknown}
```
public static final FileType Unknown
@@ -136,6 +267,7 @@ public static final FileType Unknown
Represents unknown file type.
+
### TORRENT {#TORRENT}
```
public static final FileType TORRENT
@@ -144,16 +276,18 @@ public static final FileType TORRENT
Represents TORRENT file type.
+
### PDF {#PDF}
```
public static final FileType PDF
```
-Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. Learn more about this file format [here][].
-
+Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this
+file format was to introduce a standard for representation of documents and other reference material in
+a format that is independent of application software, hardware as well as Operating System. Learn more
+about this file format [here](../https://docs.fileformat.com/pdf/).
-[here]: https://docs.fileformat.com/pdf/
### PPT {#PPT}
```
@@ -161,21 +295,22 @@ public static final FileType PPT
```
-A file with PPT extension represents PowerPoint file that consists of a collection of slides for displaying as SlideShow. It specifies the Binary File Format used by Microsoft PowerPoint 97-2003. Learn more about this file format [here][].
+A file with PPT extension represents PowerPoint file that consists of a collection of slides for
+displaying as SlideShow. It specifies the Binary File Format used by Microsoft PowerPoint 97-2003.
+Learn more about this file format [here](../https://wiki.fileformat.com/presentation/ppt/).
-[here]: https://wiki.fileformat.com/presentation/ppt/
-
### PPTX {#PPTX}
```
public static final FileType PPTX
```
-Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application. Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based on the Microsoft PowerPoint open XML presentation file format. Learn more about this file format [here][].
-
+Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application.
+Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based
+on the Microsoft PowerPoint open XML presentation file format. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pptx/).
-[here]: https://wiki.fileformat.com/presentation/pptx/
### POTX {#POTX}
```
@@ -183,10 +318,10 @@ public static final FileType POTX
```
-Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. Learn more about this file format [here][].
-
+Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with
+Microsoft PowerPoint 2007 and above. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/potx/).
-[here]: https://wiki.fileformat.com/presentation/potx/
### PPTM {#PPTM}
```
@@ -194,21 +329,22 @@ public static final FileType PPTM
```
-Files with PPTM extension are Macro-enabled Presentation files that are created with Microsoft PowerPoint 2007 or higher versions. Learn more about this file format [here][].
+Files with PPTM extension are Macro-enabled Presentation files that are created with
+Microsoft PowerPoint 2007 or higher versions. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pptm/).
-[here]: https://wiki.fileformat.com/presentation/pptm/
-
### POTM {#POTM}
```
public static final FileType POTM
```
-Files with POTM extension are Microsoft PowerPoint template files with support for Macros. POTM files are created with PowerPoint 2007 or above and contains default settings that can be used to create further presentation files. Learn more about this file format [here][].
-
+Files with POTM extension are Microsoft PowerPoint template files with support for Macros. POTM files
+are created with PowerPoint 2007 or above and contains default settings that can be used to create
+further presentation files. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/potm/).
-[here]: https://wiki.fileformat.com/presentation/potm/
### PPS {#PPS}
```
@@ -216,10 +352,10 @@ public static final FileType PPS
```
-PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose. PPS file reading and creation is supported by Microsoft PowerPoint 97-2003. Learn more about this file format [here][].
-
+PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose.
+PPS file reading and creation is supported by Microsoft PowerPoint 97-2003. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pps/).
-[here]: https://wiki.fileformat.com/presentation/pps/
### PPSX {#PPSX}
```
@@ -227,21 +363,21 @@ public static final FileType PPSX
```
-PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. Learn more about this file format [here][].
+PPSX, Power Point Slide Show, file are created using Microsoft PowerPoint 2007 and above for
+Slide Show purpose. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/ppsx/).
-[here]: https://wiki.fileformat.com/presentation/ppsx/
-
### PPSM {#PPSM}
```
public static final FileType PPSM
```
-Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft PowerPoint 2007 or higher. Learn more about this file format [here][].
-
+Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft
+PowerPoint 2007 or higher. Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/ppsm/).
-[here]: https://wiki.fileformat.com/presentation/ppsm/
### POT {#POT}
```
@@ -249,10 +385,10 @@ public static final FileType POT
```
-Files with .POT extension represent Microsoft PowerPoint template files in binary format created by PowerPoint 97-2003 versions. Learn more about this file format [here][].
-
+Files with .POT extension represent Microsoft PowerPoint template files in binary format created by PowerPoint 97-2003 versions.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pot/).
-[here]: https://wiki.fileformat.com/presentation/pot/
### XLS {#XLS}
```
@@ -260,21 +396,21 @@ public static final FileType XLS
```
-Files with XLS extension represent Excel Binary File Format. Such files can be created by Microsoft Excel as well as other similar spreadsheet programs such as OpenOffice Calc or Apple Numbers. Learn more about this file format [here][].
+Files with XLS extension represent Excel Binary File Format. Such files can be created by Microsoft Excel
+as well as other similar spreadsheet programs such as OpenOffice Calc or Apple Numbers. Learn more about
+this file format [here](../https://wiki.fileformat.com/specification/spreadsheet/xls/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xls/
-
### XLSX {#XLSX}
```
public static final FileType XLSX
```
-XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release of Microsoft Office 2007. Learn more about this file format [here][].
-
+XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release
+of Microsoft Office 2007. Learn more about this file format
+[here](../https://wiki.fileformat.com/specification/spreadsheet/xlsx/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xlsx/
### XLSM {#XLSM}
```
@@ -282,21 +418,20 @@ public static final FileType XLSM
```
-Files with XLSM extension is a type of Spreasheet files that support Macros. Learn more about this file format [here][].
+Files with XLSM extension is a type of Spreasheet files that support Macros. Learn more about this file format
+[here](../https://wiki.fileformat.com/specification/spreadsheet/xlsm/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xlsm/
-
### XLT {#XLT}
```
public static final FileType XLT
```
-Files with .XLT extension are template files created with Microsoft Excel which is a spreadsheet application which comes as part of Microsoft Office suite. Learn more about this file format [here][].
-
+Files with .XLT extension are template files created with Microsoft Excel which is a spreadsheet
+application which comes as part of Microsoft Office suite. Learn more about this file format
+[here](../https://wiki.fileformat.com/specification/spreadsheet/xlt/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xlt/
### ODT {#ODT}
```
@@ -304,21 +439,22 @@ public static final FileType ODT
```
-ODT files are type of documents created with word processing applications that are based on OpenDocument Text File format. These are created with word processor applications such as free OpenOffice Writer and can hold content such as text, images, objects and styles. Learn more about this file format [here][].
+ODT files are type of documents created with word processing applications that are based on OpenDocument
+Text File format. These are created with word processor applications such as free OpenOffice Writer and
+can hold content such as text, images, objects and styles. Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/odt/).
-[here]: https://wiki.fileformat.com/word-processing/odt/
-
### DOT {#DOT}
```
public static final FileType DOT
```
-Files with .DOT extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOC or DOCX files. Learn more about this file format [here][].
-
+Files with .DOT extension are template files created by Microsoft Word to have pre-formatted settings
+for generation of further DOC or DOCX files. Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/dot/).
-[here]: https://wiki.fileformat.com/word-processing/dot/
### DOC {#DOC}
```
@@ -326,10 +462,10 @@ public static final FileType DOC
```
-Files with .doc extension represent documents generated by Microsoft Word or other word processing documents in binary file format. Learn more about this file format [here][].
-
+Files with .doc extension represent documents generated by Microsoft Word or other word processing
+documents in binary file format. Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/doc/).
-[here]: https://wiki.fileformat.com/word-processing/doc/
### DOCX {#DOCX}
```
@@ -337,21 +473,22 @@ public static final FileType DOCX
```
-DOCX is a well-known format for Microsoft Word documents. Introduced from 2007 with the release of Microsoft Office 2007, the structure of this new Document format was changed from plain binary to a combination of XML and binary files. Learn more about this file format [here][].
+DOCX is a well-known format for Microsoft Word documents. Introduced from 2007 with the release
+of Microsoft Office 2007, the structure of this new Document format was changed from plain binary
+to a combination of XML and binary files. Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/docx/).
-[here]: https://wiki.fileformat.com/word-processing/docx/
-
### XLTX {#XLTX}
```
public static final FileType XLTX
```
-Files with XLTX extension represent Microsoft Excel Template files that are based on the Office OpenXML file format specifications. Learn more about this file format [here][].
-
+Files with XLTX extension represent Microsoft Excel Template files that are based on the Office OpenXML
+file format specifications. Learn more about this file format
+[here](../https://wiki.fileformat.com/specification/spreadsheet/xltx/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xltx/
### DOTX {#DOTX}
```
@@ -359,10 +496,10 @@ public static final FileType DOTX
```
-Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files. Learn more about this file format [here][].
-
+Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings
+for generation of further DOCX files. Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/dotx/).
-[here]: https://wiki.fileformat.com/word-processing/dotx/
### ODS {#ODS}
```
@@ -370,21 +507,21 @@ public static final FileType ODS
```
-Files with ODS extension stand for OpenDocument Spreadsheet Document format that are editable by user. Learn more about this file format [here][].
+Files with ODS extension stand for OpenDocument Spreadsheet Document format that are editable by user.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/ods/).
-[here]: https://wiki.fileformat.com/spreadsheet/ods/
-
### XLTM {#XLTM}
```
public static final FileType XLTM
```
-The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled template files. Learn more about this file format [here][].
-
+The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled
+template files. Learn more about this file format
+[here](../https://wiki.fileformat.com/specification/spreadsheet/xltm/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xltm/
### XLSB {#XLSB}
```
@@ -392,10 +529,10 @@ public static final FileType XLSB
```
-XLSB file format specifies the Excel Binary File Format, which is a collection of records and structures that specify Excel workbook content. Learn more about this file format [here][].
-
+XLSB file format specifies the Excel Binary File Format, which is a collection of records and
+structures that specify Excel workbook content. Learn more about this file format
+[here](../https://wiki.fileformat.com/specification/spreadsheet/xlsb/).
-[here]: https://wiki.fileformat.com/specification/spreadsheet/xlsb/
### DOTM {#DOTM}
```
@@ -403,21 +540,19 @@ public static final FileType DOTM
```
-A file with DOTM extension represents template file created with Microsoft Word 2007 or higher. Learn more about this file format [here][].
+A file with DOTM extension represents template file created with Microsoft Word 2007 or higher.
+Learn more about this file format [here](../https://wiki.fileformat.com/word-processing/dotm/).
-[here]: https://wiki.fileformat.com/word-processing/dotm/
-
### DOCM {#DOCM}
```
public static final FileType DOCM
```
-DOCM files are Microsoft Word 2007 or higher generated documents with the ability to run macros. Learn more about this file format [here][].
-
+DOCM files are Microsoft Word 2007 or higher generated documents with the ability to run macros.
+Learn more about this file format [here](../https://wiki.fileformat.com/word-processing/docm/).
-[here]: https://wiki.fileformat.com/word-processing/docm/
### EPUB {#EPUB}
```
@@ -425,21 +560,22 @@ public static final FileType EPUB
```
-Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers. Learn more about this file format [here][].
+Files with .EPUB extension are an e-book file format that provide a standard digital publication format for publishers and consumers.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/ebook/epub/).
-[here]: https://wiki.fileformat.com/ebook/epub/
-
### TTF {#TTF}
```
public static final FileType TTF
```
-TTF represents font files based on the TrueType specifications font technology. TrueType fonts provide highest quality display on computer screens and printers without any dependency on resolution. Learn more about this file format [here][].
-
+TTF represents font files based on the TrueType specifications font technology.
+TrueType fonts provide highest quality display on computer screens and printers without any dependency on resolution.
+Learn more about this file format
+[here](../https://docs.fileformat.com/font/ttf/).
-[here]: https://docs.fileformat.com/font/ttf/
### TTC {#TTC}
```
@@ -447,21 +583,23 @@ public static final FileType TTC
```
-TTC (TrueType Collection) is a TrueType font collection format. A TTC file can combine the multiple font files into it. Learn more about this file format [here][].
+TTC (TrueType Collection) is a TrueType font collection format.
+A TTC file can combine the multiple font files into it.
+Learn more about this file format
+[here](../https://docs.fileformat.com/font/ttc/).
-[here]: https://docs.fileformat.com/font/ttc/
-
### OTF {#OTF}
```
public static final FileType OTF
```
-A file with .otf extension refers to OpenType font format. OTF font format is more scalable and extends the existing features of TTF formats for digital typography. Learn more about this file format [here][].
-
+A file with .otf extension refers to OpenType font format.
+OTF font format is more scalable and extends the existing features of TTF formats for digital typography.
+Learn more about this file format
+[here](../https://docs.fileformat.com/font/otf/).
-[here]: https://docs.fileformat.com/font/otf/
### OTC {#OTC}
```
@@ -469,7 +607,9 @@ public static final FileType OTC
```
-OTC (OpenType Collection) is a OpenType font collection format. An OTC file can combine the multiple font files into it.
+OTC (OpenType Collection) is a OpenType font collection format.
+An OTC file can combine the multiple font files into it.
+
### ONE {#ONE}
```
@@ -477,21 +617,21 @@ public static final FileType ONE
```
-File represented by .ONE extension are created by Microsoft OneNote application. Learn more about this file format [here][].
+File represented by .ONE extension are created by Microsoft OneNote application.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/note-taking/one/).
-[here]: https://wiki.fileformat.com/note-taking/one/
-
### ZIP {#ZIP}
```
public static final FileType ZIP
```
-ZIP file extension represents archives that can hold one or more files or directories. Learn more about this file format [here][].
-
+ZIP file extension represents archives that can hold one or more files or directories.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/compression/zip/).
-[here]: https://wiki.fileformat.com/compression/zip/
### ZIPX {#ZIPX}
```
@@ -501,27 +641,30 @@ public static final FileType ZIPX
ZIPX is a Zip file in which WinZip has used one or more of its available advanced compression methods.
+
### JAR {#JAR}
```
public static final FileType JAR
```
-JAR is a Java Archive file that contains many different application related files as a single file. This file format was created to reduce the speed of loading a downloaded Java Applet in browser via HTTP transaction, Learn more about this file format [here][].
+JAR is a Java Archive file that contains many different application related files as a single file.
+This file format was created to reduce the speed of loading a downloaded Java Applet in browser via HTTP transaction,
+Learn more about this file format
+[here](../https://docs.fileformat.com/programming/jar/).
-[here]: https://docs.fileformat.com/programming/jar/
-
### VCF {#VCF}
```
public static final FileType VCF
```
-VCF (Virtual Card Format) or vCard is a digital file format for storing contact information. The format is widely used for data interchange among popular information exchange applications. Learn more about this file format [here][].
-
+VCF (Virtual Card Format) or vCard is a digital file format for storing contact information.
+The format is widely used for data interchange among popular information exchange applications.
+Learn more about this file format
+[here](../https://docs.fileformat.com/email/vcf/).
-[here]: https://docs.fileformat.com/email/vcf/
### VCR {#VCR}
```
@@ -529,7 +672,9 @@ public static final FileType VCR
```
-VCR (Virtual Card Format) or vCard is a digital file format for storing contact information. The format is widely used for data interchange among popular information exchange applications.
+VCR (Virtual Card Format) or vCard is a digital file format for storing contact information.
+The format is widely used for data interchange among popular information exchange applications.
+
### EML {#EML}
```
@@ -537,21 +682,20 @@ public static final FileType EML
```
-EML file format represents email messages saved using Outlook and other relevant applications. Learn more about this file format [here][].
+EML file format represents email messages saved using Outlook and other relevant applications.
+Learn more about this file format [here](../https://wiki.fileformat.com/email/eml/).
-[here]: https://wiki.fileformat.com/email/eml/
-
### MSG {#MSG}
```
public static final FileType MSG
```
-MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact, appointment, or other tasks. Learn more about this file format [here][].
-
+MSG is a file format used by Microsoft Outlook and Exchange to store email messages, contact,
+appointment, or other tasks. Learn more about this file format
+[here](../https://wiki.fileformat.com/email/msg/).
-[here]: https://wiki.fileformat.com/email/msg/
### MP3 {#MP3}
```
@@ -559,10 +703,11 @@ public static final FileType MP3
```
-Files with MP3 extension are digitally encoded file formats for audio files that are formally based on the MPEG-1 Audio Layer III or MPEG-2 Audio Layer III. Learn more about this file format [here][].
-
+Files with MP3 extension are digitally encoded file formats for audio files that are formally based
+on the MPEG-1 Audio Layer III or MPEG-2 Audio Layer III.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/audio/mp3/).
-[here]: https://wiki.fileformat.com/audio/mp3/
### WAV {#WAV}
```
@@ -570,21 +715,22 @@ public static final FileType WAV
```
-WAV, known for WAVE (Waveform Audio File Format), is a subset of Microsoft's Resource Interchange File Format (RIFF) specification for storing digital audio files. Learn more about this file format [here][].
+WAV, known for WAVE (Waveform Audio File Format), is a subset of Microsoft's Resource Interchange File Format (RIFF)
+specification for storing digital audio files.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/audio/wav/).
-[here]: https://wiki.fileformat.com/audio/wav/
-
### BMP {#BMP}
```
public static final FileType BMP
```
-Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap (DIB) file format. Learn more about this file format [here][].
-
+Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images.
+These images are independent of graphics adapter and are also called device independent bitmap (DIB) file
+format. Learn more about this file format [here](../https://wiki.fileformat.com/image/bmp/).
-[here]: https://wiki.fileformat.com/image/bmp/
### DJVU {#DJVU}
```
@@ -592,10 +738,11 @@ public static final FileType DJVU
```
-DjVu is a graphics file format intended for scanned documents and books especially those which contain the combination of text, drawings, images and photographs. Learn more about this file format [here][].
-
+DjVu is a graphics file format intended for scanned documents and books especially those which contain
+the combination of text, drawings, images and photographs.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/djvu/).
-[here]: https://wiki.fileformat.com/image/djvu/
### DJV {#DJV}
```
@@ -603,21 +750,21 @@ public static final FileType DJV
```
-DjVu is a graphics file format intended for scanned documents and books especially those which contain the combination of text, drawings, images and photographs. Learn more about this file format [here][].
+DjVu is a graphics file format intended for scanned documents and books especially those which contain
+the combination of text, drawings, images and photographs.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/djvu/).
-[here]: https://wiki.fileformat.com/image/djvu/
-
### GIF {#GIF}
```
public static final FileType GIF
```
-A GIF or Graphical Interchange Format is a type of highly compressed image. Learn more about this file format [here][].
-
+A GIF or Graphical Interchange Format is a type of highly compressed image.
+Learn more about this file format [here](../https://wiki.fileformat.com/image/gif/).
-[here]: https://wiki.fileformat.com/image/gif/
### JPG {#JPG}
```
@@ -625,10 +772,9 @@ public static final FileType JPG
```
-A JPEG is a type of image format that is saved using the method of lossy compression. Learn more about this file format [here][].
-
+A JPEG is a type of image format that is saved using the method of lossy compression.
+Learn more about this file format [here](../https://wiki.fileformat.com/image/jpeg/).
-[here]: https://wiki.fileformat.com/image/jpeg/
### JPE {#JPE}
```
@@ -636,21 +782,20 @@ public static final FileType JPE
```
-A JPEG is a type of image format that is saved using the method of lossy compression. Learn more about this file format [here][].
+A JPEG is a type of image format that is saved using the method of lossy compression.
+Learn more about this file format [here](../https://wiki.fileformat.com/image/jpeg/).
-[here]: https://wiki.fileformat.com/image/jpeg/
-
### JPEG {#JPEG}
```
public static final FileType JPEG
```
-A JPEG is a type of image format that is saved using the method of lossy compression. Learn more about this file format [here][].
-
+A JPEG is a type of image format that is saved using the method of lossy compression.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/jpeg/).
-[here]: https://wiki.fileformat.com/image/jpeg/
### JP2 {#JP2}
```
@@ -658,10 +803,11 @@ public static final FileType JP2
```
-JPEG 2000 (JP2) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about this file format [here][].
-
+JPEG 2000 (JP2) is an image coding system and state-of-the-art image compression standard.
+Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/jp2/).
-[here]: https://wiki.fileformat.com/image/jp2/
### J2K {#J2K}
```
@@ -669,21 +815,23 @@ public static final FileType J2K
```
-JPEG 2000 (J2K) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about this file format [here][].
+JPEG 2000 (J2K) is an image coding system and state-of-the-art image compression standard.
+Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/j2k/).
-[here]: https://wiki.fileformat.com/image/j2k/
-
### JPF {#JPF}
```
public static final FileType JPF
```
-JPEG 2000 (JPF) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about this file format [here][].
-
+JPEG 2000 (JPF) is an image coding system and state-of-the-art image compression standard.
+Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/jpf/).
-[here]: https://wiki.fileformat.com/image/jpf/
### JPX {#JPX}
```
@@ -691,21 +839,23 @@ public static final FileType JPX
```
-JPEG 2000 (JPX) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about this file format [here][].
+JPEG 2000 (JPX) is an image coding system and state-of-the-art image compression standard.
+Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/jpx/).
-[here]: https://wiki.fileformat.com/image/jpx/
-
### JPM {#JPM}
```
public static final FileType JPM
```
-JPEG 2000 (JPM) is an image coding system and state-of-the-art image compression standard. Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once. Learn more about this file format [here][].
-
+JPEG 2000 (JPM) is an image coding system and state-of-the-art image compression standard.
+Designed, using wavelet technology JPEG 2000 can code lossless content in any quality at once.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/jpm/).
-[here]: https://wiki.fileformat.com/image/jpm/
### MJ2 {#MJ2}
```
@@ -713,7 +863,9 @@ public static final FileType MJ2
```
-Video format defined as Motion JPEG 2000 (Part 3); contains a motion sequence of JPEG 2000 images; does not involve inter-frame coding, but instead encodes each frame independently using JPEG 2000 compression.
+Video format defined as Motion JPEG 2000 (Part 3); contains a motion sequence of JPEG 2000 images;
+does not involve inter-frame coding, but instead encodes each frame independently using JPEG 2000 compression.
+
### PNG {#PNG}
```
@@ -721,10 +873,9 @@ public static final FileType PNG
```
-PNG, Portable Network Graphics, refers to a type of raster image file format that use loseless compression. Learn more about this file format [here][].
-
+PNG, Portable Network Graphics, refers to a type of raster image file format that use loseless compression.
+Learn more about this file format [here](../https://wiki.fileformat.com/image/png/).
-[here]: https://wiki.fileformat.com/image/png/
### TIFF {#TIFF}
```
@@ -732,10 +883,10 @@ public static final FileType TIFF
```
-TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety of devices that comply with this file format standard. Learn more about this file format [here][].
-
+TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety
+of devices that comply with this file format standard. Learn more about this file format
+[here](../https://wiki.fileformat.com/image/tiff/).
-[here]: https://wiki.fileformat.com/image/tiff/
### TIF {#TIF}
```
@@ -743,21 +894,22 @@ public static final FileType TIF
```
-TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety of devices that comply with this file format standard. Learn more about this file format [here][].
+TIFF or TIF, Tagged Image File Format, represents raster images that are meant for usage on a variety
+of devices that comply with this file format standard. Learn more about this file format
+[here](../https://wiki.fileformat.com/image/tiff/).
-[here]: https://wiki.fileformat.com/image/tiff/
-
### WEBP {#WEBP}
```
public static final FileType WEBP
```
-WebP, introduced by Google, is a modern raster web image file format that is based on lossless and lossy compression. It provides same image quality while considerably reducing the image size. Learn more about this file format [here][].
-
+WebP, introduced by Google, is a modern raster web image file format that is based on lossless and
+lossy compression. It provides same image quality while considerably reducing the image size.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/webp/).
-[here]: https://wiki.fileformat.com/image/webp/
### EMF {#EMF}
```
@@ -765,10 +917,10 @@ public static final FileType EMF
```
-Enhanced metafile format (EMF) stores graphical images device-independently. Learn more about this file format [here][].
-
+Enhanced metafile format (EMF) stores graphical images device-independently.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/emf/).
-[here]: https://wiki.fileformat.com/image/emf/
### WMF {#WMF}
```
@@ -776,21 +928,21 @@ public static final FileType WMF
```
-Files with WMF extension represent Microsoft Windows Metafile (WMF) for storing vector as well as bitmap-format images data. Learn more about this file format [here][].
+Files with WMF extension represent Microsoft Windows Metafile (WMF) for storing vector as well as bitmap-format images data.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/wmf/).
-[here]: https://wiki.fileformat.com/image/wmf/
-
### PSD {#PSD}
```
public static final FileType PSD
```
-PSD, Photoshop Document, represents Adobe Photoshop's native file format used for graphics designing and development. Learn more about this file format [here][].
-
+PSD, Photoshop Document, represents Adobe Photoshop's native file format used for graphics designing and development.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/image/psd/).
-[here]: https://wiki.fileformat.com/image/psd/
### MPP {#MPP}
```
@@ -798,10 +950,10 @@ public static final FileType MPP
```
-MPP is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software. Learn more about this file format [here][].
-
+MPP is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/project-management/mpp/).
-[here]: https://wiki.fileformat.com/project-management/mpp/
### MPT {#MPT}
```
@@ -809,21 +961,21 @@ public static final FileType MPT
```
-MPT is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software. Learn more about this file format [here][].
+MPT is proprietary file format developed by Microsoft as file format for Microsoft Project (MSP) which is a project management application software.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/project-management/mpt/).
-[here]: https://wiki.fileformat.com/project-management/mpt/
-
### VSD {#VSD}
```
public static final FileType VSD
```
-VSD files are drawings created with Microsoft Visio application to represent variety of graphical objects and the interconnection between these. Learn more about this file format [here][].
-
+VSD files are drawings created with Microsoft Visio application to represent variety of graphical
+objects and the interconnection between these. Learn more about this file format
+[here](../https://wiki.fileformat.com/visio/vsd/).
-[here]: https://wiki.fileformat.com/visio/vsd/
### VDX {#VDX}
```
@@ -831,21 +983,20 @@ public static final FileType VDX
```
-Any drawing or chart created in Microsoft Visio, but saved in XML format have .VDX extension. Learn more about this file format [here][].
+Any drawing or chart created in Microsoft Visio, but saved in XML format have .VDX extension.
+Learn more about this file format [here](../https://wiki.fileformat.com/visio/vdx/).
-[here]: https://wiki.fileformat.com/visio/vdx/
-
### VSDX {#VSDX}
```
public static final FileType VSDX
```
-Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft Office 2013 onwards. Learn more about this file format [here][].
-
+Files with .VSDX extension represent Microsoft Visio file format introduced from Microsoft
+Office 2013 onwards. Learn more about this file format
+[here](../https://wiki.fileformat.com/visio/vsdx/).
-[here]: https://wiki.fileformat.com/visio/vsdx/
### VSS {#VSS}
```
@@ -853,21 +1004,21 @@ public static final FileType VSS
```
-VSS are stencil files created with Microsoft Visio 2007 and earlier. Stencil files provide drawing objects that can be included in a .VSD Visio drawing. Learn more about this file format [here][].
+VSS are stencil files created with Microsoft Visio 2007 and earlier. Stencil files provide drawing
+objects that can be included in a .VSD Visio drawing. Learn more about this file format
+[here](../https://wiki.fileformat.com/visio/vss/).
-[here]: https://wiki.fileformat.com/visio/vss/
-
### VSX {#VSX}
```
public static final FileType VSX
```
-Files with .VSX extension refer to stencils that consist of drawings and shapes that are used for creating diagrams in Microsoft Visio. Learn more about this file format [here][].
-
+Files with .VSX extension refer to stencils that consist of drawings and shapes that are used for
+creating diagrams in Microsoft Visio. Learn more about this file format
+[here](../https://wiki.fileformat.com/visio/vsx/).
-[here]: https://wiki.fileformat.com/visio/vsx/
### VTX {#VTX}
```
@@ -875,10 +1026,10 @@ public static final FileType VTX
```
-Files with .VTX extension refer to Microsoft Visio drawing template that is saved to disc in XML file format. Learn more about this file format [here][].
-
+Files with .VTX extension refer to Microsoft Visio drawing template that is saved to disc in XML file format.
+Learn more about this file format
+[here](../https://docs.fileformat.com/visio/vtx/).
-[here]: https://docs.fileformat.com/visio/vtx/
### DICOM {#DICOM}
```
@@ -886,21 +1037,24 @@ public static final FileType DICOM
```
-DICOM is the acronym for Digital Imaging and Communications in Medicine and pertains to the field of Medical Informatics. DICOM is used for the integration of medical imaging devices like printers, servers, scanners etc from various vendors and also contains identification data of each patient for uniqueness. Learn more about this file format [here][].
+DICOM is the acronym for Digital Imaging and Communications in Medicine and pertains to the field of Medical Informatics.
+DICOM is used for the integration of medical imaging devices like printers, servers,
+scanners etc from various vendors and also contains identification data of each patient for uniqueness.
+Learn more about this file format
+[here](../https://docs.fileformat.com/image/dicom/).
-[here]: https://docs.fileformat.com/image/dicom/
-
### HEIF {#HEIF}
```
public static final FileType HEIF
```
-An HEIF file is a High-Efficiency Container Image file format that is capable of storing a single image or a sequence of images in a single file. HEIF file format compresses the images using the High Efficiency Video Coding (HEVC) standard. Learn more about this file format [here][].
-
+An HEIF file is a High-Efficiency Container Image file format that is capable of storing a single image or a sequence of images in a single file.
+HEIF file format compresses the images using the High Efficiency Video Coding (HEVC) standard.
+Learn more about this file format
+[here](../https://docs.fileformat.com/image/heif/).
-[here]: https://docs.fileformat.com/image/heif/
### HEIC {#HEIC}
```
@@ -908,10 +1062,11 @@ public static final FileType HEIC
```
-An HEIC file is a High-Efficiency Container Image file format that can store multiple images as a collection in a single file. HEIC, like HEIF, are compressed using the High Efficiency Video Coding (HEVC) standard and are smaller in size without compromising the quality. Learn more about this file format [here][].
-
+An HEIC file is a High-Efficiency Container Image file format that can store multiple images as a collection in a single file.
+HEIC, like HEIF, are compressed using the High Efficiency Video Coding (HEVC) standard and are smaller in size without compromising the quality.
+Learn more about this file format
+[here](../https://docs.fileformat.com/image/heic/).
-[here]: https://docs.fileformat.com/image/heic/
### DWG {#DWG}
```
@@ -919,21 +1074,21 @@ public static final FileType DWG
```
-Files with DWG extension represent proprietary binary files used for containing 2D and 3D design data. Learn more about this file format [here][].
+Files with DWG extension represent proprietary binary files used for containing 2D and 3D design data.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/cad/dwg/).
-[here]: https://wiki.fileformat.com/cad/dwg/
-
### DXF {#DXF}
```
public static final FileType DXF
```
-DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file. Learn more about this file format [here][].
-
+DXF, Drawing Interchange Format, or Drawing Exchange Format, is a tagged data representation of AutoCAD drawing file.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/cad/dxf/).
-[here]: https://wiki.fileformat.com/cad/dxf/
### AVI {#AVI}
```
@@ -941,10 +1096,10 @@ public static final FileType AVI
```
-The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft. Learn more about this file format [here][].
-
+The AVI file format is an Audio Video multimedia container file format that was introduced by Microsoft.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/avi/).
-[here]: https://wiki.fileformat.com/video/avi/
### MOV {#MOV}
```
@@ -952,21 +1107,23 @@ public static final FileType MOV
```
-MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks, each track holds a particular type of data i.e. Video, Audio, text etc. Learn more about this file format [here][].
+MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks,
+each track holds a particular type of data i.e. Video, Audio, text etc.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/mov/).
-[here]: https://wiki.fileformat.com/video/mov/
-
### QT {#QT}
```
public static final FileType QT
```
-MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks, each track holds a particular type of data i.e. Video, Audio, text etc. Learn more about this file format [here][].
-
+MOV or QuickTime File format is multimedia container which is developed by Apple: contains one or more tracks,
+each track holds a particular type of data i.e. Video, Audio, text etc.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/mov/).
-[here]: https://wiki.fileformat.com/video/mov/
### MKA {#MKA}
```
@@ -974,21 +1131,23 @@ public static final FileType MKA
```
-MKA (Matroska Audio) is the Matroska multimedia container format used for Audio. The MKA format supports several different kinds of audio compression algorithms such as MP3, AAC and Vobis. Learn more about this file format [here][].
+MKA (Matroska Audio) is the Matroska multimedia container format used for Audio.
+The MKA format supports several different kinds of audio compression algorithms such as MP3, AAC and Vobis.
+Learn more about this file format
+[here](../https://docs.fileformat.com/audio/mka/).
-[here]: https://docs.fileformat.com/audio/mka/
-
### MKV {#MKV}
```
public static final FileType MKV
```
-MKV (Matroska Video) is a multimedia container similar to MOV and AVI format but it supports more than one audio and subtitle track in the same file. Learn more about this file format [here][].
-
+MKV (Matroska Video) is a multimedia container similar to MOV and AVI format
+but it supports more than one audio and subtitle track in the same file.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/mkv/).
-[here]: https://wiki.fileformat.com/video/mkv/
### MK3D {#MK3D}
```
@@ -996,21 +1155,23 @@ public static final FileType MK3D
```
-MK3D is actually stereoscopic 3D video created using Matroska 3D format. The MKV file container uses a StereoMode field\\u2019s value to define the type of stereoscopic 3D video stuff. Learn more about this file format [here][].
+MK3D is actually stereoscopic 3D video created using Matroska 3D format.
+The MKV file container uses a StereoMode field\\u2019s value to define the type of stereoscopic 3D video stuff.
+Learn more about this file format
+[here](../https://docs.fileformat.com/video/mk3d/).
-[here]: https://docs.fileformat.com/video/mk3d/
-
### WEBM {#WEBM}
```
public static final FileType WEBM
```
-WEBM is a video file based on the open, royalty-free WebM file format. It has been designed for sharing video on the web and defines the file container structure including video and audio formats. Learn more about this file format [here][].
-
+WEBM is a video file based on the open, royalty-free WebM file format.
+It has been designed for sharing video on the web and defines the file container structure including video and audio formats.
+Learn more about this file format
+[here](../https://docs.fileformat.com/video/webm/).
-[here]: https://docs.fileformat.com/video/webm/
### FLV {#FLV}
```
@@ -1018,10 +1179,11 @@ public static final FileType FLV
```
-FLV (Flash Video) is a container file format which is used to deliver audio/video content over the internet by using the Adobe Flash Player or Adobe Air. Learn more about this file format [here][].
-
+FLV (Flash Video) is a container file format
+which is used to deliver audio/video content over the internet by using the Adobe Flash Player or Adobe Air.
+Learn more about this file format
+[here](../https://docs.fileformat.com/video/flv/).
-[here]: https://docs.fileformat.com/video/flv/
### ASF {#ASF}
```
@@ -1029,21 +1191,25 @@ public static final FileType ASF
```
-The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams. Microsoft Windows Media Video (WMV) is the compressed video format and Microsoft Windows Media Audio (WMA) is the compressed audio format along with additional metadata in the ASF container developed by Microsoft. Learn more about this file format [here][].
+The Advanced Systems Format (ASF) is a digital multimedia container designed primarily for storing and transmitting media streams.
+Microsoft Windows Media Video (WMV) is the compressed video format and Microsoft Windows Media Audio (WMA)
+is the compressed audio format along with additional metadata in the ASF container developed by Microsoft.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/video/wmv/).
-[here]: https://wiki.fileformat.com/video/wmv/
-
### DNG {#DNG}
```
public static final FileType DNG
```
-DNG is a digital camera image format used for the storage of raw files. It has been developed by Adobe in September 2004. It was basically developed for digital photography. DNG is an extension of TIFF/EP standard format and uses metadata significantly. In order to manipulate raw data from digital cameras with the ease of flexibility and artistic control, photographers opt camera raw files. JPEG and TIFF formats store images that are processed by the camera, therefore, not much room for alteration is available in such formats. [here][].
-
+DNG is a digital camera image format used for the storage of raw files. It has been developed by Adobe in September 2004.
+It was basically developed for digital photography. DNG is an extension of TIFF/EP standard format and uses metadata significantly.
+In order to manipulate raw data from digital cameras with the ease of flexibility and artistic control, photographers opt camera raw files.
+JPEG and TIFF formats store images that are processed by the camera, therefore, not much room for alteration is available in such formats.
+[here](../https://wiki.fileformat.com/image/dng/).
-[here]: https://wiki.fileformat.com/image/dng/
### CR2 {#CR2}
```
@@ -1051,10 +1217,9 @@ public static final FileType CR2
```
-The .CR2 file format (Canon RAW version 2) is a digital photography RAW format created by Canon. [here][].
-
+The .CR2 file format (Canon RAW version 2) is a digital photography RAW format created by Canon.
+[here](../https://wiki.fileformat.com/image/cr2/).
-[here]: https://wiki.fileformat.com/image/cr2/
### SEVENZIP {#SEVENZIP}
```
@@ -1062,10 +1227,14 @@ public static final FileType SEVENZIP
```
-7z is a compressed archive file format that supports several different data compression, encryption and pre-processing algorithms. The 7z format initially appeared as implemented by the 7-Zip archiver. The 7-Zip program is publicly available under the terms of the GNU Lesser General Public License. [here][] .
+7z is a compressed archive file format that supports several different data compression,
+encryption and pre-processing algorithms.
+The 7z format initially appeared as implemented by the 7-Zip archiver.
+The 7-Zip program is publicly available under the terms of the GNU Lesser General Public License.
+[here](../https://wiki.fileformat.com/compression/zip/)
+.
-[here]: https://wiki.fileformat.com/compression/zip/
### RAR {#RAR}
```
@@ -1073,10 +1242,11 @@ public static final FileType RAR
```
-RAR is a proprietary archive file format that supports data compression, error correction and file spanning. [here][] .
+RAR is a proprietary archive file format that supports data compression, error correction and file spanning.
+[here](../https://wiki.fileformat.com/compression/rar/)
+.
-[here]: https://wiki.fileformat.com/compression/rar/
### TAR {#TAR}
```
@@ -1084,10 +1254,11 @@ public static final FileType TAR
```
-In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes. [here][] .
+In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
+[here](../https://wiki.fileformat.com/compression/tar/)
+.
-[here]: https://wiki.fileformat.com/compression/tar/
### GLTF {#GLTF}
```
@@ -1097,6 +1268,7 @@ public static final FileType GLTF
glTF (GL Transmission Format) is a 3D file format used for 3D scenes and models.
+
### SVG {#SVG}
```
public static final FileType SVG
@@ -1105,6 +1277,7 @@ public static final FileType SVG
SVG (Scalable Vector Graphics) is an XML-based vector image format.
+
### AVIF {#AVIF}
```
public static final FileType AVIF
@@ -1113,6 +1286,7 @@ public static final FileType AVIF
AVIF (AV1 Image File Format) is an image format based on the AV1 video codec.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -1121,8 +1295,10 @@ public final String getDescription()
Gets the file type description.
+
**Returns:**
java.lang.String - The file type description.
+
### getExtension() {#getExtension--}
```
public final String getExtension()
@@ -1131,8 +1307,10 @@ public final String getExtension()
Gets the file extension.
+
**Returns:**
java.lang.String - The file extension.
+
### getFileFormat() {#getFileFormat--}
```
public final FileFormat getFileFormat()
@@ -1141,18 +1319,24 @@ public final FileFormat getFileFormat()
Gets the file format.
+
**Returns:**
[FileFormat](../../com.groupdocs.metadata.core/fileformat) - The file format.
+
### toString() {#toString--}
```
public String toString()
```
-Returns a String that represents the current FileType .
+Returns a String that represents the current
+FileType
+.
+
**Returns:**
java.lang.String - A String that represents the current FileType .
+
### getSupportedFileTypes() {#getSupportedFileTypes--}
```
public static Iterable getSupportedFileTypes()
@@ -1161,8 +1345,10 @@ public static Iterable getSupportedFileTypes()
Retrieves supported file types.
+
**Returns:**
java.lang.Iterable - A collection of supported file types.
+
### fromExtension(String fileExtension) {#fromExtension-java.lang.String-}
```
public static FileType fromExtension(String fileExtension)
@@ -1171,10 +1357,13 @@ public static FileType fromExtension(String fileExtension)
Gets FileType for provided fileExtension
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| fileExtension | java.lang.String | File extension |
+| fileExtension | java.lang.String | File extension
+ |
**Returns:**
[FileType](../../com.groupdocs.metadata.core/filetype) - File type
+
diff --git a/english/java/com.groupdocs.metadata.core/filetypepackage/_index.md b/english/java/com.groupdocs.metadata.core/filetypepackage/_index.md
index da41c44505..1884ade25b 100644
--- a/english/java/com.groupdocs.metadata.core/filetypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/filetypepackage/_index.md
@@ -14,21 +14,25 @@ public class FileTypePackage extends CustomPackage
Represents a metadata package containing file format information.
+
**Learn more**
- * [Get document info][]
- * [Supported file formats][]
+* [Get document info](../https://docs.groupdocs.com/display/metadatajava/Get+document+info)
+* [Supported file formats](../https://docs.groupdocs.com/display/metadatajava/Supported+File+Formats)
+
+
-[Get document info]: https://docs.groupdocs.com/display/metadatajava/Get+document+info
-[Supported file formats]: https://docs.groupdocs.com/display/metadatajava/Supported+File+Formats
## Methods
| Method | Description |
| --- | --- |
-| [getFileFormat()](#getFileFormat--) | Gets the file format. |
-| [getMimeType()](#getMimeType--) | Gets the MIME type. |
-| [getExtension()](#getExtension--) | Gets the file extension. |
+| [getFileFormat()](#getFileFormat--) | Gets the file format.
+ |
+| [getMimeType()](#getMimeType--) | Gets the MIME type.
+ |
+| [getExtension()](#getExtension--) | Gets the file extension.
+ |
### getFileFormat() {#getFileFormat--}
```
public final FileFormat getFileFormat()
@@ -37,8 +41,10 @@ public final FileFormat getFileFormat()
Gets the file format.
+
**Returns:**
[FileFormat](../../com.groupdocs.metadata.core/fileformat) - The file format.
+
### getMimeType() {#getMimeType--}
```
public final String getMimeType()
@@ -47,8 +53,10 @@ public final String getMimeType()
Gets the MIME type.
+
**Returns:**
java.lang.String - The MIME type value.
+
### getExtension() {#getExtension--}
```
public final String getExtension()
@@ -57,5 +65,7 @@ public final String getExtension()
Gets the file extension.
+
**Returns:**
java.lang.String - The file extension.
+
diff --git a/english/java/com.groupdocs.metadata.core/flvheader/_index.md b/english/java/com.groupdocs.metadata.core/flvheader/_index.md
index 134b878561..2371cbc98a 100644
--- a/english/java/com.groupdocs.metadata.core/flvheader/_index.md
+++ b/english/java/com.groupdocs.metadata.core/flvheader/_index.md
@@ -14,20 +14,26 @@ public class FlvHeader extends CustomPackage
Represents a FLV video header.
+
**Learn more**
- * [Working with metadata in FLV files][]
+* [Working with metadata in FLV files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+FLV+files)
+
+
-[Working with metadata in FLV files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+FLV+files
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the file version. |
-| [getTypeFlags()](#getTypeFlags--) | Gets the FLV type flags. |
-| [hasAudioTags()](#hasAudioTags--) | Gets a value indicating whether audio tags are present in the file. |
-| [hasVideoTags()](#hasVideoTags--) | Gets a value indicating whether video tags are present in the file. |
+| [getVersion()](#getVersion--) | Gets the file version.
+ |
+| [getTypeFlags()](#getTypeFlags--) | Gets the FLV type flags.
+ |
+| [hasAudioTags()](#hasAudioTags--) | Gets a value indicating whether audio tags are present in the file.
+ |
+| [hasVideoTags()](#hasVideoTags--) | Gets a value indicating whether video tags are present in the file.
+ |
### getVersion() {#getVersion--}
```
public final byte getVersion()
@@ -36,8 +42,10 @@ public final byte getVersion()
Gets the file version.
+
**Returns:**
byte - The file version.
+
### getTypeFlags() {#getTypeFlags--}
```
public final byte getTypeFlags()
@@ -46,8 +54,10 @@ public final byte getTypeFlags()
Gets the FLV type flags.
+
**Returns:**
byte - The FLV type flags.
+
### hasAudioTags() {#hasAudioTags--}
```
public final boolean hasAudioTags()
@@ -56,8 +66,10 @@ public final boolean hasAudioTags()
Gets a value indicating whether audio tags are present in the file.
+
**Returns:**
boolean - True if the FLV file contains audio tags; otherwise, false.
+
### hasVideoTags() {#hasVideoTags--}
```
public final boolean hasVideoTags()
@@ -66,5 +78,7 @@ public final boolean hasVideoTags()
Gets a value indicating whether video tags are present in the file.
+
**Returns:**
boolean - True if the FLV file contains video tags; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.core/flvrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/flvrootpackage/_index.md
index a8a26e1453..e3bd5caa3b 100644
--- a/english/java/com.groupdocs.metadata.core/flvrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/flvrootpackage/_index.md
@@ -17,16 +17,19 @@ public class FlvRootPackage extends RootMetadataPackage implements IXmp
Represents the root package allowing working with metadata in an FLV video.
+
**Learn more**
- * [Working with metadata in FLV files][]
- * [Working with XMP metadata][]
+* [Working with metadata in FLV files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+FLV+files)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This example shows how to read FLV header properties.
+
+This example shows how to read FLV header properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputFlv)) {
> FlvRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getHeader().getVersion());
@@ -36,18 +39,19 @@ This example shows how to read FLV header properties.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in FLV files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+FLV+files
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getHeader()](#getHeader--) | Gets the FLV header package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getHeader()](#getHeader--) | Gets the FLV header package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -56,15 +60,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -73,17 +80,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getHeader() {#getHeader--}
```
@@ -93,5 +103,7 @@ public final FlvHeader getHeader()
Gets the FLV header package.
+
**Returns:**
[FlvHeader](../../com.groupdocs.metadata.core/flvheader) - The FLV header package.
+
diff --git a/english/java/com.groupdocs.metadata.core/gifimagetypepackage/_index.md b/english/java/com.groupdocs.metadata.core/gifimagetypepackage/_index.md
index d937975681..41e33fb6c6 100644
--- a/english/java/com.groupdocs.metadata.core/gifimagetypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/gifimagetypepackage/_index.md
@@ -13,11 +13,13 @@ public class GifImageTypePackage extends ImageTypePackage
```
Represents a metadata package containing GIF-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the version of the format. |
+| [getVersion()](#getVersion--) | Gets the version of the format.
+ |
### getVersion() {#getVersion--}
```
public final String getVersion()
@@ -26,5 +28,7 @@ public final String getVersion()
Gets the version of the format.
+
**Returns:**
java.lang.String - The version of the format.
+
diff --git a/english/java/com.groupdocs.metadata.core/gifrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/gifrootpackage/_index.md
index 53848d67c3..cb4ff3718e 100644
--- a/english/java/com.groupdocs.metadata.core/gifrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/gifrootpackage/_index.md
@@ -17,16 +17,19 @@ public class GifRootPackage extends ImageRootPackage implements IXmp
Represents the root package intended to work with metadata in a GIF image.
+
**Learn more**
- * [Working with metadata in GIF images][]
- * [Working with XMP metadata][]
+* [Working with metadata in GIF images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+GIF+images)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This code snippet shows how to detect the version of a loaded GIF image and extract some additional file format information.
+
+This code snippet shows how to detect the version of a loaded GIF image and extract some additional file format information.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputGif)) {
> GifRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getGifImageType().getFileFormat());
@@ -39,19 +42,21 @@ This code snippet shows how to detect the version of a loaded GIF image and extr
> }
>
> ```
-> ```
+> ````
-[Working with metadata in GIF images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+GIF+images
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getGifImageType()](#getGifImageType--) | Gets the file type metadata package. |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [isXmpSupported()](#isXmpSupported--) | Gets a value indicating whether the XMP metadata is supported for this image. |
+| [getGifImageType()](#getGifImageType--) | Gets the file type metadata package.
+ |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [isXmpSupported()](#isXmpSupported--) | Gets a value indicating whether the XMP metadata is supported for this image.
+ |
### getGifImageType() {#getGifImageType--}
```
public final GifImageTypePackage getGifImageType()
@@ -60,8 +65,10 @@ public final GifImageTypePackage getGifImageType()
Gets the file type metadata package.
+
**Returns:**
[GifImageTypePackage](../../com.groupdocs.metadata.core/gifimagetypepackage) - The file type metadata package.
+
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -70,15 +77,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -87,17 +97,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### isXmpSupported() {#isXmpSupported--}
```
@@ -107,5 +120,7 @@ public final boolean isXmpSupported()
Gets a value indicating whether the XMP metadata is supported for this image.
+
**Returns:**
boolean - True if the XMP metadata is supported for this image; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.core/gpsifdpackage/_index.md b/english/java/com.groupdocs.metadata.core/gpsifdpackage/_index.md
index 9ef3e7c98d..8cdbc19370 100644
--- a/english/java/com.groupdocs.metadata.core/gpsifdpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/gpsifdpackage/_index.md
@@ -13,42 +13,75 @@ public final class GpsIfdPackage extends RawDictionaryBasePackage
```
Represents GPS IFD.
+
## Methods
| Method | Description |
| --- | --- |
-| [getGPSVersionID()](#getGPSVersionID--) | Gets the GPSVersionID. |
-| [getGPSLatitudeRef()](#getGPSLatitudeRef--) | Gets the GPSLatitudeRef. |
-| [getGPSLatitude()](#getGPSLatitude--) | Gets the GPSLatitude. |
-| [getGPSLongitudeRef()](#getGPSLongitudeRef--) | Gets the GPSLongitudeRef. |
-| [getGPSLongitude()](#getGPSLongitude--) | Gets the GPSLongitude. |
-| [getGPSAltitudeRef()](#getGPSAltitudeRef--) | Gets the GPSAltitudeRef. |
-| [getGPSAltitude()](#getGPSAltitude--) | Gets the GPSAltitude. |
-| [getGPSTimeStamp()](#getGPSTimeStamp--) | Gets the GPSTimeStamp. |
-| [getGPSSatellites()](#getGPSSatellites--) | Gets the GPSSatellites. |
-| [getGPSStatus()](#getGPSStatus--) | Gets the GPSStatus. |
-| [getGPSMeasureMode()](#getGPSMeasureMode--) | Gets the GPSMeasureMode. |
-| [getGPSDOP()](#getGPSDOP--) | Gets the GPSDOP. |
-| [getGPSSpeedRef()](#getGPSSpeedRef--) | Gets the GPSSpeedRef. |
-| [getGPSSpeed()](#getGPSSpeed--) | Gets the GPSSpeed. |
-| [getGPSTrackRef()](#getGPSTrackRef--) | Gets the GPSTrackRef. |
-| [getGPSTrack()](#getGPSTrack--) | Gets the GPSTrack. |
-| [getGPSImgDirectionRef()](#getGPSImgDirectionRef--) | Gets the GPSImgDirectionRef. |
-| [getGPSImgDirection()](#getGPSImgDirection--) | Gets the GPSImgDirection. |
-| [getGPSMapDatum()](#getGPSMapDatum--) | Gets the GPSMapDatum. |
-| [getGPSDestLatitudeRef()](#getGPSDestLatitudeRef--) | Gets the GPSDestLatitudeRef. |
-| [getGPSDestLatitude()](#getGPSDestLatitude--) | Gets the GPSDestLatitude. |
-| [getGPSDestLongitudeRef()](#getGPSDestLongitudeRef--) | Gets the GPSDestLongitudeRef. |
-| [getGPSDestLongitude()](#getGPSDestLongitude--) | Gets the GPSDestLongitude. |
-| [getGPSDestBearingRef()](#getGPSDestBearingRef--) | Gets the GPSDestBearingRef. |
-| [getGPSDestBearing()](#getGPSDestBearing--) | Gets the GPSDestBearing. |
-| [getGPSDestDistanceRef()](#getGPSDestDistanceRef--) | Gets the GPSDestDistanceRef. |
-| [getGPSDestDistance()](#getGPSDestDistance--) | Gets the GPSDestDistance. |
-| [getGPSProcessingMethod()](#getGPSProcessingMethod--) | Gets the GPSProcessingMethod. |
-| [getGPSAreaInformation()](#getGPSAreaInformation--) | Gets the GPSAreaInformation. |
-| [getGPSDateStamp()](#getGPSDateStamp--) | Gets the GPSDateStamp. |
-| [getGPSDifferential()](#getGPSDifferential--) | Gets the GPSDifferential. |
-| [getGPSHPositioningError()](#getGPSHPositioningError--) | Gets the GPSHPositioningError. |
+| [getGPSVersionID()](#getGPSVersionID--) | Gets the GPSVersionID.
+ |
+| [getGPSLatitudeRef()](#getGPSLatitudeRef--) | Gets the GPSLatitudeRef.
+ |
+| [getGPSLatitude()](#getGPSLatitude--) | Gets the GPSLatitude.
+ |
+| [getGPSLongitudeRef()](#getGPSLongitudeRef--) | Gets the GPSLongitudeRef.
+ |
+| [getGPSLongitude()](#getGPSLongitude--) | Gets the GPSLongitude.
+ |
+| [getGPSAltitudeRef()](#getGPSAltitudeRef--) | Gets the GPSAltitudeRef.
+ |
+| [getGPSAltitude()](#getGPSAltitude--) | Gets the GPSAltitude.
+ |
+| [getGPSTimeStamp()](#getGPSTimeStamp--) | Gets the GPSTimeStamp.
+ |
+| [getGPSSatellites()](#getGPSSatellites--) | Gets the GPSSatellites.
+ |
+| [getGPSStatus()](#getGPSStatus--) | Gets the GPSStatus.
+ |
+| [getGPSMeasureMode()](#getGPSMeasureMode--) | Gets the GPSMeasureMode.
+ |
+| [getGPSDOP()](#getGPSDOP--) | Gets the GPSDOP.
+ |
+| [getGPSSpeedRef()](#getGPSSpeedRef--) | Gets the GPSSpeedRef.
+ |
+| [getGPSSpeed()](#getGPSSpeed--) | Gets the GPSSpeed.
+ |
+| [getGPSTrackRef()](#getGPSTrackRef--) | Gets the GPSTrackRef.
+ |
+| [getGPSTrack()](#getGPSTrack--) | Gets the GPSTrack.
+ |
+| [getGPSImgDirectionRef()](#getGPSImgDirectionRef--) | Gets the GPSImgDirectionRef.
+ |
+| [getGPSImgDirection()](#getGPSImgDirection--) | Gets the GPSImgDirection.
+ |
+| [getGPSMapDatum()](#getGPSMapDatum--) | Gets the GPSMapDatum.
+ |
+| [getGPSDestLatitudeRef()](#getGPSDestLatitudeRef--) | Gets the GPSDestLatitudeRef.
+ |
+| [getGPSDestLatitude()](#getGPSDestLatitude--) | Gets the GPSDestLatitude.
+ |
+| [getGPSDestLongitudeRef()](#getGPSDestLongitudeRef--) | Gets the GPSDestLongitudeRef.
+ |
+| [getGPSDestLongitude()](#getGPSDestLongitude--) | Gets the GPSDestLongitude.
+ |
+| [getGPSDestBearingRef()](#getGPSDestBearingRef--) | Gets the GPSDestBearingRef.
+ |
+| [getGPSDestBearing()](#getGPSDestBearing--) | Gets the GPSDestBearing.
+ |
+| [getGPSDestDistanceRef()](#getGPSDestDistanceRef--) | Gets the GPSDestDistanceRef.
+ |
+| [getGPSDestDistance()](#getGPSDestDistance--) | Gets the GPSDestDistance.
+ |
+| [getGPSProcessingMethod()](#getGPSProcessingMethod--) | Gets the GPSProcessingMethod.
+ |
+| [getGPSAreaInformation()](#getGPSAreaInformation--) | Gets the GPSAreaInformation.
+ |
+| [getGPSDateStamp()](#getGPSDateStamp--) | Gets the GPSDateStamp.
+ |
+| [getGPSDifferential()](#getGPSDifferential--) | Gets the GPSDifferential.
+ |
+| [getGPSHPositioningError()](#getGPSHPositioningError--) | Gets the GPSHPositioningError.
+ |
### getGPSVersionID() {#getGPSVersionID--}
```
public final byte[] getGPSVersionID()
@@ -57,8 +90,10 @@ public final byte[] getGPSVersionID()
Gets the GPSVersionID.
+
**Returns:**
byte[] - The GPSVersionID.
+
### getGPSLatitudeRef() {#getGPSLatitudeRef--}
```
public final String getGPSLatitudeRef()
@@ -67,8 +102,10 @@ public final String getGPSLatitudeRef()
Gets the GPSLatitudeRef.
+
**Returns:**
java.lang.String - The GPSLatitudeRef.
+
### getGPSLatitude() {#getGPSLatitude--}
```
public final double[] getGPSLatitude()
@@ -77,8 +114,10 @@ public final double[] getGPSLatitude()
Gets the GPSLatitude.
+
**Returns:**
double[] - The GPSLatitude.
+
### getGPSLongitudeRef() {#getGPSLongitudeRef--}
```
public final String getGPSLongitudeRef()
@@ -87,8 +126,10 @@ public final String getGPSLongitudeRef()
Gets the GPSLongitudeRef.
+
**Returns:**
java.lang.String - The GPSLongitudeRef.
+
### getGPSLongitude() {#getGPSLongitude--}
```
public final double[] getGPSLongitude()
@@ -97,8 +138,10 @@ public final double[] getGPSLongitude()
Gets the GPSLongitude.
+
**Returns:**
double[] - The GPSLongitude.
+
### getGPSAltitudeRef() {#getGPSAltitudeRef--}
```
public final byte getGPSAltitudeRef()
@@ -107,8 +150,10 @@ public final byte getGPSAltitudeRef()
Gets the GPSAltitudeRef.
+
**Returns:**
byte - The GPSAltitudeRef.
+
### getGPSAltitude() {#getGPSAltitude--}
```
public final float getGPSAltitude()
@@ -117,8 +162,10 @@ public final float getGPSAltitude()
Gets the GPSAltitude.
+
**Returns:**
float - The GPSAltitude.
+
### getGPSTimeStamp() {#getGPSTimeStamp--}
```
public final double[] getGPSTimeStamp()
@@ -127,8 +174,10 @@ public final double[] getGPSTimeStamp()
Gets the GPSTimeStamp.
+
**Returns:**
double[] - The GPSTimeStamp.
+
### getGPSSatellites() {#getGPSSatellites--}
```
public final String getGPSSatellites()
@@ -137,8 +186,10 @@ public final String getGPSSatellites()
Gets the GPSSatellites.
+
**Returns:**
java.lang.String - The GPSSatellites.
+
### getGPSStatus() {#getGPSStatus--}
```
public final String getGPSStatus()
@@ -147,8 +198,10 @@ public final String getGPSStatus()
Gets the GPSStatus.
+
**Returns:**
java.lang.String - The GPSStatus.
+
### getGPSMeasureMode() {#getGPSMeasureMode--}
```
public final String getGPSMeasureMode()
@@ -157,8 +210,10 @@ public final String getGPSMeasureMode()
Gets the GPSMeasureMode.
+
**Returns:**
java.lang.String - The GPSMeasureMode.
+
### getGPSDOP() {#getGPSDOP--}
```
public final float getGPSDOP()
@@ -167,8 +222,10 @@ public final float getGPSDOP()
Gets the GPSDOP.
+
**Returns:**
float - The GPSDOP.
+
### getGPSSpeedRef() {#getGPSSpeedRef--}
```
public final String getGPSSpeedRef()
@@ -177,8 +234,10 @@ public final String getGPSSpeedRef()
Gets the GPSSpeedRef.
+
**Returns:**
java.lang.String - The GPSSpeedRef.
+
### getGPSSpeed() {#getGPSSpeed--}
```
public final float getGPSSpeed()
@@ -187,8 +246,10 @@ public final float getGPSSpeed()
Gets the GPSSpeed.
+
**Returns:**
float - The GPSSpeed.
+
### getGPSTrackRef() {#getGPSTrackRef--}
```
public final String getGPSTrackRef()
@@ -197,8 +258,10 @@ public final String getGPSTrackRef()
Gets the GPSTrackRef.
+
**Returns:**
java.lang.String - The GPSTrackRef.
+
### getGPSTrack() {#getGPSTrack--}
```
public final float getGPSTrack()
@@ -207,8 +270,10 @@ public final float getGPSTrack()
Gets the GPSTrack.
+
**Returns:**
float - The GPSTrack.
+
### getGPSImgDirectionRef() {#getGPSImgDirectionRef--}
```
public final String getGPSImgDirectionRef()
@@ -217,8 +282,10 @@ public final String getGPSImgDirectionRef()
Gets the GPSImgDirectionRef.
+
**Returns:**
java.lang.String - The GPSImgDirectionRef.
+
### getGPSImgDirection() {#getGPSImgDirection--}
```
public final float getGPSImgDirection()
@@ -227,8 +294,10 @@ public final float getGPSImgDirection()
Gets the GPSImgDirection.
+
**Returns:**
float - The GPSImgDirection.
+
### getGPSMapDatum() {#getGPSMapDatum--}
```
public final String getGPSMapDatum()
@@ -237,8 +306,10 @@ public final String getGPSMapDatum()
Gets the GPSMapDatum.
+
**Returns:**
java.lang.String - The GPSMapDatum.
+
### getGPSDestLatitudeRef() {#getGPSDestLatitudeRef--}
```
public final String getGPSDestLatitudeRef()
@@ -247,8 +318,10 @@ public final String getGPSDestLatitudeRef()
Gets the GPSDestLatitudeRef.
+
**Returns:**
java.lang.String - The GPSDestLatitudeRef.
+
### getGPSDestLatitude() {#getGPSDestLatitude--}
```
public final double[] getGPSDestLatitude()
@@ -257,8 +330,10 @@ public final double[] getGPSDestLatitude()
Gets the GPSDestLatitude.
+
**Returns:**
double[] - The GPSDestLatitude.
+
### getGPSDestLongitudeRef() {#getGPSDestLongitudeRef--}
```
public final String getGPSDestLongitudeRef()
@@ -267,8 +342,10 @@ public final String getGPSDestLongitudeRef()
Gets the GPSDestLongitudeRef.
+
**Returns:**
java.lang.String - The GPSDestLongitudeRef.
+
### getGPSDestLongitude() {#getGPSDestLongitude--}
```
public final double[] getGPSDestLongitude()
@@ -277,8 +354,10 @@ public final double[] getGPSDestLongitude()
Gets the GPSDestLongitude.
+
**Returns:**
double[] - The GPSDestLongitude.
+
### getGPSDestBearingRef() {#getGPSDestBearingRef--}
```
public final String getGPSDestBearingRef()
@@ -287,8 +366,10 @@ public final String getGPSDestBearingRef()
Gets the GPSDestBearingRef.
+
**Returns:**
java.lang.String - The GPSDestBearingRef.
+
### getGPSDestBearing() {#getGPSDestBearing--}
```
public final float getGPSDestBearing()
@@ -297,8 +378,10 @@ public final float getGPSDestBearing()
Gets the GPSDestBearing.
+
**Returns:**
float - The GPSDestBearing.
+
### getGPSDestDistanceRef() {#getGPSDestDistanceRef--}
```
public final String getGPSDestDistanceRef()
@@ -307,8 +390,10 @@ public final String getGPSDestDistanceRef()
Gets the GPSDestDistanceRef.
+
**Returns:**
java.lang.String - The GPSDestDistanceRef.
+
### getGPSDestDistance() {#getGPSDestDistance--}
```
public final float getGPSDestDistance()
@@ -317,8 +402,10 @@ public final float getGPSDestDistance()
Gets the GPSDestDistance.
+
**Returns:**
float - The GPSDestDistance.
+
### getGPSProcessingMethod() {#getGPSProcessingMethod--}
```
public final String getGPSProcessingMethod()
@@ -327,8 +414,10 @@ public final String getGPSProcessingMethod()
Gets the GPSProcessingMethod.
+
**Returns:**
java.lang.String - The GPSProcessingMethod.
+
### getGPSAreaInformation() {#getGPSAreaInformation--}
```
public final int getGPSAreaInformation()
@@ -337,8 +426,10 @@ public final int getGPSAreaInformation()
Gets the GPSAreaInformation.
+
**Returns:**
int - The GPSAreaInformation.
+
### getGPSDateStamp() {#getGPSDateStamp--}
```
public final String getGPSDateStamp()
@@ -347,8 +438,10 @@ public final String getGPSDateStamp()
Gets the GPSDateStamp.
+
**Returns:**
java.lang.String - The GPSDateStamp.
+
### getGPSDifferential() {#getGPSDifferential--}
```
public final int getGPSDifferential()
@@ -357,8 +450,10 @@ public final int getGPSDifferential()
Gets the GPSDifferential.
+
**Returns:**
int - The GPSDifferential.
+
### getGPSHPositioningError() {#getGPSHPositioningError--}
```
public final float getGPSHPositioningError()
@@ -367,5 +462,7 @@ public final float getGPSHPositioningError()
Gets the GPSHPositioningError.
+
**Returns:**
float - The GPSHPositioningError.
+
diff --git a/english/java/com.groupdocs.metadata.core/groupdocsmetadataexception/_index.md b/english/java/com.groupdocs.metadata.core/groupdocsmetadataexception/_index.md
index 2c9fcaee0f..5029690341 100644
--- a/english/java/com.groupdocs.metadata.core/groupdocsmetadataexception/_index.md
+++ b/english/java/com.groupdocs.metadata.core/groupdocsmetadataexception/_index.md
@@ -13,20 +13,33 @@ public class GroupDocsMetadataException extends System.Exception
```
Represents a product-specific exception that is thrown during file processing.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [GroupDocsMetadataException()](#GroupDocsMetadataException--) | Initializes a new instance of the GroupDocsMetadataException class. |
-| [GroupDocsMetadataException(String message)](#GroupDocsMetadataException-java.lang.String-) | Initializes a new instance of the GroupDocsMetadataException class. |
-| [GroupDocsMetadataException(String message, RuntimeException innerException)](#GroupDocsMetadataException-java.lang.String-java.lang.RuntimeException-) | Initializes a new instance of the GroupDocsMetadataException class. |
+| [GroupDocsMetadataException()](#GroupDocsMetadataException--) | Initializes a new instance of the
+GroupDocsMetadataException
+ class.
+ |
+| [GroupDocsMetadataException(String message)](#GroupDocsMetadataException-java.lang.String-) | Initializes a new instance of the
+GroupDocsMetadataException
+ class.
+ |
+| [GroupDocsMetadataException(String message, RuntimeException innerException)](#GroupDocsMetadataException-java.lang.String-java.lang.RuntimeException-) | Initializes a new instance of the
+GroupDocsMetadataException
+ class.
+ |
### GroupDocsMetadataException() {#GroupDocsMetadataException--}
```
public GroupDocsMetadataException()
```
-Initializes a new instance of the GroupDocsMetadataException class.
+Initializes a new instance of the
+GroupDocsMetadataException
+ class.
+
### GroupDocsMetadataException(String message) {#GroupDocsMetadataException-java.lang.String-}
```
@@ -34,12 +47,16 @@ public GroupDocsMetadataException(String message)
```
-Initializes a new instance of the GroupDocsMetadataException class.
+Initializes a new instance of the
+GroupDocsMetadataException
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| message | java.lang.String | The message that describes the error. |
+| message | java.lang.String | The message that describes the error.
+ |
### GroupDocsMetadataException(String message, RuntimeException innerException) {#GroupDocsMetadataException-java.lang.String-java.lang.RuntimeException-}
```
@@ -47,11 +64,16 @@ public GroupDocsMetadataException(String message, RuntimeException innerExceptio
```
-Initializes a new instance of the GroupDocsMetadataException class.
+Initializes a new instance of the
+GroupDocsMetadataException
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| message | java.lang.String | The error message that explains the reason for the exception. |
-| innerException | java.lang.RuntimeException | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
+| message | java.lang.String | The error message that explains the reason for the exception.
+ |
+| innerException | java.lang.RuntimeException | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/heifrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/heifrootpackage/_index.md
index 6fa9fae5ee..aa5117e005 100644
--- a/english/java/com.groupdocs.metadata.core/heifrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/heifrootpackage/_index.md
@@ -17,22 +17,27 @@ public class HeifRootPackage extends ImageRootPackage implements IXmp, IExif
Represents the root package intended to work with metadata in a HEIF image.
+
**Learn more**
- * [Working with EXIF metadata][]
- * [Working with XMP metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -41,15 +46,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -58,17 +66,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -78,15 +89,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -95,15 +109,18 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/id3tag/_index.md b/english/java/com.groupdocs.metadata.core/id3tag/_index.md
index 6070b2ceee..5b2a911a23 100644
--- a/english/java/com.groupdocs.metadata.core/id3tag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3tag/_index.md
@@ -13,11 +13,13 @@ public abstract class ID3Tag extends CustomPackage
```
Represents a base abstract class for the ID3(v1) and ID3(v2) audio tags.
+
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the version of the ID3 tag in string format. |
+| [getVersion()](#getVersion--) | Gets the version of the ID3 tag in string format.
+ |
### getVersion() {#getVersion--}
```
public abstract String getVersion()
@@ -26,5 +28,7 @@ public abstract String getVersion()
Gets the version of the ID3 tag in string format. For example: 'ID3v1.1'.
+
**Returns:**
java.lang.String - The ID3 version.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v1genre/_index.md b/english/java/com.groupdocs.metadata.core/id3v1genre/_index.md
index b760d66411..04d130fb2e 100644
--- a/english/java/com.groupdocs.metadata.core/id3v1genre/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v1genre/_index.md
@@ -16,90 +16,171 @@ public final class ID3V1Genre implements IEnumValue
```
Specifies genres used in an Id3v1 tag.
+
## Fields
| Field | Description |
| --- | --- |
-| [Blues](#Blues) | Represents the Blues genre. |
-| [ClassicRock](#ClassicRock) | Represents the Classic Rock genre. |
-| [Country](#Country) | Represents the Country genre. |
-| [Dance](#Dance) | Represents the Dance genre. |
-| [Disco](#Disco) | Represents the Disco genre. |
-| [Funk](#Funk) | Represents the Funk genre. |
-| [Grunge](#Grunge) | Represents the Grunge genre. |
-| [HipHop](#HipHop) | Represents the Hip-Hop genre. |
-| [Jazz](#Jazz) | Represents the Jazz genre. |
-| [Metal](#Metal) | Represents the Metal genre. |
-| [NewAge](#NewAge) | Represents the New Age genre. |
-| [Oldies](#Oldies) | Represents the Oldies genre. |
-| [Other](#Other) | Represents the Other genre. |
-| [Pop](#Pop) | Represents the Pop genre. |
-| [RhythmAndBlues](#RhythmAndBlues) | Represents the Rhythm and Blues genre. |
-| [Rap](#Rap) | Represents the Rap genre. |
-| [Reggae](#Reggae) | Represents the Reggae genre. |
-| [Rock](#Rock) | Represents the Rock genre. |
-| [Techno](#Techno) | Represents the Techno genre. |
-| [Industrial](#Industrial) | Represents the Industrial genre. |
-| [Alternative](#Alternative) | Represents the Alternative genre. |
-| [Ska](#Ska) | Represents the Ska genre. |
-| [DeathMetal](#DeathMetal) | Represents the Death Metal genre. |
-| [Pranks](#Pranks) | Represents the Pranks genre. |
-| [Soundtrack](#Soundtrack) | Represents the Soundtrack genre. |
-| [EuroTechno](#EuroTechno) | Represents the Euro-Techno genre. |
-| [Ambient](#Ambient) | Represents the Ambient genre. |
-| [TripHop](#TripHop) | Represents the Trip-Hop genre. |
-| [Vocal](#Vocal) | Represents the Vocal genre. |
-| [JazzAndFunk](#JazzAndFunk) | Represents the JazzAndFunk genre. |
-| [Fusion](#Fusion) | Represents the Fusion genre. |
-| [Trance](#Trance) | Represents the Trance genre. |
-| [Classical](#Classical) | Represents the Classical genre. |
-| [Instrumental](#Instrumental) | Represents the Instrumental genre. |
-| [Acid](#Acid) | Represents the Acid genre. |
-| [House](#House) | Represents the House genre. |
-| [Game](#Game) | Represents the Game genre. |
-| [SoundClip](#SoundClip) | Represents the Sound Clip genre. |
-| [Gospel](#Gospel) | Represents the Gospel genre. |
-| [Noise](#Noise) | Represents the Noise genre. |
-| [AlternativeRock](#AlternativeRock) | Represents the Alternative Rock genre. |
-| [Bass](#Bass) | Represents the Bass genre. |
-| [Soul](#Soul) | Represents the Soul genre. |
-| [Punk](#Punk) | Represents the Punk genre. |
-| [Space](#Space) | Represents the Space genre. |
-| [Meditative](#Meditative) | Represents the Meditative genre. |
-| [InstrumentalPop](#InstrumentalPop) | Represents the Instrumental Pop genre. |
-| [InstrumentalRock](#InstrumentalRock) | Represents the Instrumental Rock genre. |
-| [Ethnic](#Ethnic) | Represents the Ethnic genre. |
-| [Gothic](#Gothic) | Represents the Gothic genre. |
-| [Darkwave](#Darkwave) | Represents the Darkwave genre. |
-| [TechnoIndustrial](#TechnoIndustrial) | Represents the Techno-Industrial genre. |
-| [Electronic](#Electronic) | Represents the Electronic genre. |
-| [PopFolk](#PopFolk) | Represents the Pop-Folk genre. |
-| [Eurodance](#Eurodance) | Represents the Eurodance genre. |
-| [Dream](#Dream) | Represents the Dream genre. |
-| [SouthernRock](#SouthernRock) | Represents the Southern Rock genre. |
-| [Comedy](#Comedy) | Represents the Comedy genre. |
-| [Cult](#Cult) | Represents the Cult genre. |
-| [Gangsta](#Gangsta) | Represents the Gangsta genre. |
-| [Top40](#Top40) | Represents the Top 40 genre. |
-| [ChristianRap](#ChristianRap) | Represents the Christian Rap genre. |
-| [PopFunk](#PopFunk) | Represents the Pop/Funk genre. |
-| [Jungle](#Jungle) | Represents the Jungle genre. |
-| [NativeAmerican](#NativeAmerican) | Represents the Native American genre. |
-| [Cabaret](#Cabaret) | Represents the Cabaret genre. |
-| [NewWave](#NewWave) | Represents the New Wave genre. |
-| [Psychedelic](#Psychedelic) | Represents the Psychedelic genre. |
-| [Rave](#Rave) | Represents the Rave genre. |
-| [Showtunes](#Showtunes) | Represents the Showtunes genre. |
-| [Trailer](#Trailer) | Represents the Trailer genre. |
-| [LoFi](#LoFi) | Represents the Lo-Fi genre. |
-| [Tribal](#Tribal) | Represents the Tribal genre. |
-| [AcidPunk](#AcidPunk) | Represents the Acid Punk genre. |
-| [AcidJazz](#AcidJazz) | Represents the Acid Jazz genre. |
-| [Polka](#Polka) | Represents the Polka genre. |
-| [Retro](#Retro) | Represents the Retro genre. |
-| [Musical](#Musical) | Represents the Musical genre. |
-| [RockNRoll](#RockNRoll) | Represents the Rock 'n' Roll genre. |
-| [HardRock](#HardRock) | Represents the Hard Rock genre. |
+| [Blues](#Blues) | Represents the Blues genre.
+ |
+| [ClassicRock](#ClassicRock) | Represents the Classic Rock genre.
+ |
+| [Country](#Country) | Represents the Country genre.
+ |
+| [Dance](#Dance) | Represents the Dance genre.
+ |
+| [Disco](#Disco) | Represents the Disco genre.
+ |
+| [Funk](#Funk) | Represents the Funk genre.
+ |
+| [Grunge](#Grunge) | Represents the Grunge genre.
+ |
+| [HipHop](#HipHop) | Represents the Hip-Hop genre.
+ |
+| [Jazz](#Jazz) | Represents the Jazz genre.
+ |
+| [Metal](#Metal) | Represents the Metal genre.
+ |
+| [NewAge](#NewAge) | Represents the New Age genre.
+ |
+| [Oldies](#Oldies) | Represents the Oldies genre.
+ |
+| [Other](#Other) | Represents the Other genre.
+ |
+| [Pop](#Pop) | Represents the Pop genre.
+ |
+| [RhythmAndBlues](#RhythmAndBlues) | Represents the Rhythm and Blues genre.
+ |
+| [Rap](#Rap) | Represents the Rap genre.
+ |
+| [Reggae](#Reggae) | Represents the Reggae genre.
+ |
+| [Rock](#Rock) | Represents the Rock genre.
+ |
+| [Techno](#Techno) | Represents the Techno genre.
+ |
+| [Industrial](#Industrial) | Represents the Industrial genre.
+ |
+| [Alternative](#Alternative) | Represents the Alternative genre.
+ |
+| [Ska](#Ska) | Represents the Ska genre.
+ |
+| [DeathMetal](#DeathMetal) | Represents the Death Metal genre.
+ |
+| [Pranks](#Pranks) | Represents the Pranks genre.
+ |
+| [Soundtrack](#Soundtrack) | Represents the Soundtrack genre.
+ |
+| [EuroTechno](#EuroTechno) | Represents the Euro-Techno genre.
+ |
+| [Ambient](#Ambient) | Represents the Ambient genre.
+ |
+| [TripHop](#TripHop) | Represents the Trip-Hop genre.
+ |
+| [Vocal](#Vocal) | Represents the Vocal genre.
+ |
+| [JazzAndFunk](#JazzAndFunk) | Represents the JazzAndFunk genre.
+ |
+| [Fusion](#Fusion) | Represents the Fusion genre.
+ |
+| [Trance](#Trance) | Represents the Trance genre.
+ |
+| [Classical](#Classical) | Represents the Classical genre.
+ |
+| [Instrumental](#Instrumental) | Represents the Instrumental genre.
+ |
+| [Acid](#Acid) | Represents the Acid genre.
+ |
+| [House](#House) | Represents the House genre.
+ |
+| [Game](#Game) | Represents the Game genre.
+ |
+| [SoundClip](#SoundClip) | Represents the Sound Clip genre.
+ |
+| [Gospel](#Gospel) | Represents the Gospel genre.
+ |
+| [Noise](#Noise) | Represents the Noise genre.
+ |
+| [AlternativeRock](#AlternativeRock) | Represents the Alternative Rock genre.
+ |
+| [Bass](#Bass) | Represents the Bass genre.
+ |
+| [Soul](#Soul) | Represents the Soul genre.
+ |
+| [Punk](#Punk) | Represents the Punk genre.
+ |
+| [Space](#Space) | Represents the Space genre.
+ |
+| [Meditative](#Meditative) | Represents the Meditative genre.
+ |
+| [InstrumentalPop](#InstrumentalPop) | Represents the Instrumental Pop genre.
+ |
+| [InstrumentalRock](#InstrumentalRock) | Represents the Instrumental Rock genre.
+ |
+| [Ethnic](#Ethnic) | Represents the Ethnic genre.
+ |
+| [Gothic](#Gothic) | Represents the Gothic genre.
+ |
+| [Darkwave](#Darkwave) | Represents the Darkwave genre.
+ |
+| [TechnoIndustrial](#TechnoIndustrial) | Represents the Techno-Industrial genre.
+ |
+| [Electronic](#Electronic) | Represents the Electronic genre.
+ |
+| [PopFolk](#PopFolk) | Represents the Pop-Folk genre.
+ |
+| [Eurodance](#Eurodance) | Represents the Eurodance genre.
+ |
+| [Dream](#Dream) | Represents the Dream genre.
+ |
+| [SouthernRock](#SouthernRock) | Represents the Southern Rock genre.
+ |
+| [Comedy](#Comedy) | Represents the Comedy genre.
+ |
+| [Cult](#Cult) | Represents the Cult genre.
+ |
+| [Gangsta](#Gangsta) | Represents the Gangsta genre.
+ |
+| [Top40](#Top40) | Represents the Top 40 genre.
+ |
+| [ChristianRap](#ChristianRap) | Represents the Christian Rap genre.
+ |
+| [PopFunk](#PopFunk) | Represents the Pop/Funk genre.
+ |
+| [Jungle](#Jungle) | Represents the Jungle genre.
+ |
+| [NativeAmerican](#NativeAmerican) | Represents the Native American genre.
+ |
+| [Cabaret](#Cabaret) | Represents the Cabaret genre.
+ |
+| [NewWave](#NewWave) | Represents the New Wave genre.
+ |
+| [Psychedelic](#Psychedelic) | Represents the Psychedelic genre.
+ |
+| [Rave](#Rave) | Represents the Rave genre.
+ |
+| [Showtunes](#Showtunes) | Represents the Showtunes genre.
+ |
+| [Trailer](#Trailer) | Represents the Trailer genre.
+ |
+| [LoFi](#LoFi) | Represents the Lo-Fi genre.
+ |
+| [Tribal](#Tribal) | Represents the Tribal genre.
+ |
+| [AcidPunk](#AcidPunk) | Represents the Acid Punk genre.
+ |
+| [AcidJazz](#AcidJazz) | Represents the Acid Jazz genre.
+ |
+| [Polka](#Polka) | Represents the Polka genre.
+ |
+| [Retro](#Retro) | Represents the Retro genre.
+ |
+| [Musical](#Musical) | Represents the Musical genre.
+ |
+| [RockNRoll](#RockNRoll) | Represents the Rock 'n' Roll genre.
+ |
+| [HardRock](#HardRock) | Represents the Hard Rock genre.
+ |
## Methods
| Method | Description |
@@ -122,6 +203,7 @@ public static final ID3V1Genre Blues
Represents the Blues genre.
+
### ClassicRock {#ClassicRock}
```
public static final ID3V1Genre ClassicRock
@@ -130,6 +212,7 @@ public static final ID3V1Genre ClassicRock
Represents the Classic Rock genre.
+
### Country {#Country}
```
public static final ID3V1Genre Country
@@ -138,6 +221,7 @@ public static final ID3V1Genre Country
Represents the Country genre.
+
### Dance {#Dance}
```
public static final ID3V1Genre Dance
@@ -146,6 +230,7 @@ public static final ID3V1Genre Dance
Represents the Dance genre.
+
### Disco {#Disco}
```
public static final ID3V1Genre Disco
@@ -154,6 +239,7 @@ public static final ID3V1Genre Disco
Represents the Disco genre.
+
### Funk {#Funk}
```
public static final ID3V1Genre Funk
@@ -162,6 +248,7 @@ public static final ID3V1Genre Funk
Represents the Funk genre.
+
### Grunge {#Grunge}
```
public static final ID3V1Genre Grunge
@@ -170,6 +257,7 @@ public static final ID3V1Genre Grunge
Represents the Grunge genre.
+
### HipHop {#HipHop}
```
public static final ID3V1Genre HipHop
@@ -178,6 +266,7 @@ public static final ID3V1Genre HipHop
Represents the Hip-Hop genre.
+
### Jazz {#Jazz}
```
public static final ID3V1Genre Jazz
@@ -186,6 +275,7 @@ public static final ID3V1Genre Jazz
Represents the Jazz genre.
+
### Metal {#Metal}
```
public static final ID3V1Genre Metal
@@ -194,6 +284,7 @@ public static final ID3V1Genre Metal
Represents the Metal genre.
+
### NewAge {#NewAge}
```
public static final ID3V1Genre NewAge
@@ -202,6 +293,7 @@ public static final ID3V1Genre NewAge
Represents the New Age genre.
+
### Oldies {#Oldies}
```
public static final ID3V1Genre Oldies
@@ -210,6 +302,7 @@ public static final ID3V1Genre Oldies
Represents the Oldies genre.
+
### Other {#Other}
```
public static final ID3V1Genre Other
@@ -218,6 +311,7 @@ public static final ID3V1Genre Other
Represents the Other genre.
+
### Pop {#Pop}
```
public static final ID3V1Genre Pop
@@ -226,6 +320,7 @@ public static final ID3V1Genre Pop
Represents the Pop genre.
+
### RhythmAndBlues {#RhythmAndBlues}
```
public static final ID3V1Genre RhythmAndBlues
@@ -234,6 +329,7 @@ public static final ID3V1Genre RhythmAndBlues
Represents the Rhythm and Blues genre.
+
### Rap {#Rap}
```
public static final ID3V1Genre Rap
@@ -242,6 +338,7 @@ public static final ID3V1Genre Rap
Represents the Rap genre.
+
### Reggae {#Reggae}
```
public static final ID3V1Genre Reggae
@@ -250,6 +347,7 @@ public static final ID3V1Genre Reggae
Represents the Reggae genre.
+
### Rock {#Rock}
```
public static final ID3V1Genre Rock
@@ -258,6 +356,7 @@ public static final ID3V1Genre Rock
Represents the Rock genre.
+
### Techno {#Techno}
```
public static final ID3V1Genre Techno
@@ -266,6 +365,7 @@ public static final ID3V1Genre Techno
Represents the Techno genre.
+
### Industrial {#Industrial}
```
public static final ID3V1Genre Industrial
@@ -274,6 +374,7 @@ public static final ID3V1Genre Industrial
Represents the Industrial genre.
+
### Alternative {#Alternative}
```
public static final ID3V1Genre Alternative
@@ -282,6 +383,7 @@ public static final ID3V1Genre Alternative
Represents the Alternative genre.
+
### Ska {#Ska}
```
public static final ID3V1Genre Ska
@@ -290,6 +392,7 @@ public static final ID3V1Genre Ska
Represents the Ska genre.
+
### DeathMetal {#DeathMetal}
```
public static final ID3V1Genre DeathMetal
@@ -298,6 +401,7 @@ public static final ID3V1Genre DeathMetal
Represents the Death Metal genre.
+
### Pranks {#Pranks}
```
public static final ID3V1Genre Pranks
@@ -306,6 +410,7 @@ public static final ID3V1Genre Pranks
Represents the Pranks genre.
+
### Soundtrack {#Soundtrack}
```
public static final ID3V1Genre Soundtrack
@@ -314,6 +419,7 @@ public static final ID3V1Genre Soundtrack
Represents the Soundtrack genre.
+
### EuroTechno {#EuroTechno}
```
public static final ID3V1Genre EuroTechno
@@ -322,6 +428,7 @@ public static final ID3V1Genre EuroTechno
Represents the Euro-Techno genre.
+
### Ambient {#Ambient}
```
public static final ID3V1Genre Ambient
@@ -330,6 +437,7 @@ public static final ID3V1Genre Ambient
Represents the Ambient genre.
+
### TripHop {#TripHop}
```
public static final ID3V1Genre TripHop
@@ -338,6 +446,7 @@ public static final ID3V1Genre TripHop
Represents the Trip-Hop genre.
+
### Vocal {#Vocal}
```
public static final ID3V1Genre Vocal
@@ -346,6 +455,7 @@ public static final ID3V1Genre Vocal
Represents the Vocal genre.
+
### JazzAndFunk {#JazzAndFunk}
```
public static final ID3V1Genre JazzAndFunk
@@ -354,6 +464,7 @@ public static final ID3V1Genre JazzAndFunk
Represents the JazzAndFunk genre.
+
### Fusion {#Fusion}
```
public static final ID3V1Genre Fusion
@@ -362,6 +473,7 @@ public static final ID3V1Genre Fusion
Represents the Fusion genre.
+
### Trance {#Trance}
```
public static final ID3V1Genre Trance
@@ -370,6 +482,7 @@ public static final ID3V1Genre Trance
Represents the Trance genre.
+
### Classical {#Classical}
```
public static final ID3V1Genre Classical
@@ -378,6 +491,7 @@ public static final ID3V1Genre Classical
Represents the Classical genre.
+
### Instrumental {#Instrumental}
```
public static final ID3V1Genre Instrumental
@@ -386,6 +500,7 @@ public static final ID3V1Genre Instrumental
Represents the Instrumental genre.
+
### Acid {#Acid}
```
public static final ID3V1Genre Acid
@@ -394,6 +509,7 @@ public static final ID3V1Genre Acid
Represents the Acid genre.
+
### House {#House}
```
public static final ID3V1Genre House
@@ -402,6 +518,7 @@ public static final ID3V1Genre House
Represents the House genre.
+
### Game {#Game}
```
public static final ID3V1Genre Game
@@ -410,6 +527,7 @@ public static final ID3V1Genre Game
Represents the Game genre.
+
### SoundClip {#SoundClip}
```
public static final ID3V1Genre SoundClip
@@ -418,6 +536,7 @@ public static final ID3V1Genre SoundClip
Represents the Sound Clip genre.
+
### Gospel {#Gospel}
```
public static final ID3V1Genre Gospel
@@ -426,6 +545,7 @@ public static final ID3V1Genre Gospel
Represents the Gospel genre.
+
### Noise {#Noise}
```
public static final ID3V1Genre Noise
@@ -434,6 +554,7 @@ public static final ID3V1Genre Noise
Represents the Noise genre.
+
### AlternativeRock {#AlternativeRock}
```
public static final ID3V1Genre AlternativeRock
@@ -442,6 +563,7 @@ public static final ID3V1Genre AlternativeRock
Represents the Alternative Rock genre.
+
### Bass {#Bass}
```
public static final ID3V1Genre Bass
@@ -450,6 +572,7 @@ public static final ID3V1Genre Bass
Represents the Bass genre.
+
### Soul {#Soul}
```
public static final ID3V1Genre Soul
@@ -458,6 +581,7 @@ public static final ID3V1Genre Soul
Represents the Soul genre.
+
### Punk {#Punk}
```
public static final ID3V1Genre Punk
@@ -466,6 +590,7 @@ public static final ID3V1Genre Punk
Represents the Punk genre.
+
### Space {#Space}
```
public static final ID3V1Genre Space
@@ -474,6 +599,7 @@ public static final ID3V1Genre Space
Represents the Space genre.
+
### Meditative {#Meditative}
```
public static final ID3V1Genre Meditative
@@ -482,6 +608,7 @@ public static final ID3V1Genre Meditative
Represents the Meditative genre.
+
### InstrumentalPop {#InstrumentalPop}
```
public static final ID3V1Genre InstrumentalPop
@@ -490,6 +617,7 @@ public static final ID3V1Genre InstrumentalPop
Represents the Instrumental Pop genre.
+
### InstrumentalRock {#InstrumentalRock}
```
public static final ID3V1Genre InstrumentalRock
@@ -498,6 +626,7 @@ public static final ID3V1Genre InstrumentalRock
Represents the Instrumental Rock genre.
+
### Ethnic {#Ethnic}
```
public static final ID3V1Genre Ethnic
@@ -506,6 +635,7 @@ public static final ID3V1Genre Ethnic
Represents the Ethnic genre.
+
### Gothic {#Gothic}
```
public static final ID3V1Genre Gothic
@@ -514,6 +644,7 @@ public static final ID3V1Genre Gothic
Represents the Gothic genre.
+
### Darkwave {#Darkwave}
```
public static final ID3V1Genre Darkwave
@@ -522,6 +653,7 @@ public static final ID3V1Genre Darkwave
Represents the Darkwave genre.
+
### TechnoIndustrial {#TechnoIndustrial}
```
public static final ID3V1Genre TechnoIndustrial
@@ -530,6 +662,7 @@ public static final ID3V1Genre TechnoIndustrial
Represents the Techno-Industrial genre.
+
### Electronic {#Electronic}
```
public static final ID3V1Genre Electronic
@@ -538,6 +671,7 @@ public static final ID3V1Genre Electronic
Represents the Electronic genre.
+
### PopFolk {#PopFolk}
```
public static final ID3V1Genre PopFolk
@@ -546,6 +680,7 @@ public static final ID3V1Genre PopFolk
Represents the Pop-Folk genre.
+
### Eurodance {#Eurodance}
```
public static final ID3V1Genre Eurodance
@@ -554,6 +689,7 @@ public static final ID3V1Genre Eurodance
Represents the Eurodance genre.
+
### Dream {#Dream}
```
public static final ID3V1Genre Dream
@@ -562,6 +698,7 @@ public static final ID3V1Genre Dream
Represents the Dream genre.
+
### SouthernRock {#SouthernRock}
```
public static final ID3V1Genre SouthernRock
@@ -570,6 +707,7 @@ public static final ID3V1Genre SouthernRock
Represents the Southern Rock genre.
+
### Comedy {#Comedy}
```
public static final ID3V1Genre Comedy
@@ -578,6 +716,7 @@ public static final ID3V1Genre Comedy
Represents the Comedy genre.
+
### Cult {#Cult}
```
public static final ID3V1Genre Cult
@@ -586,6 +725,7 @@ public static final ID3V1Genre Cult
Represents the Cult genre.
+
### Gangsta {#Gangsta}
```
public static final ID3V1Genre Gangsta
@@ -594,6 +734,7 @@ public static final ID3V1Genre Gangsta
Represents the Gangsta genre.
+
### Top40 {#Top40}
```
public static final ID3V1Genre Top40
@@ -602,6 +743,7 @@ public static final ID3V1Genre Top40
Represents the Top 40 genre.
+
### ChristianRap {#ChristianRap}
```
public static final ID3V1Genre ChristianRap
@@ -610,6 +752,7 @@ public static final ID3V1Genre ChristianRap
Represents the Christian Rap genre.
+
### PopFunk {#PopFunk}
```
public static final ID3V1Genre PopFunk
@@ -618,6 +761,7 @@ public static final ID3V1Genre PopFunk
Represents the Pop/Funk genre.
+
### Jungle {#Jungle}
```
public static final ID3V1Genre Jungle
@@ -626,6 +770,7 @@ public static final ID3V1Genre Jungle
Represents the Jungle genre.
+
### NativeAmerican {#NativeAmerican}
```
public static final ID3V1Genre NativeAmerican
@@ -634,6 +779,7 @@ public static final ID3V1Genre NativeAmerican
Represents the Native American genre.
+
### Cabaret {#Cabaret}
```
public static final ID3V1Genre Cabaret
@@ -642,6 +788,7 @@ public static final ID3V1Genre Cabaret
Represents the Cabaret genre.
+
### NewWave {#NewWave}
```
public static final ID3V1Genre NewWave
@@ -650,6 +797,7 @@ public static final ID3V1Genre NewWave
Represents the New Wave genre.
+
### Psychedelic {#Psychedelic}
```
public static final ID3V1Genre Psychedelic
@@ -658,6 +806,7 @@ public static final ID3V1Genre Psychedelic
Represents the Psychedelic genre.
+
### Rave {#Rave}
```
public static final ID3V1Genre Rave
@@ -666,6 +815,7 @@ public static final ID3V1Genre Rave
Represents the Rave genre.
+
### Showtunes {#Showtunes}
```
public static final ID3V1Genre Showtunes
@@ -674,6 +824,7 @@ public static final ID3V1Genre Showtunes
Represents the Showtunes genre.
+
### Trailer {#Trailer}
```
public static final ID3V1Genre Trailer
@@ -682,6 +833,7 @@ public static final ID3V1Genre Trailer
Represents the Trailer genre.
+
### LoFi {#LoFi}
```
public static final ID3V1Genre LoFi
@@ -690,6 +842,7 @@ public static final ID3V1Genre LoFi
Represents the Lo-Fi genre.
+
### Tribal {#Tribal}
```
public static final ID3V1Genre Tribal
@@ -698,6 +851,7 @@ public static final ID3V1Genre Tribal
Represents the Tribal genre.
+
### AcidPunk {#AcidPunk}
```
public static final ID3V1Genre AcidPunk
@@ -706,6 +860,7 @@ public static final ID3V1Genre AcidPunk
Represents the Acid Punk genre.
+
### AcidJazz {#AcidJazz}
```
public static final ID3V1Genre AcidJazz
@@ -714,6 +869,7 @@ public static final ID3V1Genre AcidJazz
Represents the Acid Jazz genre.
+
### Polka {#Polka}
```
public static final ID3V1Genre Polka
@@ -722,6 +878,7 @@ public static final ID3V1Genre Polka
Represents the Polka genre.
+
### Retro {#Retro}
```
public static final ID3V1Genre Retro
@@ -730,6 +887,7 @@ public static final ID3V1Genre Retro
Represents the Retro genre.
+
### Musical {#Musical}
```
public static final ID3V1Genre Musical
@@ -738,6 +896,7 @@ public static final ID3V1Genre Musical
Represents the Musical genre.
+
### RockNRoll {#RockNRoll}
```
public static final ID3V1Genre RockNRoll
@@ -746,6 +905,7 @@ public static final ID3V1Genre RockNRoll
Represents the Rock 'n' Roll genre.
+
### HardRock {#HardRock}
```
public static final ID3V1Genre HardRock
@@ -754,6 +914,7 @@ public static final ID3V1Genre HardRock
Represents the Hard Rock genre.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static ID3V1Genre getByRawValue(int rawValue)
@@ -787,6 +948,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -797,6 +959,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -812,6 +975,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -827,6 +991,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -837,6 +1002,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -847,6 +1013,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/id3v1tag/_index.md b/english/java/com.groupdocs.metadata.core/id3v1tag/_index.md
index f763f4cde3..89a0eae18d 100644
--- a/english/java/com.groupdocs.metadata.core/id3v1tag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v1tag/_index.md
@@ -12,21 +12,31 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V1Tag extends ID3Tag
```
-Represents an ID3v1 tag. Please find more information at [https://en.wikipedia.org/wiki/ID3\#ID3v1][https_en.wikipedia.org_wiki_ID3_ID3v1] .
+Represents an ID3v1 tag.
+Please find more information at
+
+.
---------------------
+
+
+*** ** * ** ***
+
+ID3(v1) tag is a small chunk of extra data at the end of MP3. Please find more information at .
+
+
-ID3(v1) tag is a small chunk of extra data at the end of MP3. Please find more information at http://id3.org/ID3v1 .
**Learn more**
- * [Handling the ID3v1 tag][]
+* [Handling the ID3v1 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v1+tag)
-This code sample shows how to read the ID3v1 tag in an MP3 file.
+
+This code sample shows how to read the ID3v1 tag in an MP3 file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.MP3WithID3V1)) {
> MP3RootPackage root = metadata.getRootPackageGeneric();
> if (root.getID3V1() != null) {
@@ -40,41 +50,59 @@ This code sample shows how to read the ID3v1 tag in an MP3 file.
> }
>
> ```
-> ```
+> ````
-[https_en.wikipedia.org_wiki_ID3_ID3v1]: https://en.wikipedia.org/wiki/ID3#ID3v1
-[Handling the ID3v1 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v1+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V1Tag()](#ID3V1Tag--) | Initializes a new instance of the ID3V1Tag class. |
+| [ID3V1Tag()](#ID3V1Tag--) | Initializes a new instance of the
+ID3V1Tag
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the ID3 version. |
-| [getArtist()](#getArtist--) | Gets the artist. |
-| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the artist. |
-| [getAlbum()](#getAlbum--) | Gets the album. |
-| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the album. |
-| [getGenreValue()](#getGenreValue--) | Gets the genre identifier. |
-| [getComment()](#getComment--) | Gets the comment. |
-| [setComment(String value)](#setComment-java.lang.String-) | Sets the comment. |
-| [getTitle()](#getTitle--) | Gets the title. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title. |
-| [getYear()](#getYear--) | Gets the year. |
-| [setYear(String value)](#setYear-java.lang.String-) | Sets the year. |
-| [getTrackNumber()](#getTrackNumber--) | Gets the track number. |
-| [setTrackNumber(Integer value)](#setTrackNumber-java.lang.Integer-) | Sets the track number. |
+| [getVersion()](#getVersion--) | Gets the ID3 version.
+ |
+| [getArtist()](#getArtist--) | Gets the artist.
+ |
+| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the artist.
+ |
+| [getAlbum()](#getAlbum--) | Gets the album.
+ |
+| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the album.
+ |
+| [getGenreValue()](#getGenreValue--) | Gets the genre identifier.
+ |
+| [getComment()](#getComment--) | Gets the comment.
+ |
+| [setComment(String value)](#setComment-java.lang.String-) | Sets the comment.
+ |
+| [getTitle()](#getTitle--) | Gets the title.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title.
+ |
+| [getYear()](#getYear--) | Gets the year.
+ |
+| [setYear(String value)](#setYear-java.lang.String-) | Sets the year.
+ |
+| [getTrackNumber()](#getTrackNumber--) | Gets the track number.
+ |
+| [setTrackNumber(Integer value)](#setTrackNumber-java.lang.Integer-) | Sets the track number.
+ |
### ID3V1Tag() {#ID3V1Tag--}
```
public ID3V1Tag()
```
-Initializes a new instance of the ID3V1Tag class.
+Initializes a new instance of the
+ID3V1Tag
+ class.
+
### getVersion() {#getVersion--}
```
@@ -84,8 +112,10 @@ public String getVersion()
Gets the ID3 version. It can be ID3 or ID3v1.1
+
**Returns:**
java.lang.String - The ID3 version.
+
### getArtist() {#getArtist--}
```
public final String getArtist()
@@ -94,8 +124,10 @@ public final String getArtist()
Gets the artist. Maximum length is 30 characters.
+
**Returns:**
java.lang.String - The artist.
+
### setArtist(String value) {#setArtist-java.lang.String-}
```
public final void setArtist(String value)
@@ -104,10 +136,12 @@ public final void setArtist(String value)
Sets the artist. Maximum length is 30 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The artist. |
+| value | java.lang.String | The artist.
+ |
### getAlbum() {#getAlbum--}
```
@@ -117,8 +151,10 @@ public final String getAlbum()
Gets the album. Maximum length is 30 characters.
+
**Returns:**
java.lang.String - The album.
+
### setAlbum(String value) {#setAlbum-java.lang.String-}
```
public final void setAlbum(String value)
@@ -127,10 +163,12 @@ public final void setAlbum(String value)
Sets the album. Maximum length is 30 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The album. |
+| value | java.lang.String | The album.
+ |
### getGenreValue() {#getGenreValue--}
```
@@ -140,8 +178,10 @@ public final ID3V1Genre getGenreValue()
Gets the genre identifier.
+
**Returns:**
[ID3V1Genre](../../com.groupdocs.metadata.core/id3v1genre) - The genre identifier.
+
### getComment() {#getComment--}
```
public final String getComment()
@@ -150,8 +190,10 @@ public final String getComment()
Gets the comment. Maximum length is 30 characters.
+
**Returns:**
java.lang.String - The comment.
+
### setComment(String value) {#setComment-java.lang.String-}
```
public final void setComment(String value)
@@ -160,10 +202,12 @@ public final void setComment(String value)
Sets the comment. Maximum length is 30 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The comment. |
+| value | java.lang.String | The comment.
+ |
### getTitle() {#getTitle--}
```
@@ -173,8 +217,10 @@ public final String getTitle()
Gets the title.
+
**Returns:**
java.lang.String - The title.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -183,10 +229,12 @@ public final void setTitle(String value)
Sets the title.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title. |
+| value | java.lang.String | The title.
+ |
### getYear() {#getYear--}
```
@@ -196,8 +244,10 @@ public final String getYear()
Gets the year. Maximum length is 4 characters.
+
**Returns:**
java.lang.String - The year.
+
### setYear(String value) {#setYear-java.lang.String-}
```
public final void setYear(String value)
@@ -206,10 +256,12 @@ public final void setYear(String value)
Sets the year. Maximum length is 4 characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The year. |
+| value | java.lang.String | The year.
+ |
### getTrackNumber() {#getTrackNumber--}
```
@@ -219,12 +271,19 @@ public final Integer getTrackNumber()
Gets the track number. Presented in a ID3v1.1 tag only.
+
**Returns:**
java.lang.Integer - The track number.
---------------------
+
+
+*** ** * ** ***
If the value of TrackNumber is a positive integer then ID3 changes version to 'ID3v1.1' automatically.
+
+
+
+
### setTrackNumber(Integer value) {#setTrackNumber-java.lang.Integer-}
```
public final void setTrackNumber(Integer value)
@@ -233,12 +292,19 @@ public final void setTrackNumber(Integer value)
Sets the track number. Presented in a ID3v1.1 tag only.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.Integer | The track number.
---------------------
+
+
+*** ** * ** ***
+
+If the value of TrackNumber is a positive integer then ID3 changes version to 'ID3v1.1' automatically.
+
+
-If the value of TrackNumber is a positive integer then ID3 changes version to 'ID3v1.1' automatically. |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/id3v2attachedpictureframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2attachedpictureframe/_index.md
index 349f18f8f0..ef8e37054e 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2attachedpictureframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2attachedpictureframe/_index.md
@@ -12,46 +12,72 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2AttachedPictureFrame extends ID3V2TagFrame
```
-Represents an APIC frame in an ID3V2Tag .
+Represents an APIC frame in an
+ID3V2Tag
+.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2AttachedPictureFrame(ID3V2EncodingType encoding, String mimeType, ID3V2AttachedPictureType pictureType, String description, byte[] pictureData)](#ID3V2AttachedPictureFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-com.groupdocs.metadata.core.ID3V2AttachedPictureType-java.lang.String-byte---) | Initializes a new instance of the ID3V2AttachedPictureFrame class. |
-| [ID3V2AttachedPictureFrame(ID3V2AttachedPictureType pictureType, String description, byte[] pictureData)](#ID3V2AttachedPictureFrame-com.groupdocs.metadata.core.ID3V2AttachedPictureType-java.lang.String-byte---) | Initializes a new instance of the ID3V2AttachedPictureFrame class. |
-| [ID3V2AttachedPictureFrame(byte[] pictureData)](#ID3V2AttachedPictureFrame-byte---) | Initializes a new instance of the ID3V2AttachedPictureFrame class. |
+| [ID3V2AttachedPictureFrame(ID3V2EncodingType encoding, String mimeType, ID3V2AttachedPictureType pictureType, String description, byte[] pictureData)](#ID3V2AttachedPictureFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-com.groupdocs.metadata.core.ID3V2AttachedPictureType-java.lang.String-byte---) | Initializes a new instance of the
+ID3V2AttachedPictureFrame
+ class.
+ |
+| [ID3V2AttachedPictureFrame(ID3V2AttachedPictureType pictureType, String description, byte[] pictureData)](#ID3V2AttachedPictureFrame-com.groupdocs.metadata.core.ID3V2AttachedPictureType-java.lang.String-byte---) | Initializes a new instance of the
+ID3V2AttachedPictureFrame
+ class.
+ |
+| [ID3V2AttachedPictureFrame(byte[] pictureData)](#ID3V2AttachedPictureFrame-byte---) | Initializes a new instance of the
+ID3V2AttachedPictureFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getDescriptionEncoding()](#getDescriptionEncoding--) | Gets the encoding used to encode the picture description. |
-| [getMimeType()](#getMimeType--) | Gets the MIME type of the picture. |
-| [getAttachedPictureType()](#getAttachedPictureType--) | Gets the type of the picture. |
-| [getDescription()](#getDescription--) | Gets the picture description. |
-| [getPictureData()](#getPictureData--) | Gets the picture data. |
+| [getDescriptionEncoding()](#getDescriptionEncoding--) | Gets the encoding used to encode the picture description.
+ |
+| [getMimeType()](#getMimeType--) | Gets the MIME type of the picture.
+ |
+| [getAttachedPictureType()](#getAttachedPictureType--) | Gets the type of the picture.
+ |
+| [getDescription()](#getDescription--) | Gets the picture description.
+ |
+| [getPictureData()](#getPictureData--) | Gets the picture data.
+ |
### ID3V2AttachedPictureFrame(ID3V2EncodingType encoding, String mimeType, ID3V2AttachedPictureType pictureType, String description, byte[] pictureData) {#ID3V2AttachedPictureFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-com.groupdocs.metadata.core.ID3V2AttachedPictureType-java.lang.String-byte---}
```
public ID3V2AttachedPictureFrame(ID3V2EncodingType encoding, String mimeType, ID3V2AttachedPictureType pictureType, String description, byte[] pictureData)
```
-Initializes a new instance of the ID3V2AttachedPictureFrame class.
+Initializes a new instance of the
+ID3V2AttachedPictureFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The frame encoding. |
-| mimeType | java.lang.String | The MIME-type of the image. |
-| pictureType | [ID3V2AttachedPictureType](../../com.groupdocs.metadata.core/id3v2attachedpicturetype) | The type of the picture. |
-| description | java.lang.String | The description of the picture. |
-| pictureData | byte[] | The picture data. |
+| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The frame encoding.
+ |
+| mimeType | java.lang.String | The MIME-type of the image.
+ |
+| pictureType | [ID3V2AttachedPictureType](../../com.groupdocs.metadata.core/id3v2attachedpicturetype) | The type of the picture.
+ |
+| description | java.lang.String | The description of the picture.
+ |
+| pictureData | byte[] | The picture data.
+ |
### ID3V2AttachedPictureFrame(ID3V2AttachedPictureType pictureType, String description, byte[] pictureData) {#ID3V2AttachedPictureFrame-com.groupdocs.metadata.core.ID3V2AttachedPictureType-java.lang.String-byte---}
```
@@ -59,14 +85,20 @@ public ID3V2AttachedPictureFrame(ID3V2AttachedPictureType pictureType, String de
```
-Initializes a new instance of the ID3V2AttachedPictureFrame class.
+Initializes a new instance of the
+ID3V2AttachedPictureFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| pictureType | [ID3V2AttachedPictureType](../../com.groupdocs.metadata.core/id3v2attachedpicturetype) | The type of the picture. |
-| description | java.lang.String | The description of the picture. |
-| pictureData | byte[] | The picture data. |
+| pictureType | [ID3V2AttachedPictureType](../../com.groupdocs.metadata.core/id3v2attachedpicturetype) | The type of the picture.
+ |
+| description | java.lang.String | The description of the picture.
+ |
+| pictureData | byte[] | The picture data.
+ |
### ID3V2AttachedPictureFrame(byte[] pictureData) {#ID3V2AttachedPictureFrame-byte---}
```
@@ -74,12 +106,16 @@ public ID3V2AttachedPictureFrame(byte[] pictureData)
```
-Initializes a new instance of the ID3V2AttachedPictureFrame class.
+Initializes a new instance of the
+ID3V2AttachedPictureFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| pictureData | byte[] | The picture data. |
+| pictureData | byte[] | The picture data.
+ |
### getDescriptionEncoding() {#getDescriptionEncoding--}
```
@@ -89,8 +125,10 @@ public final ID3V2EncodingType getDescriptionEncoding()
Gets the encoding used to encode the picture description.
+
**Returns:**
[ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) - The encoding used to encode the picture description.
+
### getMimeType() {#getMimeType--}
```
public final String getMimeType()
@@ -99,8 +137,10 @@ public final String getMimeType()
Gets the MIME type of the picture.
+
**Returns:**
java.lang.String - The MIME type of the picture.
+
### getAttachedPictureType() {#getAttachedPictureType--}
```
public final ID3V2AttachedPictureType getAttachedPictureType()
@@ -109,18 +149,23 @@ public final ID3V2AttachedPictureType getAttachedPictureType()
Gets the type of the picture.
+
**Returns:**
[ID3V2AttachedPictureType](../../com.groupdocs.metadata.core/id3v2attachedpicturetype) - The type of the picture.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
```
-Gets the picture description. The description has a maximum length of 64 characters, but may be empty.
+Gets the picture description.
+The description has a maximum length of 64 characters, but may be empty.
+
**Returns:**
java.lang.String - The picture description.
+
### getPictureData() {#getPictureData--}
```
public final byte[] getPictureData()
@@ -129,5 +174,7 @@ public final byte[] getPictureData()
Gets the picture data.
+
**Returns:**
byte[] - The picture data.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2attachedpicturetype/_index.md b/english/java/com.groupdocs.metadata.core/id3v2attachedpicturetype/_index.md
index 38de264d6b..9a83429325 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2attachedpicturetype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2attachedpicturetype/_index.md
@@ -16,31 +16,53 @@ public final class ID3V2AttachedPictureType implements IEnumValue
```
Represents the type of an attached picture.
+
## Fields
| Field | Description |
| --- | --- |
-| [Other](#Other) | Attached picture of any other type. |
-| [FileIcon32X32](#FileIcon32X32) | 32x32 pixels file icon (PNG only). |
-| [OtherFileIcon](#OtherFileIcon) | Other file icon. |
-| [CoverFront](#CoverFront) | Cover (front). |
-| [CoverBack](#CoverBack) | Cover (back). |
-| [LeafletPage](#LeafletPage) | Leaflet page. |
-| [Media](#Media) | Media (e.g. |
-| [LeadArtist](#LeadArtist) | Lead artist/lead performer/soloist. |
-| [Artist](#Artist) | Artist/performer. |
-| [Conductor](#Conductor) | Conductor. |
-| [Band](#Band) | Band/Orchestra. |
-| [Composer](#Composer) | Composer/music author. |
-| [Lyricist](#Lyricist) | Lyricist/text writer. |
-| [RecordingLocation](#RecordingLocation) | Recording Location. |
-| [DuringRecording](#DuringRecording) | During recording. |
-| [DuringPerformance](#DuringPerformance) | During performance. |
-| [VideoScreenCapture](#VideoScreenCapture) | Movie/video screen capture. |
-| [BrightColouredFish](#BrightColouredFish) | A bright coloured fish. |
-| [Illustration](#Illustration) | Illustration. |
-| [ArtistLogo](#ArtistLogo) | Band/artist logotype. |
-| [StudioLogo](#StudioLogo) | Publisher/Studio logotype. |
+| [Other](#Other) | Attached picture of any other type.
+ |
+| [FileIcon32X32](#FileIcon32X32) | 32x32 pixels file icon (PNG only).
+ |
+| [OtherFileIcon](#OtherFileIcon) | Other file icon.
+ |
+| [CoverFront](#CoverFront) | Cover (front).
+ |
+| [CoverBack](#CoverBack) | Cover (back).
+ |
+| [LeafletPage](#LeafletPage) | Leaflet page.
+ |
+| [Media](#Media) | Media (e.g.
+ |
+| [LeadArtist](#LeadArtist) | Lead artist/lead performer/soloist.
+ |
+| [Artist](#Artist) | Artist/performer.
+ |
+| [Conductor](#Conductor) | Conductor.
+ |
+| [Band](#Band) | Band/Orchestra.
+ |
+| [Composer](#Composer) | Composer/music author.
+ |
+| [Lyricist](#Lyricist) | Lyricist/text writer.
+ |
+| [RecordingLocation](#RecordingLocation) | Recording Location.
+ |
+| [DuringRecording](#DuringRecording) | During recording.
+ |
+| [DuringPerformance](#DuringPerformance) | During performance.
+ |
+| [VideoScreenCapture](#VideoScreenCapture) | Movie/video screen capture.
+ |
+| [BrightColouredFish](#BrightColouredFish) | A bright coloured fish.
+ |
+| [Illustration](#Illustration) | Illustration.
+ |
+| [ArtistLogo](#ArtistLogo) | Band/artist logotype.
+ |
+| [StudioLogo](#StudioLogo) | Publisher/Studio logotype.
+ |
## Methods
| Method | Description |
@@ -63,6 +85,7 @@ public static final ID3V2AttachedPictureType Other
Attached picture of any other type.
+
### FileIcon32X32 {#FileIcon32X32}
```
public static final ID3V2AttachedPictureType FileIcon32X32
@@ -71,6 +94,7 @@ public static final ID3V2AttachedPictureType FileIcon32X32
32x32 pixels file icon (PNG only).
+
### OtherFileIcon {#OtherFileIcon}
```
public static final ID3V2AttachedPictureType OtherFileIcon
@@ -79,6 +103,7 @@ public static final ID3V2AttachedPictureType OtherFileIcon
Other file icon.
+
### CoverFront {#CoverFront}
```
public static final ID3V2AttachedPictureType CoverFront
@@ -87,6 +112,7 @@ public static final ID3V2AttachedPictureType CoverFront
Cover (front).
+
### CoverBack {#CoverBack}
```
public static final ID3V2AttachedPictureType CoverBack
@@ -95,6 +121,7 @@ public static final ID3V2AttachedPictureType CoverBack
Cover (back).
+
### LeafletPage {#LeafletPage}
```
public static final ID3V2AttachedPictureType LeafletPage
@@ -103,6 +130,7 @@ public static final ID3V2AttachedPictureType LeafletPage
Leaflet page.
+
### Media {#Media}
```
public static final ID3V2AttachedPictureType Media
@@ -111,6 +139,7 @@ public static final ID3V2AttachedPictureType Media
Media (e.g. label side of CD).
+
### LeadArtist {#LeadArtist}
```
public static final ID3V2AttachedPictureType LeadArtist
@@ -119,6 +148,7 @@ public static final ID3V2AttachedPictureType LeadArtist
Lead artist/lead performer/soloist.
+
### Artist {#Artist}
```
public static final ID3V2AttachedPictureType Artist
@@ -127,6 +157,7 @@ public static final ID3V2AttachedPictureType Artist
Artist/performer.
+
### Conductor {#Conductor}
```
public static final ID3V2AttachedPictureType Conductor
@@ -135,6 +166,7 @@ public static final ID3V2AttachedPictureType Conductor
Conductor.
+
### Band {#Band}
```
public static final ID3V2AttachedPictureType Band
@@ -143,6 +175,7 @@ public static final ID3V2AttachedPictureType Band
Band/Orchestra.
+
### Composer {#Composer}
```
public static final ID3V2AttachedPictureType Composer
@@ -151,6 +184,7 @@ public static final ID3V2AttachedPictureType Composer
Composer/music author.
+
### Lyricist {#Lyricist}
```
public static final ID3V2AttachedPictureType Lyricist
@@ -159,6 +193,7 @@ public static final ID3V2AttachedPictureType Lyricist
Lyricist/text writer.
+
### RecordingLocation {#RecordingLocation}
```
public static final ID3V2AttachedPictureType RecordingLocation
@@ -167,6 +202,7 @@ public static final ID3V2AttachedPictureType RecordingLocation
Recording Location.
+
### DuringRecording {#DuringRecording}
```
public static final ID3V2AttachedPictureType DuringRecording
@@ -175,6 +211,7 @@ public static final ID3V2AttachedPictureType DuringRecording
During recording.
+
### DuringPerformance {#DuringPerformance}
```
public static final ID3V2AttachedPictureType DuringPerformance
@@ -183,6 +220,7 @@ public static final ID3V2AttachedPictureType DuringPerformance
During performance.
+
### VideoScreenCapture {#VideoScreenCapture}
```
public static final ID3V2AttachedPictureType VideoScreenCapture
@@ -191,6 +229,7 @@ public static final ID3V2AttachedPictureType VideoScreenCapture
Movie/video screen capture.
+
### BrightColouredFish {#BrightColouredFish}
```
public static final ID3V2AttachedPictureType BrightColouredFish
@@ -199,6 +238,7 @@ public static final ID3V2AttachedPictureType BrightColouredFish
A bright coloured fish.
+
### Illustration {#Illustration}
```
public static final ID3V2AttachedPictureType Illustration
@@ -207,6 +247,7 @@ public static final ID3V2AttachedPictureType Illustration
Illustration.
+
### ArtistLogo {#ArtistLogo}
```
public static final ID3V2AttachedPictureType ArtistLogo
@@ -215,6 +256,7 @@ public static final ID3V2AttachedPictureType ArtistLogo
Band/artist logotype.
+
### StudioLogo {#StudioLogo}
```
public static final ID3V2AttachedPictureType StudioLogo
@@ -223,6 +265,8 @@ public static final ID3V2AttachedPictureType StudioLogo
Publisher/Studio logotype.
+
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static ID3V2AttachedPictureType getByRawValue(int rawValue)
@@ -256,6 +300,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -266,6 +311,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -281,6 +327,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -296,6 +343,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -306,6 +354,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -316,6 +365,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/id3v2commentframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2commentframe/_index.md
index 73742c7bf4..1d2da8b91c 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2commentframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2commentframe/_index.md
@@ -12,46 +12,68 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2CommentFrame extends ID3V2TagFrame
```
-Represents a COMM frame in an ID3V2Tag .
+Represents a COMM frame in an
+ID3V2Tag
+.
---------------------
+
+
+*** ** * ** ***
This frame is intended for any kind of full text information that does not fit in any other frame.
+
+
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2CommentFrame(ID3V2EncodingType encoding, String language, String description, String text)](#ID3V2CommentFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-java.lang.String-) | Initializes a new instance of the ID3V2CommentFrame class. |
+| [ID3V2CommentFrame(ID3V2EncodingType encoding, String language, String description, String text)](#ID3V2CommentFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-java.lang.String-) | Initializes a new instance of the
+ID3V2CommentFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCommentEncoding()](#getCommentEncoding--) | Gets the encoding of the comment. |
-| [getLanguage()](#getLanguage--) | Gets the language of the comment (3 characters). |
-| [getShortContentDescription()](#getShortContentDescription--) | Gets the short content description. |
-| [getText()](#getText--) | Gets the text of the comment. |
+| [getCommentEncoding()](#getCommentEncoding--) | Gets the encoding of the comment.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language of the comment (3 characters).
+ |
+| [getShortContentDescription()](#getShortContentDescription--) | Gets the short content description.
+ |
+| [getText()](#getText--) | Gets the text of the comment.
+ |
### ID3V2CommentFrame(ID3V2EncodingType encoding, String language, String description, String text) {#ID3V2CommentFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-java.lang.String-}
```
public ID3V2CommentFrame(ID3V2EncodingType encoding, String language, String description, String text)
```
-Initializes a new instance of the ID3V2CommentFrame class.
+Initializes a new instance of the
+ID3V2CommentFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the comment. |
-| language | java.lang.String | The language of the comment. |
-| description | java.lang.String | A short content description. |
-| text | java.lang.String | The text of the comment. |
+| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the comment.
+ |
+| language | java.lang.String | The language of the comment.
+ |
+| description | java.lang.String | A short content description.
+ |
+| text | java.lang.String | The text of the comment.
+ |
### getCommentEncoding() {#getCommentEncoding--}
```
@@ -61,8 +83,10 @@ public final ID3V2EncodingType getCommentEncoding()
Gets the encoding of the comment.
+
**Returns:**
[ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) - The encoding of the comment.
+
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -71,8 +95,10 @@ public final String getLanguage()
Gets the language of the comment (3 characters).
+
**Returns:**
java.lang.String - The language of the comment.
+
### getShortContentDescription() {#getShortContentDescription--}
```
public final String getShortContentDescription()
@@ -81,8 +107,10 @@ public final String getShortContentDescription()
Gets the short content description.
+
**Returns:**
java.lang.String - The short content description.
+
### getText() {#getText--}
```
public final String getText()
@@ -91,5 +119,7 @@ public final String getText()
Gets the text of the comment.
+
**Returns:**
java.lang.String - The text of the comment.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2encodingtype/_index.md b/english/java/com.groupdocs.metadata.core/id3v2encodingtype/_index.md
index e5355e3788..1d3f5889ca 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2encodingtype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2encodingtype/_index.md
@@ -16,14 +16,19 @@ public enum ID3V2EncodingType extends Enum implements IEnumVa
```
Defines different types of text encoding used in ID3v2.
+
## Fields
| Field | Description |
| --- | --- |
-| [Iso88591](#Iso88591) | The ISO-8859-1 encoding. |
-| [Utf16](#Utf16) | The UTF-16 encoding with BOM. |
-| [Utf16Be](#Utf16Be) | The UTF-16 encoding without BOM. |
-| [Utf8](#Utf8) | The UTF-8 encoding. |
+| [Iso88591](#Iso88591) | The ISO-8859-1 encoding.
+ |
+| [Utf16](#Utf16) | The UTF-16 encoding with BOM.
+ |
+| [Utf16Be](#Utf16Be) | The UTF-16 encoding without BOM.
+ |
+| [Utf8](#Utf8) | The UTF-8 encoding.
+ |
## Methods
| Method | Description |
@@ -45,6 +50,7 @@ public static final ID3V2EncodingType Iso88591
The ISO-8859-1 encoding.
+
### Utf16 {#Utf16}
```
public static final ID3V2EncodingType Utf16
@@ -53,6 +59,7 @@ public static final ID3V2EncodingType Utf16
The UTF-16 encoding with BOM.
+
### Utf16Be {#Utf16Be}
```
public static final ID3V2EncodingType Utf16Be
@@ -61,6 +68,7 @@ public static final ID3V2EncodingType Utf16Be
The UTF-16 encoding without BOM.
+
### Utf8 {#Utf8}
```
public static final ID3V2EncodingType Utf8
@@ -69,6 +77,7 @@ public static final ID3V2EncodingType Utf8
The UTF-8 encoding.
+
### values() {#values--}
```
public static ID3V2EncodingType[] values()
@@ -127,6 +136,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +147,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +163,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +179,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +190,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/id3v2mlltframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2mlltframe/_index.md
index a81cefad2b..03f518ba03 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2mlltframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2mlltframe/_index.md
@@ -12,11 +12,15 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2MlltFrame extends ID3V2TagFrame
```
-Represents an MLLT frame in an ID3V2Tag .
+Represents an MLLT frame in an
+ID3V2Tag
+.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
diff --git a/english/java/com.groupdocs.metadata.core/id3v2playcounterframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2playcounterframe/_index.md
index 31da21bcca..1f9c02d56b 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2playcounterframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2playcounterframe/_index.md
@@ -12,19 +12,25 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2PlayCounterFrame extends ID3V2TagFrame
```
-Represents a PCNT frame in an ID3V2Tag . This is simply a counter of the number of times a file has been played.
+Represents a PCNT frame in an
+ID3V2Tag
+.
+This is simply a counter of the number of times a file has been played.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the number of times the file has been played. |
+| [getValue()](#getValue--) | Gets the number of times the file has been played.
+ |
### getValue() {#getValue--}
```
public final long getValue()
@@ -33,5 +39,7 @@ public final long getValue()
Gets the number of times the file has been played.
+
**Returns:**
long - The number of times the file has been played.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2privateframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2privateframe/_index.md
index 6958180b15..92dbf35bc4 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2privateframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2privateframe/_index.md
@@ -12,38 +12,54 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2PrivateFrame extends ID3V2TagFrame
```
-Represents a PRIV frame in an ID3V2Tag . The frame is used to contain information from a software producer that its program uses and does not fit into the other frames.
+Represents a PRIV frame in an
+ID3V2Tag
+.
+The frame is used to contain information from a software producer that its program uses
+and does not fit into the other frames.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2PrivateFrame(String ownerIdentifier, byte[] data)](#ID3V2PrivateFrame-java.lang.String-byte---) | Initializes a new instance of the ID3V2PrivateFrame class. |
+| [ID3V2PrivateFrame(String ownerIdentifier, byte[] data)](#ID3V2PrivateFrame-java.lang.String-byte---) | Initializes a new instance of the
+ID3V2PrivateFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getOwnerIdentifier()](#getOwnerIdentifier--) | Gets the owner identifier. |
-| [getBinaryData()](#getBinaryData--) | Gets the binary data. |
+| [getOwnerIdentifier()](#getOwnerIdentifier--) | Gets the owner identifier.
+ |
+| [getBinaryData()](#getBinaryData--) | Gets the binary data.
+ |
### ID3V2PrivateFrame(String ownerIdentifier, byte[] data) {#ID3V2PrivateFrame-java.lang.String-byte---}
```
public ID3V2PrivateFrame(String ownerIdentifier, byte[] data)
```
-Initializes a new instance of the ID3V2PrivateFrame class.
+Initializes a new instance of the
+ID3V2PrivateFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| ownerIdentifier | java.lang.String | The owner identifier. |
-| data | byte[] | Frame binary data. |
+| ownerIdentifier | java.lang.String | The owner identifier.
+ |
+| data | byte[] | Frame binary data.
+ |
### getOwnerIdentifier() {#getOwnerIdentifier--}
```
@@ -53,8 +69,10 @@ public final String getOwnerIdentifier()
Gets the owner identifier.
+
**Returns:**
java.lang.String - The owner identifier.
+
### getBinaryData() {#getBinaryData--}
```
public final byte[] getBinaryData()
@@ -63,5 +81,7 @@ public final byte[] getBinaryData()
Gets the binary data.
+
**Returns:**
byte[] - The binary data.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2tag/_index.md b/english/java/com.groupdocs.metadata.core/id3v2tag/_index.md
index b459979ca2..ea0ef6d66b 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2tag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2tag/_index.md
@@ -12,17 +12,23 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2Tag extends ID3Tag
```
-Represents an ID3v2 tag. Please find more information at [https://en.wikipedia.org/wiki/ID3\#ID3v2][https_en.wikipedia.org_wiki_ID3_ID3v2] .
+Represents an ID3v2 tag.
+Please find more information at
+
+.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
-This example shows how to read the ID3v2 tag in an MP3 file.
+
+This example shows how to read the ID3v2 tag in an MP3 file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.MP3WithID3V2)) {
> MP3RootPackage root = metadata.getRootPackageGeneric();
> if (root.getID3V2() != null) {
@@ -48,83 +54,143 @@ This example shows how to read the ID3v2 tag in an MP3 file.
> }
>
> ```
-> ```
+> ````
-[https_en.wikipedia.org_wiki_ID3_ID3v2]: https://en.wikipedia.org/wiki/ID3#ID3v2
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2Tag()](#ID3V2Tag--) | Initializes a new instance of the ID3V2Tag class. |
+| [ID3V2Tag()](#ID3V2Tag--) | Initializes a new instance of the
+ID3V2Tag
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the ID3 version. |
-| [getTagSize()](#getTagSize--) | Gets the size of the tag. |
-| [getAlbum()](#getAlbum--) | Gets the Album/Movie/Show title. |
-| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the Album/Movie/Show title. |
-| [getArtist()](#getArtist--) | Gets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group. |
-| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group. |
-| [getBand()](#getBand--) | Gets the Band/Orchestra/Accompaniment. |
-| [setBand(String value)](#setBand-java.lang.String-) | Sets the Band/Orchestra/Accompaniment. |
-| [getBitsPerMinute()](#getBitsPerMinute--) | Gets the number of beats per minute in the main part of the audio. |
-| [setBitsPerMinute(String value)](#setBitsPerMinute-java.lang.String-) | Sets the number of beats per minute in the main part of the audio. |
-| [getComposers()](#getComposers--) | Gets the composers. |
-| [setComposers(String value)](#setComposers-java.lang.String-) | Sets the composers. |
-| [getContentType()](#getContentType--) | Gets the content type. |
-| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type. |
-| [getCopyright()](#getCopyright--) | Gets the copyright message. |
-| [setCopyright(String value)](#setCopyright-java.lang.String-) | Sets the copyright message. |
-| [getDate()](#getDate--) | Gets a numeric string in the DDMM format containing the date for the recording. |
-| [setDate(String value)](#setDate-java.lang.String-) | Sets a numeric string in the DDMM format containing the date for the recording. |
-| [getEncodedBy()](#getEncodedBy--) | Gets the name of the person or organization that encoded the audio file. |
-| [setEncodedBy(String value)](#setEncodedBy-java.lang.String-) | Sets the name of the person or organization that encoded the audio file. |
-| [getPublisher()](#getPublisher--) | Gets the name of the label or publisher. |
-| [setPublisher(String value)](#setPublisher-java.lang.String-) | Sets the name of the label or publisher. |
-| [getTime()](#getTime--) | Gets a numeric string in the HHMM format containing the time for the recording. |
-| [setTime(String value)](#setTime-java.lang.String-) | Sets a numeric string in the HHMM format containing the time for the recording. |
-| [getTitle()](#getTitle--) | Gets the Title/Song name/Content description. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the Title/Song name/Content description. |
-| [getSubtitle()](#getSubtitle--) | Gets the Subtitle/Description refinement. |
-| [setSubtitle(String value)](#setSubtitle-java.lang.String-) | Sets the Subtitle/Description refinement. |
-| [getMusicalKey()](#getMusicalKey--) | Gets the musical key in which the sound starts. |
-| [setMusicalKey(String value)](#setMusicalKey-java.lang.String-) | Sets the musical key in which the sound starts. |
-| [getLengthInMilliseconds()](#getLengthInMilliseconds--) | Gets the length of the audio file in milliseconds, represented as a numeric string. |
-| [setLengthInMilliseconds(String value)](#setLengthInMilliseconds-java.lang.String-) | Sets the length of the audio file in milliseconds, represented as a numeric string. |
-| [getOriginalAlbum()](#getOriginalAlbum--) | Gets the original album/movie/show title. |
-| [setOriginalAlbum(String value)](#setOriginalAlbum-java.lang.String-) | Sets the original album/movie/show title. |
-| [getTrackNumber()](#getTrackNumber--) | Gets a numeric string containing the order number of the audio-file on its original recording. |
-| [setTrackNumber(String value)](#setTrackNumber-java.lang.String-) | Sets a numeric string containing the order number of the audio-file on its original recording. |
-| [getSizeInBytes()](#getSizeInBytes--) | Gets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string. |
-| [setSizeInBytes(String value)](#setSizeInBytes-java.lang.String-) | Sets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string. |
-| [getIsrc()](#getIsrc--) | Gets the International Standard Recording Code (ISRC) (12 characters). |
-| [setIsrc(String value)](#setIsrc-java.lang.String-) | Sets the International Standard Recording Code (ISRC) (12 characters). |
-| [getSoftwareHardware()](#getSoftwareHardware--) | Gets the used audio encoder and its settings when the file was encoded. |
-| [setSoftwareHardware(String value)](#setSoftwareHardware-java.lang.String-) | Sets the used audio encoder and its settings when the file was encoded. |
-| [getYear()](#getYear--) | Gets a numeric string with a year of the recording. |
-| [setYear(String value)](#setYear-java.lang.String-) | Sets a numeric string with a year of the recording. |
-| [getComments()](#getComments--) | Gets the user comments. |
-| [setComments(ID3V2CommentFrame[] value)](#setComments-com.groupdocs.metadata.core.ID3V2CommentFrame---) | Sets the user comments. |
-| [getAttachedPictures()](#getAttachedPictures--) | Gets the attached pictures directly related to the audio file. |
-| [setAttachedPictures(ID3V2AttachedPictureFrame[] value)](#setAttachedPictures-com.groupdocs.metadata.core.ID3V2AttachedPictureFrame---) | Sets the attached pictures directly related to the audio file. |
-| [getTrackPlayCounter()](#getTrackPlayCounter--) | Gets the number of times the file has been played. |
-| [toList()](#toList--) | Creates a list from the package. |
-| [removeAttachedPictures()](#removeAttachedPictures--) | Removes all attached pictures stored in APIC frames. |
-| [get(String frameId)](#get-java.lang.String-) | Gets an array of frames with the specified id. |
-| [set(ID3V2TagFrame frame)](#set-com.groupdocs.metadata.core.ID3V2TagFrame-) | Removes all frames having the same id as the specified one and adds the new frame to the tag. |
-| [clear(String frameId)](#clear-java.lang.String-) | Removes all frames with the specified id. |
-| [add(ID3V2TagFrame frame)](#add-com.groupdocs.metadata.core.ID3V2TagFrame-) | Adds a frame to the tag. |
-| [remove(ID3V2TagFrame frame)](#remove-com.groupdocs.metadata.core.ID3V2TagFrame-) | Removes the specified frame from the tag. |
+| [getVersion()](#getVersion--) | Gets the ID3 version.
+ |
+| [getTagSize()](#getTagSize--) | Gets the size of the tag.
+ |
+| [getAlbum()](#getAlbum--) | Gets the Album/Movie/Show title.
+ |
+| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the Album/Movie/Show title.
+ |
+| [getArtist()](#getArtist--) | Gets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group.
+ |
+| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group.
+ |
+| [getBand()](#getBand--) | Gets the Band/Orchestra/Accompaniment.
+ |
+| [setBand(String value)](#setBand-java.lang.String-) | Sets the Band/Orchestra/Accompaniment.
+ |
+| [getBitsPerMinute()](#getBitsPerMinute--) | Gets the number of beats per minute in the main part of the audio.
+ |
+| [setBitsPerMinute(String value)](#setBitsPerMinute-java.lang.String-) | Sets the number of beats per minute in the main part of the audio.
+ |
+| [getComposers()](#getComposers--) | Gets the composers.
+ |
+| [setComposers(String value)](#setComposers-java.lang.String-) | Sets the composers.
+ |
+| [getContentType()](#getContentType--) | Gets the content type.
+ |
+| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type.
+ |
+| [getCopyright()](#getCopyright--) | Gets the copyright message.
+ |
+| [setCopyright(String value)](#setCopyright-java.lang.String-) | Sets the copyright message.
+ |
+| [getDate()](#getDate--) | Gets a numeric string in the DDMM format containing the date for the recording.
+ |
+| [setDate(String value)](#setDate-java.lang.String-) | Sets a numeric string in the DDMM format containing the date for the recording.
+ |
+| [getEncodedBy()](#getEncodedBy--) | Gets the name of the person or organization that encoded the audio file.
+ |
+| [setEncodedBy(String value)](#setEncodedBy-java.lang.String-) | Sets the name of the person or organization that encoded the audio file.
+ |
+| [getPublisher()](#getPublisher--) | Gets the name of the label or publisher.
+ |
+| [setPublisher(String value)](#setPublisher-java.lang.String-) | Sets the name of the label or publisher.
+ |
+| [getTime()](#getTime--) | Gets a numeric string in the HHMM format containing the time for the recording.
+ |
+| [setTime(String value)](#setTime-java.lang.String-) | Sets a numeric string in the HHMM format containing the time for the recording.
+ |
+| [getTitle()](#getTitle--) | Gets the Title/Song name/Content description.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the Title/Song name/Content description.
+ |
+| [getSubtitle()](#getSubtitle--) | Gets the Subtitle/Description refinement.
+ |
+| [setSubtitle(String value)](#setSubtitle-java.lang.String-) | Sets the Subtitle/Description refinement.
+ |
+| [getMusicalKey()](#getMusicalKey--) | Gets the musical key in which the sound starts.
+ |
+| [setMusicalKey(String value)](#setMusicalKey-java.lang.String-) | Sets the musical key in which the sound starts.
+ |
+| [getLengthInMilliseconds()](#getLengthInMilliseconds--) | Gets the length of the audio file in milliseconds, represented as a numeric string.
+ |
+| [setLengthInMilliseconds(String value)](#setLengthInMilliseconds-java.lang.String-) | Sets the length of the audio file in milliseconds, represented as a numeric string.
+ |
+| [getOriginalAlbum()](#getOriginalAlbum--) | Gets the original album/movie/show title.
+ |
+| [setOriginalAlbum(String value)](#setOriginalAlbum-java.lang.String-) | Sets the original album/movie/show title.
+ |
+| [getTrackNumber()](#getTrackNumber--) | Gets a numeric string containing the order number of the audio-file on its original recording.
+ |
+| [setTrackNumber(String value)](#setTrackNumber-java.lang.String-) | Sets a numeric string containing the order number of the audio-file on its original recording.
+ |
+| [getSizeInBytes()](#getSizeInBytes--) | Gets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string.
+ |
+| [setSizeInBytes(String value)](#setSizeInBytes-java.lang.String-) | Sets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string.
+ |
+| [getIsrc()](#getIsrc--) | Gets the International Standard Recording Code (ISRC) (12 characters).
+ |
+| [setIsrc(String value)](#setIsrc-java.lang.String-) | Sets the International Standard Recording Code (ISRC) (12 characters).
+ |
+| [getSoftwareHardware()](#getSoftwareHardware--) | Gets the used audio encoder and its settings when the file was encoded.
+ |
+| [setSoftwareHardware(String value)](#setSoftwareHardware-java.lang.String-) | Sets the used audio encoder and its settings when the file was encoded.
+ |
+| [getYear()](#getYear--) | Gets a numeric string with a year of the recording.
+ |
+| [setYear(String value)](#setYear-java.lang.String-) | Sets a numeric string with a year of the recording.
+ |
+| [getComments()](#getComments--) | Gets the user comments.
+ |
+| [setComments(ID3V2CommentFrame[] value)](#setComments-com.groupdocs.metadata.core.ID3V2CommentFrame---) | Sets the user comments.
+ |
+| [getAttachedPictures()](#getAttachedPictures--) | Gets the attached pictures directly related to the audio file.
+ |
+| [setAttachedPictures(ID3V2AttachedPictureFrame[] value)](#setAttachedPictures-com.groupdocs.metadata.core.ID3V2AttachedPictureFrame---) | Sets the attached pictures directly related to the audio file.
+ |
+| [getTrackPlayCounter()](#getTrackPlayCounter--) | Gets the number of times the file has been played.
+ |
+| [toList()](#toList--) | Creates a list from the package.
+ |
+| [removeAttachedPictures()](#removeAttachedPictures--) | Removes all attached pictures stored in APIC frames.
+ |
+| [get(String frameId)](#get-java.lang.String-) | Gets an array of frames with the specified id.
+ |
+| [set(ID3V2TagFrame frame)](#set-com.groupdocs.metadata.core.ID3V2TagFrame-) | Removes all frames having the same id as the specified one and adds the new frame to the tag.
+ |
+| [clear(String frameId)](#clear-java.lang.String-) | Removes all frames with the specified id.
+ |
+| [add(ID3V2TagFrame frame)](#add-com.groupdocs.metadata.core.ID3V2TagFrame-) | Adds a frame to the tag.
+ |
+| [remove(ID3V2TagFrame frame)](#remove-com.groupdocs.metadata.core.ID3V2TagFrame-) | Removes the specified frame from the tag.
+ |
### ID3V2Tag() {#ID3V2Tag--}
```
public ID3V2Tag()
```
-Initializes a new instance of the ID3V2Tag class.
+Initializes a new instance of the
+ID3V2Tag
+ class.
+
### getVersion() {#getVersion--}
```
@@ -134,8 +200,10 @@ public String getVersion()
Gets the ID3 version.
+
**Returns:**
java.lang.String - The ID3 version.
+
### getTagSize() {#getTagSize--}
```
public final int getTagSize()
@@ -144,30 +212,38 @@ public final int getTagSize()
Gets the size of the tag.
+
**Returns:**
int - The size of the tag.
+
### getAlbum() {#getAlbum--}
```
public final String getAlbum()
```
-Gets the Album/Movie/Show title. This value is represented by the TALB frame.
+Gets the Album/Movie/Show title.
+This value is represented by the TALB frame.
+
**Returns:**
java.lang.String - The Album/Movie/Show title.
+
### setAlbum(String value) {#setAlbum-java.lang.String-}
```
public final void setAlbum(String value)
```
-Sets the Album/Movie/Show title. This value is represented by the TALB frame.
+Sets the Album/Movie/Show title.
+This value is represented by the TALB frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Album/Movie/Show title. |
+| value | java.lang.String | The Album/Movie/Show title.
+ |
### getArtist() {#getArtist--}
```
@@ -175,22 +251,28 @@ public final String getArtist()
```
-Gets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group. This value is represented by the TPE1 frame.
+Gets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group.
+This value is represented by the TPE1 frame.
+
**Returns:**
java.lang.String - The Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group.
+
### setArtist(String value) {#setArtist-java.lang.String-}
```
public final void setArtist(String value)
```
-Sets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group. This value is represented by the TPE1 frame.
+Sets the Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group.
+This value is represented by the TPE1 frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group. |
+| value | java.lang.String | The Lead artist(s)/Lead performer(s)/Soloist(s)/Performing group.
+ |
### getBand() {#getBand--}
```
@@ -198,22 +280,28 @@ public final String getBand()
```
-Gets the Band/Orchestra/Accompaniment. This value is represented by the TPE2 frame.
+Gets the Band/Orchestra/Accompaniment.
+This value is represented by the TPE2 frame.
+
**Returns:**
java.lang.String - The Band/Orchestra/Accompaniment.
+
### setBand(String value) {#setBand-java.lang.String-}
```
public final void setBand(String value)
```
-Sets the Band/Orchestra/Accompaniment. This value is represented by the TPE2 frame.
+Sets the Band/Orchestra/Accompaniment.
+This value is represented by the TPE2 frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Band/Orchestra/Accompaniment. |
+| value | java.lang.String | The Band/Orchestra/Accompaniment.
+ |
### getBitsPerMinute() {#getBitsPerMinute--}
```
@@ -221,22 +309,28 @@ public final String getBitsPerMinute()
```
-Gets the number of beats per minute in the main part of the audio. This value is represented by the TBPM frame.
+Gets the number of beats per minute in the main part of the audio.
+This value is represented by the TBPM frame.
+
**Returns:**
java.lang.String - The number of beats per minute in the main part of the audio.
+
### setBitsPerMinute(String value) {#setBitsPerMinute-java.lang.String-}
```
public final void setBitsPerMinute(String value)
```
-Sets the number of beats per minute in the main part of the audio. This value is represented by the TBPM frame.
+Sets the number of beats per minute in the main part of the audio.
+This value is represented by the TBPM frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The number of beats per minute in the main part of the audio. |
+| value | java.lang.String | The number of beats per minute in the main part of the audio.
+ |
### getComposers() {#getComposers--}
```
@@ -244,22 +338,28 @@ public final String getComposers()
```
-Gets the composers. The names are separated with the "/" character. This value is represented by the TCOM frame.
+Gets the composers. The names are separated with the "/" character.
+This value is represented by the TCOM frame.
+
**Returns:**
java.lang.String - The composers. The names are separated with the "/" character.
+
### setComposers(String value) {#setComposers-java.lang.String-}
```
public final void setComposers(String value)
```
-Sets the composers. The names are separated with the "/" character. This value is represented by the TCOM frame.
+Sets the composers. The names are separated with the "/" character.
+This value is represented by the TCOM frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The composers. The names are separated with the "/" character. |
+| value | java.lang.String | The composers. The names are separated with the "/" character.
+ |
### getContentType() {#getContentType--}
```
@@ -267,22 +367,28 @@ public final String getContentType()
```
-Gets the content type. This value is represented by the TCON frame.
+Gets the content type.
+This value is represented by the TCON frame.
+
**Returns:**
java.lang.String - The content type.
+
### setContentType(String value) {#setContentType-java.lang.String-}
```
public final void setContentType(String value)
```
-Sets the content type. This value is represented by the TCON frame.
+Sets the content type.
+This value is represented by the TCON frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The content type. |
+| value | java.lang.String | The content type.
+ |
### getCopyright() {#getCopyright--}
```
@@ -290,30 +396,46 @@ public final String getCopyright()
```
-Gets the copyright message. This value is represented by the TCOP frame.
+Gets the copyright message.
+This value is represented by the TCOP frame.
+
**Returns:**
java.lang.String - The copyright message.
---------------------
+
+
+*** ** * ** ***
Every time this field is displayed the field must be preceded with "Copyright ?? ".
+
+
+
+
### setCopyright(String value) {#setCopyright-java.lang.String-}
```
public final void setCopyright(String value)
```
-Sets the copyright message. This value is represented by the TCOP frame.
+Sets the copyright message.
+This value is represented by the TCOP frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The copyright message.
---------------------
+
+
+*** ** * ** ***
+
+Every time this field is displayed the field must be preceded with "Copyright ?? ".
+
+
-Every time this field is displayed the field must be preceded with "Copyright ?? ". |
+ |
### getDate() {#getDate--}
```
@@ -321,22 +443,28 @@ public final String getDate()
```
-Gets a numeric string in the DDMM format containing the date for the recording. This field is always four characters long. This value is represented by the TDAT frame.
+Gets a numeric string in the DDMM format containing the date for the recording. This field is always four characters long.
+This value is represented by the TDAT frame.
+
**Returns:**
java.lang.String - A numeric string in the DDMM format containing the date for the recording.
+
### setDate(String value) {#setDate-java.lang.String-}
```
public final void setDate(String value)
```
-Sets a numeric string in the DDMM format containing the date for the recording. This field is always four characters long. This value is represented by the TDAT frame.
+Sets a numeric string in the DDMM format containing the date for the recording. This field is always four characters long.
+This value is represented by the TDAT frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A numeric string in the DDMM format containing the date for the recording. |
+| value | java.lang.String | A numeric string in the DDMM format containing the date for the recording.
+ |
### getEncodedBy() {#getEncodedBy--}
```
@@ -344,22 +472,28 @@ public final String getEncodedBy()
```
-Gets the name of the person or organization that encoded the audio file. This value is represented by the TENC frame.
+Gets the name of the person or organization that encoded the audio file.
+This value is represented by the TENC frame.
+
**Returns:**
java.lang.String - The name of the person or organization that encoded the audio file.
+
### setEncodedBy(String value) {#setEncodedBy-java.lang.String-}
```
public final void setEncodedBy(String value)
```
-Sets the name of the person or organization that encoded the audio file. This value is represented by the TENC frame.
+Sets the name of the person or organization that encoded the audio file.
+This value is represented by the TENC frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the person or organization that encoded the audio file. |
+| value | java.lang.String | The name of the person or organization that encoded the audio file.
+ |
### getPublisher() {#getPublisher--}
```
@@ -367,22 +501,28 @@ public final String getPublisher()
```
-Gets the name of the label or publisher. This value is represented by the TPUB frame.
+Gets the name of the label or publisher.
+This value is represented by the TPUB frame.
+
**Returns:**
java.lang.String - The name of the label or publisher.
+
### setPublisher(String value) {#setPublisher-java.lang.String-}
```
public final void setPublisher(String value)
```
-Sets the name of the label or publisher. This value is represented by the TPUB frame.
+Sets the name of the label or publisher.
+This value is represented by the TPUB frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the label or publisher. |
+| value | java.lang.String | The name of the label or publisher.
+ |
### getTime() {#getTime--}
```
@@ -390,22 +530,28 @@ public final String getTime()
```
-Gets a numeric string in the HHMM format containing the time for the recording. This field is always four characters long. This value is represented by the TIME frame.
+Gets a numeric string in the HHMM format containing the time for the recording. This field is always four characters long.
+This value is represented by the TIME frame.
+
**Returns:**
java.lang.String - A numeric string in the HHMM format containing the time for the recording.
+
### setTime(String value) {#setTime-java.lang.String-}
```
public final void setTime(String value)
```
-Sets a numeric string in the HHMM format containing the time for the recording. This field is always four characters long. This value is represented by the TIME frame.
+Sets a numeric string in the HHMM format containing the time for the recording. This field is always four characters long.
+This value is represented by the TIME frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A numeric string in the HHMM format containing the time for the recording. |
+| value | java.lang.String | A numeric string in the HHMM format containing the time for the recording.
+ |
### getTitle() {#getTitle--}
```
@@ -413,22 +559,28 @@ public final String getTitle()
```
-Gets the Title/Song name/Content description. This value is represented by the TIT2 frame.
+Gets the Title/Song name/Content description.
+This value is represented by the TIT2 frame.
+
**Returns:**
java.lang.String - The Title/Song name/Content description.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
```
-Sets the Title/Song name/Content description. This value is represented by the TIT2 frame.
+Sets the Title/Song name/Content description.
+This value is represented by the TIT2 frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Title/Song name/Content description. |
+| value | java.lang.String | The Title/Song name/Content description.
+ |
### getSubtitle() {#getSubtitle--}
```
@@ -436,22 +588,28 @@ public final String getSubtitle()
```
-Gets the Subtitle/Description refinement. This value is represented by the TIT3 frame.
+Gets the Subtitle/Description refinement.
+This value is represented by the TIT3 frame.
+
**Returns:**
java.lang.String - The Subtitle/Description refinement.
+
### setSubtitle(String value) {#setSubtitle-java.lang.String-}
```
public final void setSubtitle(String value)
```
-Sets the Subtitle/Description refinement. This value is represented by the TIT3 frame.
+Sets the Subtitle/Description refinement.
+This value is represented by the TIT3 frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Subtitle/Description refinement. |
+| value | java.lang.String | The Subtitle/Description refinement.
+ |
### getMusicalKey() {#getMusicalKey--}
```
@@ -459,22 +617,28 @@ public final String getMusicalKey()
```
-Gets the musical key in which the sound starts. This value is represented by the TKEY frame.
+Gets the musical key in which the sound starts.
+This value is represented by the TKEY frame.
+
**Returns:**
java.lang.String - The musical key in which the sound starts.
+
### setMusicalKey(String value) {#setMusicalKey-java.lang.String-}
```
public final void setMusicalKey(String value)
```
-Sets the musical key in which the sound starts. This value is represented by the TKEY frame.
+Sets the musical key in which the sound starts.
+This value is represented by the TKEY frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The musical key in which the sound starts. |
+| value | java.lang.String | The musical key in which the sound starts.
+ |
### getLengthInMilliseconds() {#getLengthInMilliseconds--}
```
@@ -482,22 +646,28 @@ public final String getLengthInMilliseconds()
```
-Gets the length of the audio file in milliseconds, represented as a numeric string. This value is represented by the TLEN frame.
+Gets the length of the audio file in milliseconds, represented as a numeric string.
+This value is represented by the TLEN frame.
+
**Returns:**
java.lang.String - The length of the audio file in milliseconds, represented as a numeric string.
+
### setLengthInMilliseconds(String value) {#setLengthInMilliseconds-java.lang.String-}
```
public final void setLengthInMilliseconds(String value)
```
-Sets the length of the audio file in milliseconds, represented as a numeric string. This value is represented by the TLEN frame.
+Sets the length of the audio file in milliseconds, represented as a numeric string.
+This value is represented by the TLEN frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The length of the audio file in milliseconds, represented as a numeric string. |
+| value | java.lang.String | The length of the audio file in milliseconds, represented as a numeric string.
+ |
### getOriginalAlbum() {#getOriginalAlbum--}
```
@@ -505,22 +675,28 @@ public final String getOriginalAlbum()
```
-Gets the original album/movie/show title. This value is represented by the TOAL frame.
+Gets the original album/movie/show title.
+This value is represented by the TOAL frame.
+
**Returns:**
java.lang.String - The original album/movie/show title.
+
### setOriginalAlbum(String value) {#setOriginalAlbum-java.lang.String-}
```
public final void setOriginalAlbum(String value)
```
-Sets the original album/movie/show title. This value is represented by the TOAL frame.
+Sets the original album/movie/show title.
+This value is represented by the TOAL frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The original album/movie/show title. |
+| value | java.lang.String | The original album/movie/show title.
+ |
### getTrackNumber() {#getTrackNumber--}
```
@@ -528,22 +704,28 @@ public final String getTrackNumber()
```
-Gets a numeric string containing the order number of the audio-file on its original recording. This value is represented by the TRCK frame.
+Gets a numeric string containing the order number of the audio-file on its original recording.
+This value is represented by the TRCK frame.
+
**Returns:**
java.lang.String - A numeric string containing the order number of the audio-file on its original recording
+
### setTrackNumber(String value) {#setTrackNumber-java.lang.String-}
```
public final void setTrackNumber(String value)
```
-Sets a numeric string containing the order number of the audio-file on its original recording. This value is represented by the TRCK frame.
+Sets a numeric string containing the order number of the audio-file on its original recording.
+This value is represented by the TRCK frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A numeric string containing the order number of the audio-file on its original recording |
+| value | java.lang.String | A numeric string containing the order number of the audio-file on its original recording
+ |
### getSizeInBytes() {#getSizeInBytes--}
```
@@ -551,22 +733,28 @@ public final String getSizeInBytes()
```
-Gets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string. This value is represented by the TSIZ frame.
+Gets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string.
+This value is represented by the TSIZ frame.
+
**Returns:**
java.lang.String - The size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string.
+
### setSizeInBytes(String value) {#setSizeInBytes-java.lang.String-}
```
public final void setSizeInBytes(String value)
```
-Sets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string. This value is represented by the TSIZ frame.
+Sets the size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string.
+This value is represented by the TSIZ frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string. |
+| value | java.lang.String | The size of the audio file in bytes, excluding the ID3v2 tag, represented as a numeric string.
+ |
### getIsrc() {#getIsrc--}
```
@@ -574,22 +762,28 @@ public final String getIsrc()
```
-Gets the International Standard Recording Code (ISRC) (12 characters). This value is represented by the TSRC frame.
+Gets the International Standard Recording Code (ISRC) (12 characters).
+This value is represented by the TSRC frame.
+
**Returns:**
java.lang.String - The International Standard Recording Code (ISRC) (12 characters).
+
### setIsrc(String value) {#setIsrc-java.lang.String-}
```
public final void setIsrc(String value)
```
-Sets the International Standard Recording Code (ISRC) (12 characters). This value is represented by the TSRC frame.
+Sets the International Standard Recording Code (ISRC) (12 characters).
+This value is represented by the TSRC frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The International Standard Recording Code (ISRC) (12 characters). |
+| value | java.lang.String | The International Standard Recording Code (ISRC) (12 characters).
+ |
### getSoftwareHardware() {#getSoftwareHardware--}
```
@@ -597,22 +791,28 @@ public final String getSoftwareHardware()
```
-Gets the used audio encoder and its settings when the file was encoded. This value is represented by the TSSE frame.
+Gets the used audio encoder and its settings when the file was encoded.
+This value is represented by the TSSE frame.
+
**Returns:**
java.lang.String - The used audio encoder and its settings when the file was encoded.
+
### setSoftwareHardware(String value) {#setSoftwareHardware-java.lang.String-}
```
public final void setSoftwareHardware(String value)
```
-Sets the used audio encoder and its settings when the file was encoded. This value is represented by the TSSE frame.
+Sets the used audio encoder and its settings when the file was encoded.
+This value is represented by the TSSE frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The used audio encoder and its settings when the file was encoded. |
+| value | java.lang.String | The used audio encoder and its settings when the file was encoded.
+ |
### getYear() {#getYear--}
```
@@ -620,22 +820,28 @@ public final String getYear()
```
-Gets a numeric string with a year of the recording. This frames is always four characters long (until the year 10000). This value is represented by the TYER frame.
+Gets a numeric string with a year of the recording. This frames is always four characters long (until the year 10000).
+This value is represented by the TYER frame.
+
**Returns:**
java.lang.String - A numeric string with a year of the recording. This frames is always four characters long (until the year 10000).
+
### setYear(String value) {#setYear-java.lang.String-}
```
public final void setYear(String value)
```
-Sets a numeric string with a year of the recording. This frames is always four characters long (until the year 10000). This value is represented by the TYER frame.
+Sets a numeric string with a year of the recording. This frames is always four characters long (until the year 10000).
+This value is represented by the TYER frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A numeric string with a year of the recording. This frames is always four characters long (until the year 10000). |
+| value | java.lang.String | A numeric string with a year of the recording. This frames is always four characters long (until the year 10000).
+ |
### getComments() {#getComments--}
```
@@ -643,22 +849,30 @@ public final ID3V2CommentFrame[] getComments()
```
-Gets the user comments. This value is represented by the COMM frame. The frame is intended for any kind of full text information that does not fit in any other frame.
+Gets the user comments.
+This value is represented by the COMM frame.
+The frame is intended for any kind of full text information that does not fit in any other frame.
+
**Returns:**
com.groupdocs.metadata.core.ID3V2CommentFrame[] - The user comments.
+
### setComments(ID3V2CommentFrame[] value) {#setComments-com.groupdocs.metadata.core.ID3V2CommentFrame---}
```
public final void setComments(ID3V2CommentFrame[] value)
```
-Sets the user comments. This value is represented by the COMM frame. The frame is intended for any kind of full text information that does not fit in any other frame.
+Sets the user comments.
+This value is represented by the COMM frame.
+The frame is intended for any kind of full text information that does not fit in any other frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [ID3V2CommentFrame\[\]](../../com.groupdocs.metadata.core/id3v2commentframe) | The user comments. |
+| value | [ID3V2CommentFrame\[\]](../../com.groupdocs.metadata.core/id3v2commentframe) | The user comments.
+ |
### getAttachedPictures() {#getAttachedPictures--}
```
@@ -666,22 +880,28 @@ public final ID3V2AttachedPictureFrame[] getAttachedPictures()
```
-Gets the attached pictures directly related to the audio file. This value is represented by the APIC frame.
+Gets the attached pictures directly related to the audio file.
+This value is represented by the APIC frame.
+
**Returns:**
com.groupdocs.metadata.core.ID3V2AttachedPictureFrame[] - The attached pictures directly related to the audio file.
+
### setAttachedPictures(ID3V2AttachedPictureFrame[] value) {#setAttachedPictures-com.groupdocs.metadata.core.ID3V2AttachedPictureFrame---}
```
public final void setAttachedPictures(ID3V2AttachedPictureFrame[] value)
```
-Sets the attached pictures directly related to the audio file. This value is represented by the APIC frame.
+Sets the attached pictures directly related to the audio file.
+This value is represented by the APIC frame.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [ID3V2AttachedPictureFrame\[\]](../../com.groupdocs.metadata.core/id3v2attachedpictureframe) | The attached pictures directly related to the audio file. |
+| value | [ID3V2AttachedPictureFrame\[\]](../../com.groupdocs.metadata.core/id3v2attachedpictureframe) | The attached pictures directly related to the audio file.
+ |
### getTrackPlayCounter() {#getTrackPlayCounter--}
```
@@ -689,10 +909,13 @@ public final Long getTrackPlayCounter()
```
-Gets the number of times the file has been played. This value is represented by the PCNT frame.
+Gets the number of times the file has been played.
+This value is represented by the PCNT frame.
+
**Returns:**
java.lang.Long - The number of times a file has been played.
+
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -701,8 +924,10 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list of all frames contained in the ID3v2 tag.
+
### removeAttachedPictures() {#removeAttachedPictures--}
```
public final void removeAttachedPictures()
@@ -711,6 +936,7 @@ public final void removeAttachedPictures()
Removes all attached pictures stored in APIC frames.
+
### get(String frameId) {#get-java.lang.String-}
```
public final ID3V2TagFrame[] get(String frameId)
@@ -719,13 +945,16 @@ public final ID3V2TagFrame[] get(String frameId)
Gets an array of frames with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| frameId | java.lang.String | The id of the frames to get. |
+| frameId | java.lang.String | The id of the frames to get.
+ |
**Returns:**
com.groupdocs.metadata.core.ID3V2TagFrame[] - An array of frames with the specified id.
+
### set(ID3V2TagFrame frame) {#set-com.groupdocs.metadata.core.ID3V2TagFrame-}
```
public final void set(ID3V2TagFrame frame)
@@ -734,10 +963,12 @@ public final void set(ID3V2TagFrame frame)
Removes all frames having the same id as the specified one and adds the new frame to the tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| frame | [ID3V2TagFrame](../../com.groupdocs.metadata.core/id3v2tagframe) | The frame to replace all frames of its kind with. |
+| frame | [ID3V2TagFrame](../../com.groupdocs.metadata.core/id3v2tagframe) | The frame to replace all frames of its kind with.
+ |
### clear(String frameId) {#clear-java.lang.String-}
```
@@ -747,10 +978,12 @@ public final void clear(String frameId)
Removes all frames with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| frameId | java.lang.String | The id of the frames to remove. |
+| frameId | java.lang.String | The id of the frames to remove.
+ |
### add(ID3V2TagFrame frame) {#add-com.groupdocs.metadata.core.ID3V2TagFrame-}
```
@@ -760,10 +993,12 @@ public final void add(ID3V2TagFrame frame)
Adds a frame to the tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| frame | [ID3V2TagFrame](../../com.groupdocs.metadata.core/id3v2tagframe) | The frame to be added to the tag. |
+| frame | [ID3V2TagFrame](../../com.groupdocs.metadata.core/id3v2tagframe) | The frame to be added to the tag.
+ |
### remove(ID3V2TagFrame frame) {#remove-com.groupdocs.metadata.core.ID3V2TagFrame-}
```
@@ -773,8 +1008,10 @@ public final void remove(ID3V2TagFrame frame)
Removes the specified frame from the tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| frame | [ID3V2TagFrame](../../com.groupdocs.metadata.core/id3v2tagframe) | The frame to be removed from the tag. |
+| frame | [ID3V2TagFrame](../../com.groupdocs.metadata.core/id3v2tagframe) | The frame to be removed from the tag.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/id3v2tagframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2tagframe/_index.md
index d20d6d050e..e5e7452d6d 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2tagframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2tagframe/_index.md
@@ -12,39 +12,54 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class ID3V2TagFrame extends CustomPackage
```
-Represents a generic frame in an ID3V2Tag .
+Represents a generic frame in an
+ID3V2Tag
+.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2TagFrame(String frameId, byte[] data)](#ID3V2TagFrame-java.lang.String-byte---) | Initializes a new instance of the ID3V2TagFrame class. |
+| [ID3V2TagFrame(String frameId, byte[] data)](#ID3V2TagFrame-java.lang.String-byte---) | Initializes a new instance of the
+ID3V2TagFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getId()](#getId--) | Gets the id of the frame (four characters matching the pattern [A-Z0-9]). |
-| [getFlags()](#getFlags--) | Gets the frame flags. |
-| [getData()](#getData--) | Gets the frame data. |
+| [getId()](#getId--) | Gets the id of the frame (four characters matching the pattern [A-Z0-9]).
+ |
+| [getFlags()](#getFlags--) | Gets the frame flags.
+ |
+| [getData()](#getData--) | Gets the frame data.
+ |
### ID3V2TagFrame(String frameId, byte[] data) {#ID3V2TagFrame-java.lang.String-byte---}
```
public ID3V2TagFrame(String frameId, byte[] data)
```
-Initializes a new instance of the ID3V2TagFrame class.
+Initializes a new instance of the
+ID3V2TagFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| frameId | java.lang.String | The id of the frame (four characters matching the pattern [A-Z0-9]). |
-| data | byte[] | The content of the frame. |
+| frameId | java.lang.String | The id of the frame (four characters matching the pattern [A-Z0-9]).
+ |
+| data | byte[] | The content of the frame.
+ |
### getId() {#getId--}
```
@@ -54,8 +69,10 @@ public final String getId()
Gets the id of the frame (four characters matching the pattern [A-Z0-9]).
+
**Returns:**
java.lang.String - The id of the frame (four characters matching the pattern [A-Z0-9]).
+
### getFlags() {#getFlags--}
```
public final ID3V2TagFrameFlags getFlags()
@@ -64,8 +81,10 @@ public final ID3V2TagFrameFlags getFlags()
Gets the frame flags.
+
**Returns:**
[ID3V2TagFrameFlags](../../com.groupdocs.metadata.core/id3v2tagframeflags) - The frame flags.
+
### getData() {#getData--}
```
public final byte[] getData()
@@ -74,5 +93,7 @@ public final byte[] getData()
Gets the frame data.
+
**Returns:**
byte[] - The frame data.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2tagframeflags/_index.md b/english/java/com.groupdocs.metadata.core/id3v2tagframeflags/_index.md
index 2e643863df..de9165bb97 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2tagframeflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2tagframeflags/_index.md
@@ -16,41 +16,61 @@ public final class ID3V2TagFrameFlags implements System.IEquatable
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2TextFrame(String id, ID3V2EncodingType encoding, String value)](#ID3V2TextFrame-java.lang.String-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-) | Initializes a new instance of the ID3V2TextFrame class. |
+| [ID3V2TextFrame(String id, ID3V2EncodingType encoding, String value)](#ID3V2TextFrame-java.lang.String-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-) | Initializes a new instance of the
+ID3V2TextFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getTextEncoding()](#getTextEncoding--) | Gets the text encoding. |
-| [getText()](#getText--) | Gets the text value. |
+| [getTextEncoding()](#getTextEncoding--) | Gets the text encoding.
+ |
+| [getText()](#getText--) | Gets the text value.
+ |
### ID3V2TextFrame(String id, ID3V2EncodingType encoding, String value) {#ID3V2TextFrame-java.lang.String-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-}
```
public ID3V2TextFrame(String id, ID3V2EncodingType encoding, String value)
```
-Initializes a new instance of the ID3V2TextFrame class.
+Initializes a new instance of the
+ID3V2TextFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| id | java.lang.String | The frame id. |
-| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the frame. |
-| value | java.lang.String | The frame value. |
+| id | java.lang.String | The frame id.
+ |
+| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the frame.
+ |
+| value | java.lang.String | The frame value.
+ |
### getTextEncoding() {#getTextEncoding--}
```
@@ -54,8 +72,10 @@ public final ID3V2EncodingType getTextEncoding()
Gets the text encoding.
+
**Returns:**
[ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) - The text encoding.
+
### getText() {#getText--}
```
public final String getText()
@@ -64,5 +84,7 @@ public final String getText()
Gets the text value.
+
**Returns:**
java.lang.String - The text value.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2urllinkframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2urllinkframe/_index.md
index af1e47cda7..d25855abc8 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2urllinkframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2urllinkframe/_index.md
@@ -12,37 +12,50 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2UrlLinkFrame extends ID3V2TagFrame
```
-Represents a URL link frame in an ID3V2Tag . Name of the frame always starts with the W character.
+Represents a URL link frame in an
+ID3V2Tag
+. Name of the frame always starts with the W character.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2UrlLinkFrame(String id, String url)](#ID3V2UrlLinkFrame-java.lang.String-java.lang.String-) | Initializes a new instance of the ID3V2UrlLinkFrame class. |
+| [ID3V2UrlLinkFrame(String id, String url)](#ID3V2UrlLinkFrame-java.lang.String-java.lang.String-) | Initializes a new instance of the
+ID3V2UrlLinkFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getUrl()](#getUrl--) | Gets the URL value. |
+| [getUrl()](#getUrl--) | Gets the URL value.
+ |
### ID3V2UrlLinkFrame(String id, String url) {#ID3V2UrlLinkFrame-java.lang.String-java.lang.String-}
```
public ID3V2UrlLinkFrame(String id, String url)
```
-Initializes a new instance of the ID3V2UrlLinkFrame class.
+Initializes a new instance of the
+ID3V2UrlLinkFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| id | java.lang.String | The frame id. |
-| url | java.lang.String | The URL which is the value of the frame. |
+| id | java.lang.String | The frame id.
+ |
+| url | java.lang.String | The URL which is the value of the frame.
+ |
### getUrl() {#getUrl--}
```
@@ -52,5 +65,7 @@ public final String getUrl()
Gets the URL value.
+
**Returns:**
java.lang.String - The URL value.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2userdefinedframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2userdefinedframe/_index.md
index d6eebc4cfd..abce219744 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2userdefinedframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2userdefinedframe/_index.md
@@ -12,40 +12,58 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2UserDefinedFrame extends ID3V2TagFrame
```
-Represents a TXXX frame in an ID3V2Tag .
+Represents a TXXX frame in an
+ID3V2Tag
+.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2UserDefinedFrame(String description, String value)](#ID3V2UserDefinedFrame-java.lang.String-java.lang.String-) | Initializes a new instance of the ID3V2UserDefinedFrame class. |
-| [ID3V2UserDefinedFrame(ID3V2EncodingType encoding, String description, String value)](#ID3V2UserDefinedFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-) | Initializes a new instance of the ID3V2UserDefinedFrame class. |
+| [ID3V2UserDefinedFrame(String description, String value)](#ID3V2UserDefinedFrame-java.lang.String-java.lang.String-) | Initializes a new instance of the
+ID3V2UserDefinedFrame
+ class.
+ |
+| [ID3V2UserDefinedFrame(ID3V2EncodingType encoding, String description, String value)](#ID3V2UserDefinedFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-) | Initializes a new instance of the
+ID3V2UserDefinedFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getEncoding()](#getEncoding--) | Gets the encoding of the frame. |
-| [getDescription()](#getDescription--) | Gets the description. |
-| [getValue()](#getValue--) | Gets the value. |
+| [getEncoding()](#getEncoding--) | Gets the encoding of the frame.
+ |
+| [getDescription()](#getDescription--) | Gets the description.
+ |
+| [getValue()](#getValue--) | Gets the value.
+ |
### ID3V2UserDefinedFrame(String description, String value) {#ID3V2UserDefinedFrame-java.lang.String-java.lang.String-}
```
public ID3V2UserDefinedFrame(String description, String value)
```
-Initializes a new instance of the ID3V2UserDefinedFrame class.
+Initializes a new instance of the
+ID3V2UserDefinedFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| description | java.lang.String | The description. |
-| value | java.lang.String | The value. |
+| description | java.lang.String | The description.
+ |
+| value | java.lang.String | The value.
+ |
### ID3V2UserDefinedFrame(ID3V2EncodingType encoding, String description, String value) {#ID3V2UserDefinedFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-}
```
@@ -53,14 +71,20 @@ public ID3V2UserDefinedFrame(ID3V2EncodingType encoding, String description, Str
```
-Initializes a new instance of the ID3V2UserDefinedFrame class.
+Initializes a new instance of the
+ID3V2UserDefinedFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the frame. |
-| description | java.lang.String | The description. |
-| value | java.lang.String | The text value. |
+| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the frame.
+ |
+| description | java.lang.String | The description.
+ |
+| value | java.lang.String | The text value.
+ |
### getEncoding() {#getEncoding--}
```
@@ -70,8 +94,10 @@ public final ID3V2EncodingType getEncoding()
Gets the encoding of the frame.
+
**Returns:**
[ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) - The encoding of the frame.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -80,8 +106,10 @@ public final String getDescription()
Gets the description.
+
**Returns:**
java.lang.String - The description.
+
### getValue() {#getValue--}
```
public final String getValue()
@@ -90,5 +118,7 @@ public final String getValue()
Gets the value.
+
**Returns:**
java.lang.String - The value.
+
diff --git a/english/java/com.groupdocs.metadata.core/id3v2userdefinedurllinkframe/_index.md b/english/java/com.groupdocs.metadata.core/id3v2userdefinedurllinkframe/_index.md
index 5c8d9e7ac6..fa43afcc7b 100644
--- a/english/java/com.groupdocs.metadata.core/id3v2userdefinedurllinkframe/_index.md
+++ b/english/java/com.groupdocs.metadata.core/id3v2userdefinedurllinkframe/_index.md
@@ -12,40 +12,58 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ID3V2UserDefinedUrlLinkFrame extends ID3V2TagFrame
```
-Represents a WXXX frame in an ID3V2Tag .
+Represents a WXXX frame in an
+ID3V2Tag
+.
+
**Learn more**
- * [Handling the ID3v2 tag][]
+* [Handling the ID3v2 tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag)
+
+
-[Handling the ID3v2 tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+ID3v2+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [ID3V2UserDefinedUrlLinkFrame(String description, String url)](#ID3V2UserDefinedUrlLinkFrame-java.lang.String-java.lang.String-) | Initializes a new instance of the ID3V2UserDefinedUrlLinkFrame class. |
-| [ID3V2UserDefinedUrlLinkFrame(ID3V2EncodingType encoding, String description, String url)](#ID3V2UserDefinedUrlLinkFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-) | Initializes a new instance of the ID3V2UserDefinedUrlLinkFrame class. |
+| [ID3V2UserDefinedUrlLinkFrame(String description, String url)](#ID3V2UserDefinedUrlLinkFrame-java.lang.String-java.lang.String-) | Initializes a new instance of the
+ID3V2UserDefinedUrlLinkFrame
+ class.
+ |
+| [ID3V2UserDefinedUrlLinkFrame(ID3V2EncodingType encoding, String description, String url)](#ID3V2UserDefinedUrlLinkFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-) | Initializes a new instance of the
+ID3V2UserDefinedUrlLinkFrame
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getEncoding()](#getEncoding--) | Gets the encoding of the frame. |
-| [getDescription()](#getDescription--) | Gets the description. |
-| [getUrl()](#getUrl--) | Gets the URL. |
+| [getEncoding()](#getEncoding--) | Gets the encoding of the frame.
+ |
+| [getDescription()](#getDescription--) | Gets the description.
+ |
+| [getUrl()](#getUrl--) | Gets the URL.
+ |
### ID3V2UserDefinedUrlLinkFrame(String description, String url) {#ID3V2UserDefinedUrlLinkFrame-java.lang.String-java.lang.String-}
```
public ID3V2UserDefinedUrlLinkFrame(String description, String url)
```
-Initializes a new instance of the ID3V2UserDefinedUrlLinkFrame class.
+Initializes a new instance of the
+ID3V2UserDefinedUrlLinkFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| description | java.lang.String | The description. |
-| url | java.lang.String | The actual value of the frame. |
+| description | java.lang.String | The description.
+ |
+| url | java.lang.String | The actual value of the frame.
+ |
### ID3V2UserDefinedUrlLinkFrame(ID3V2EncodingType encoding, String description, String url) {#ID3V2UserDefinedUrlLinkFrame-com.groupdocs.metadata.core.ID3V2EncodingType-java.lang.String-java.lang.String-}
```
@@ -53,14 +71,20 @@ public ID3V2UserDefinedUrlLinkFrame(ID3V2EncodingType encoding, String descripti
```
-Initializes a new instance of the ID3V2UserDefinedUrlLinkFrame class.
+Initializes a new instance of the
+ID3V2UserDefinedUrlLinkFrame
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the frame. |
-| description | java.lang.String | The description. |
-| url | java.lang.String | The actual value of the frame. |
+| encoding | [ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) | The encoding of the frame.
+ |
+| description | java.lang.String | The description.
+ |
+| url | java.lang.String | The actual value of the frame.
+ |
### getEncoding() {#getEncoding--}
```
@@ -70,8 +94,10 @@ public final ID3V2EncodingType getEncoding()
Gets the encoding of the frame.
+
**Returns:**
[ID3V2EncodingType](../../com.groupdocs.metadata.core/id3v2encodingtype) - The encoding of the frame.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -80,8 +106,10 @@ public final String getDescription()
Gets the description.
+
**Returns:**
java.lang.String - The description.
+
### getUrl() {#getUrl--}
```
public final String getUrl()
@@ -90,5 +118,7 @@ public final String getUrl()
Gets the URL.
+
**Returns:**
java.lang.String - The URL.
+
diff --git a/english/java/com.groupdocs.metadata.core/idocumentinfo/_index.md b/english/java/com.groupdocs.metadata.core/idocumentinfo/_index.md
index a266398eb3..9657775e9a 100644
--- a/english/java/com.groupdocs.metadata.core/idocumentinfo/_index.md
+++ b/english/java/com.groupdocs.metadata.core/idocumentinfo/_index.md
@@ -11,21 +11,28 @@ public interface IDocumentInfo
Provides common information about a loaded document.
+
**Learn more**
- * [Get document info][]
+* [Get document info](../https://docs.groupdocs.com/display/metadatajava/Get+document+info)
+
+
-[Get document info]: https://docs.groupdocs.com/display/metadatajava/Get+document+info
## Methods
| Method | Description |
| --- | --- |
-| [getFileType()](#getFileType--) | Gets the file type of the loaded document. |
-| [getSize()](#getSize--) | Gets the size of the loaded document in bytes. |
-| [getPageCount()](#getPageCount--) | Gets the number of pages (slides, worksheets, etc) in the loaded document. |
-| [getPages()](#getPages--) | Gets a collection of objects representing common information about the document pages (slides, worksheets, etc). |
-| [isEncrypted()](#isEncrypted--) | Gets a value indicating whether the document is encrypted and requires a password to open. |
+| [getFileType()](#getFileType--) | Gets the file type of the loaded document.
+ |
+| [getSize()](#getSize--) | Gets the size of the loaded document in bytes.
+ |
+| [getPageCount()](#getPageCount--) | Gets the number of pages (slides, worksheets, etc) in the loaded document.
+ |
+| [getPages()](#getPages--) | Gets a collection of objects representing common information about the document pages (slides, worksheets, etc).
+ |
+| [isEncrypted()](#isEncrypted--) | Gets a value indicating whether the document is encrypted and requires a password to open.
+ |
### getFileType() {#getFileType--}
```
public abstract FileTypePackage getFileType()
@@ -34,8 +41,10 @@ public abstract FileTypePackage getFileType()
Gets the file type of the loaded document.
+
**Returns:**
[FileTypePackage](../../com.groupdocs.metadata.core/filetypepackage) - The file type of the loaded document.
+
### getSize() {#getSize--}
```
public abstract long getSize()
@@ -44,8 +53,10 @@ public abstract long getSize()
Gets the size of the loaded document in bytes.
+
**Returns:**
long - The size of the loaded document in bytes.
+
### getPageCount() {#getPageCount--}
```
public abstract int getPageCount()
@@ -54,8 +65,10 @@ public abstract int getPageCount()
Gets the number of pages (slides, worksheets, etc) in the loaded document.
+
**Returns:**
int - The number of pages (slides, worksheets, etc) in the loaded document.
+
### getPages() {#getPages--}
```
public abstract IReadOnlyList getPages()
@@ -64,8 +77,10 @@ public abstract IReadOnlyList getPages()
Gets a collection of objects representing common information about the document pages (slides, worksheets, etc).
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection of objects representing common information about the document pages (slides, worksheets, etc).
+
### isEncrypted() {#isEncrypted--}
```
public abstract boolean isEncrypted()
@@ -74,5 +89,7 @@ public abstract boolean isEncrypted()
Gets a value indicating whether the document is encrypted and requires a password to open.
+
**Returns:**
boolean - A value indicating whether the document is encrypted and requires a password to open.
+
diff --git a/english/java/com.groupdocs.metadata.core/idublincore/_index.md b/english/java/com.groupdocs.metadata.core/idublincore/_index.md
index 2b47ef5e20..9102668461 100644
--- a/english/java/com.groupdocs.metadata.core/idublincore/_index.md
+++ b/english/java/com.groupdocs.metadata.core/idublincore/_index.md
@@ -10,11 +10,13 @@ public interface IDublinCore
```
Defines base operations allowing working with Dublin Core metadata.
+
## Methods
| Method | Description |
| --- | --- |
-| [getDublinCorePackage()](#getDublinCorePackage--) | Gets the Dublin Core metadata package extracted from the document. |
+| [getDublinCorePackage()](#getDublinCorePackage--) | Gets the Dublin Core metadata package extracted from the document.
+ |
### getDublinCorePackage() {#getDublinCorePackage--}
```
public abstract DublinCorePackage getDublinCorePackage()
@@ -23,5 +25,7 @@ public abstract DublinCorePackage getDublinCorePackage()
Gets the Dublin Core metadata package extracted from the document.
+
**Returns:**
[DublinCorePackage](../../com.groupdocs.metadata.core/dublincorepackage) - The Dublin Core metadata package extracted from the document.
+
diff --git a/english/java/com.groupdocs.metadata.core/ienumvalue/_index.md b/english/java/com.groupdocs.metadata.core/ienumvalue/_index.md
index b79568eb0f..071e13c6e2 100644
--- a/english/java/com.groupdocs.metadata.core/ienumvalue/_index.md
+++ b/english/java/com.groupdocs.metadata.core/ienumvalue/_index.md
@@ -10,16 +10,23 @@ public interface IEnumValue
```
Defines a value of an enumeration.
+
## Methods
| Method | Description |
| --- | --- |
-| [getAllValues()](#getAllValues--) | Returns the array of all values defined in the class. |
-| [getEnumValueByRawValue(int rawValue)](#getEnumValueByRawValue-int-) | Returns the enumeration value by the raw value associated with it. |
-| [getEnumValueByName(String name)](#getEnumValueByName-java.lang.String-) | Returns the enumeration value by its name. |
-| [getRawValueType()](#getRawValueType--) | Returns the underlying type of the raw value of this enumeration value. |
-| [getRawValue()](#getRawValue--) | Returns the raw value of this enumeration value. |
-| [name()](#name--) | Returns the name of this enumeration value. |
+| [getAllValues()](#getAllValues--) | Returns the array of all values defined in the class.
+ |
+| [getEnumValueByRawValue(int rawValue)](#getEnumValueByRawValue-int-) | Returns the enumeration value by the raw value associated with it.
+ |
+| [getEnumValueByName(String name)](#getEnumValueByName-java.lang.String-) | Returns the enumeration value by its name.
+ |
+| [getRawValueType()](#getRawValueType--) | Returns the underlying type of the raw value of this enumeration value.
+ |
+| [getRawValue()](#getRawValue--) | Returns the raw value of this enumeration value.
+ |
+| [name()](#name--) | Returns the name of this enumeration value.
+ |
### getAllValues() {#getAllValues--}
```
public abstract Object[] getAllValues()
@@ -28,8 +35,10 @@ public abstract Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[] - The array of all values defined in the class.
+
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
```
public abstract IEnumValue getEnumValueByRawValue(int rawValue)
@@ -38,13 +47,16 @@ public abstract IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| rawValue | int | The raw value. |
+| rawValue | int | The raw value.
+ |
**Returns:**
[IEnumValue](../../com.groupdocs.metadata.core/ienumvalue) - The enumeration value.
+
### getEnumValueByName(String name) {#getEnumValueByName-java.lang.String-}
```
public abstract IEnumValue getEnumValueByName(String name)
@@ -53,13 +65,16 @@ public abstract IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | The name of the enumeration value. |
+| name | java.lang.String | The name of the enumeration value.
+ |
**Returns:**
[IEnumValue](../../com.groupdocs.metadata.core/ienumvalue) - The enumeration value.
+
### getRawValueType() {#getRawValueType--}
```
public abstract RawIntegerType getRawValueType()
@@ -68,8 +83,10 @@ public abstract RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype) - The underlying type of the raw value.
+
### getRawValue() {#getRawValue--}
```
public abstract int getRawValue()
@@ -78,8 +95,10 @@ public abstract int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int - The raw value.
+
### name() {#name--}
```
public abstract String name()
@@ -88,5 +107,7 @@ public abstract String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String - The name.
+
diff --git a/english/java/com.groupdocs.metadata.core/ienumvalueinterpreter/_index.md b/english/java/com.groupdocs.metadata.core/ienumvalueinterpreter/_index.md
index 920ee709af..0d1e4c9b0a 100644
--- a/english/java/com.groupdocs.metadata.core/ienumvalueinterpreter/_index.md
+++ b/english/java/com.groupdocs.metadata.core/ienumvalueinterpreter/_index.md
@@ -10,11 +10,13 @@ public interface IEnumValueInterpreter
```
Represents an interpreter intended to convert various numeric values to descriptive string values.
+
## Methods
| Method | Description |
| --- | --- |
-| [getOutputValueRange()](#getOutputValueRange--) | Gets the range of all possible output (interpreted) values. |
+| [getOutputValueRange()](#getOutputValueRange--) | Gets the range of all possible output (interpreted) values.
+ |
### getOutputValueRange() {#getOutputValueRange--}
```
public abstract IReadOnlyList getOutputValueRange()
@@ -23,5 +25,7 @@ public abstract IReadOnlyList getOutputValueRange()
Gets the range of all possible output (interpreted) values.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - The range of all possible output (interpreted) values.
+
diff --git a/english/java/com.groupdocs.metadata.core/iexif/_index.md b/english/java/com.groupdocs.metadata.core/iexif/_index.md
index 9091a34642..c4ac5b6e5e 100644
--- a/english/java/com.groupdocs.metadata.core/iexif/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iexif/_index.md
@@ -11,15 +11,18 @@ public interface IExif
Defines base operations intended to work with EXIF metadata.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
-This code sample demonstrates how to extract basic EXIF metadata properties.
+
+This code sample demonstrates how to extract basic EXIF metadata properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.TiffWithExif)) {
> IExif root = (IExif) metadata.getRootPackage();
> if (root.getExifPackage() != null) {
@@ -44,16 +47,17 @@ This code sample demonstrates how to extract basic EXIF metadata properties.
> }
>
> ```
-> ```
+> ````
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package associated with the file. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package associated with the file. |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package associated with the file.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package associated with the file.
+ |
### getExifPackage() {#getExifPackage--}
```
public abstract ExifPackage getExifPackage()
@@ -62,8 +66,10 @@ public abstract ExifPackage getExifPackage()
Gets the EXIF metadata package associated with the file.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package associated with the file.
+
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public abstract void setExifPackage(ExifPackage value)
@@ -72,8 +78,10 @@ public abstract void setExifPackage(ExifPackage value)
Sets the EXIF metadata package associated with the file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package associated with the file. |
+| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package associated with the file.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/iiptc/_index.md b/english/java/com.groupdocs.metadata.core/iiptc/_index.md
index ef23e1175c..6208bb2b6a 100644
--- a/english/java/com.groupdocs.metadata.core/iiptc/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iiptc/_index.md
@@ -9,17 +9,23 @@ url: /java/com.groupdocs.metadata.core/iiptc/
public interface IIptc
```
-Represents base operations intended to work with IPTC metadata. Please find more information at [http://en.wikipedia.org/wiki/International\_Press\_Telecommunications\_Council][http_en.wikipedia.org_wiki_International_Press_Telecommunications_Council] .
+Represents base operations intended to work with IPTC metadata.
+Please find more information at
+
+.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
-This example shows how to read basic IPTC metadata properties.
+
+This example shows how to read basic IPTC metadata properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.JpegWithIptc)) {
> IIptc root = (IIptc) metadata.getRootPackage();
> if (root.getIptcPackage() != null) {
@@ -44,17 +50,17 @@ This example shows how to read basic IPTC metadata properties.
> }
>
> ```
-> ```
+> ````
-[http_en.wikipedia.org_wiki_International_Press_Telecommunications_Council]: http://en.wikipedia.org/wiki/International_Press_Telecommunications_Council
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package associated with the file. |
-| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package associated with the file. |
+| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package associated with the file.
+ |
+| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package associated with the file.
+ |
### getIptcPackage() {#getIptcPackage--}
```
public abstract IptcRecordSet getIptcPackage()
@@ -63,8 +69,10 @@ public abstract IptcRecordSet getIptcPackage()
Gets the IPTC metadata package associated with the file.
+
**Returns:**
[IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) - The IPTC metadata package associated with the file.
+
### setIptcPackage(IptcRecordSet value) {#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-}
```
public abstract void setIptcPackage(IptcRecordSet value)
@@ -73,8 +81,10 @@ public abstract void setIptcPackage(IptcRecordSet value)
Sets the IPTC metadata package associated with the file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) | The IPTC metadata package associated with the file. |
+| value | [IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) | The IPTC metadata package associated with the file.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/imageresourceblock/_index.md b/english/java/com.groupdocs.metadata.core/imageresourceblock/_index.md
index ce328e3f70..851c1af28a 100644
--- a/english/java/com.groupdocs.metadata.core/imageresourceblock/_index.md
+++ b/english/java/com.groupdocs.metadata.core/imageresourceblock/_index.md
@@ -12,24 +12,38 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class ImageResourceBlock extends CustomPackage
```
-Represents a Photoshop Image Resource block.
+Represents a Photoshop Image Resource block.
+
+
+
+
+
+
+Image resource blocks are the basic building unit of several file formats, including Photoshop's native file format, JPEG, and TIFF.
+Image resources are used to store non-pixel data associated with images, such as pen tool paths.
+
+
- Image resource blocks are the basic building unit of several file formats, including Photoshop's native file format, JPEG, and TIFF. Image resources are used to store non-pixel data associated with images, such as pen tool paths.
**Learn more**
- * [Working with metadata in PSD images][]
+* [Working with metadata in PSD images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images)
+
+
-[Working with metadata in PSD images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images
## Methods
| Method | Description |
| --- | --- |
-| [getSignature()](#getSignature--) | Gets the image resource block signature. |
-| [getID()](#getID--) | Gets the unique identifier for the resource. |
-| [getName()](#getName--) | Gets the image resource block name. |
-| [getData()](#getData--) | Gets the resource data. |
+| [getSignature()](#getSignature--) | Gets the image resource block signature.
+ |
+| [getID()](#getID--) | Gets the unique identifier for the resource.
+ |
+| [getName()](#getName--) | Gets the image resource block name.
+ |
+| [getData()](#getData--) | Gets the resource data.
+ |
### getSignature() {#getSignature--}
```
public final String getSignature()
@@ -38,8 +52,10 @@ public final String getSignature()
Gets the image resource block signature.
+
**Returns:**
java.lang.String - The image resource block signature
+
### getID() {#getID--}
```
public final ImageResourceID getID()
@@ -48,8 +64,10 @@ public final ImageResourceID getID()
Gets the unique identifier for the resource.
+
**Returns:**
[ImageResourceID](../../com.groupdocs.metadata.core/imageresourceid) - The identifier.
+
### getName() {#getName--}
```
public final String getName()
@@ -58,8 +76,10 @@ public final String getName()
Gets the image resource block name.
+
**Returns:**
java.lang.String - The image resource block name.
+
### getData() {#getData--}
```
public final byte[] getData()
@@ -68,5 +88,7 @@ public final byte[] getData()
Gets the resource data.
+
**Returns:**
byte[] - The resource data.
+
diff --git a/english/java/com.groupdocs.metadata.core/imageresourceid/_index.md b/english/java/com.groupdocs.metadata.core/imageresourceid/_index.md
index 0a5d2fb869..232ffff08a 100644
--- a/english/java/com.groupdocs.metadata.core/imageresourceid/_index.md
+++ b/english/java/com.groupdocs.metadata.core/imageresourceid/_index.md
@@ -16,71 +16,137 @@ public final class ImageResourceID implements IEnumValue
```
Image resources standard ID numbers. Not all file formats use all ID's. Some information may be stored in other sections of the file.
+
## Fields
| Field | Description |
| --- | --- |
-| [ResolutionInfo](#ResolutionInfo) | ResolutionInfo structure. |
-| [NamesOfAlphaChannels](#NamesOfAlphaChannels) | Names of the alpha channels as a series of Pascal strings. |
-| [Caption](#Caption) | The caption as a Pascal string. |
-| [BorderInformation](#BorderInformation) | Border information. |
-| [BackgroundColor](#BackgroundColor) | Background color. |
-| [PrintFlags](#PrintFlags) | Print flags. |
-| [Grayscale](#Grayscale) | Grayscale and multichannel halftoning information. |
-| [ColorHalftoning](#ColorHalftoning) | Color halftoning information. |
-| [DuotoneHalftoning](#DuotoneHalftoning) | Duotone halftoning information. |
-| [GrayscaleFunction](#GrayscaleFunction) | Grayscale and multichannel transfer function. |
-| [ColorTransferFunctions](#ColorTransferFunctions) | Color transfer functions. |
-| [DuotoneTransferFunctions](#DuotoneTransferFunctions) | Duotone transfer functions. |
-| [DuotoneImageInformation](#DuotoneImageInformation) | Duotone image information. |
-| [EPSOptions](#EPSOptions) | EPS options. |
-| [QuickMaskInformation](#QuickMaskInformation) | Quick Mask information. |
-| [LayerStateInformation](#LayerStateInformation) | Layer state information. |
-| [WorkingPath](#WorkingPath) | Working path (not saved). |
-| [LayersGroupInformation](#LayersGroupInformation) | Layers group information. |
-| [Iptc](#Iptc) | IPTC-NAA record. |
-| [ImageModeForRawFormat](#ImageModeForRawFormat) | Image mode for raw format files. |
-| [JpegQuality](#JpegQuality) | JPEG quality. |
-| [GridAndGuidesInfoPhotoshop4](#GridAndGuidesInfoPhotoshop4) | Grid and guides information. |
-| [ThumbnailResourcePhotoshop4](#ThumbnailResourcePhotoshop4) | Thumbnail resource for Photoshop 4.0 only. |
-| [CopyrightFlagPhotoshop4](#CopyrightFlagPhotoshop4) | Copyright flag. |
-| [UrlPhotoshop4](#UrlPhotoshop4) | URL. |
-| [ThumbnailResourcePhotoshop5](#ThumbnailResourcePhotoshop5) | Thumbnail resource (supersedes resource 1033). |
-| [GlobalAnglePhotoshop5](#GlobalAnglePhotoshop5) | Global Angle. |
-| [IccProfilePhotoshop5](#IccProfilePhotoshop5) | (Photoshop 5.0) ICC Profile. |
-| [WatermarkPhotoshop5](#WatermarkPhotoshop5) | Watermark. |
-| [IccUntaggedProfilePhotoshop5](#IccUntaggedProfilePhotoshop5) | ICC Untagged Profile. |
-| [TransparencyIndexPhotoshop6](#TransparencyIndexPhotoshop6) | Transparency Index. |
-| [GlobalAltitudePhotoshop6](#GlobalAltitudePhotoshop6) | Global Altitude. |
-| [SlicesPhotoshop6](#SlicesPhotoshop6) | Slices (Photoshop 6). |
-| [WorkflowUrlPhotoshop6](#WorkflowUrlPhotoshop6) | Workflow URL. |
-| [AlphaIdentifiersPhotoshop6](#AlphaIdentifiersPhotoshop6) | Alpha Identifiers. |
-| [UrlListPhotoshop6](#UrlListPhotoshop6) | URL InternalList. |
-| [VersionInfoPhotoshop6](#VersionInfoPhotoshop6) | Version Info. |
-| [ExifData1Photoshop7](#ExifData1Photoshop7) | EXIF data 1, see more . |
-| [ExifData3Photoshop7](#ExifData3Photoshop7) | EXIF data 3. |
-| [XmpPhotoshop7](#XmpPhotoshop7) | XMP metadata. |
-| [CaptionDigestPhotoshop7](#CaptionDigestPhotoshop7) | Caption digest. |
-| [PrintScalePhotoshop7](#PrintScalePhotoshop7) | Print scale. |
-| [PixelAspectRatio](#PixelAspectRatio) | Pixel Aspect Ratio. |
-| [LayerComps](#LayerComps) | Layer Comps. |
-| [LayerSelectionIds](#LayerSelectionIds) | Layer Selection ID(s). |
-| [PrintInfoCS2](#PrintInfoCS2) | Print info (Photoshop CS2). |
-| [LayerGroupEnabledIdCS2](#LayerGroupEnabledIdCS2) | Layer Group(s) Enabled ID. |
-| [ColorSamplersResourceCS3](#ColorSamplersResourceCS3) | Color samplers resource. |
-| [MeasurementScaleCS3](#MeasurementScaleCS3) | Measurement Scale. |
-| [TimelineInformationCS3](#TimelineInformationCS3) | Timeline Information. |
-| [SheetDisclosureCS3](#SheetDisclosureCS3) | Sheet Disclosure. |
-| [PrintInformationCS5](#PrintInformationCS5) | Print Information (Photoshop CS5). |
-| [PrintStyleCS5](#PrintStyleCS5) | Print Style (Photoshop CS5). |
-| [MacintoshNSPrintInfoCS5](#MacintoshNSPrintInfoCS5) | Macintosh NSPrintInfo. |
-| [WindowsDevmodeCS5](#WindowsDevmodeCS5) | Windows DEVMODE. |
-| [AutoSaveFilePathCS6](#AutoSaveFilePathCS6) | Auto Save File Path. |
-| [AutoSaveFormatCS6](#AutoSaveFormatCS6) | Auto Save Format. |
-| [PathSelectionStateCC](#PathSelectionStateCC) | Path Selection State. |
-| [ImageReadyVariables](#ImageReadyVariables) | Image Ready variables. |
-| [ImageReadyDatasets](#ImageReadyDatasets) | Image Ready data sets. |
-| [PrintFlagsInformation](#PrintFlagsInformation) | Print flags information. |
+| [ResolutionInfo](#ResolutionInfo) | ResolutionInfo structure.
+ |
+| [NamesOfAlphaChannels](#NamesOfAlphaChannels) | Names of the alpha channels as a series of Pascal strings.
+ |
+| [Caption](#Caption) | The caption as a Pascal string.
+ |
+| [BorderInformation](#BorderInformation) | Border information.
+ |
+| [BackgroundColor](#BackgroundColor) | Background color.
+ |
+| [PrintFlags](#PrintFlags) | Print flags.
+ |
+| [Grayscale](#Grayscale) | Grayscale and multichannel halftoning information.
+ |
+| [ColorHalftoning](#ColorHalftoning) | Color halftoning information.
+ |
+| [DuotoneHalftoning](#DuotoneHalftoning) | Duotone halftoning information.
+ |
+| [GrayscaleFunction](#GrayscaleFunction) | Grayscale and multichannel transfer function.
+ |
+| [ColorTransferFunctions](#ColorTransferFunctions) | Color transfer functions.
+ |
+| [DuotoneTransferFunctions](#DuotoneTransferFunctions) | Duotone transfer functions.
+ |
+| [DuotoneImageInformation](#DuotoneImageInformation) | Duotone image information.
+ |
+| [EPSOptions](#EPSOptions) | EPS options.
+ |
+| [QuickMaskInformation](#QuickMaskInformation) | Quick Mask information.
+ |
+| [LayerStateInformation](#LayerStateInformation) | Layer state information.
+ |
+| [WorkingPath](#WorkingPath) | Working path (not saved).
+ |
+| [LayersGroupInformation](#LayersGroupInformation) | Layers group information.
+ |
+| [Iptc](#Iptc) | IPTC-NAA record.
+ |
+| [ImageModeForRawFormat](#ImageModeForRawFormat) | Image mode for raw format files.
+ |
+| [JpegQuality](#JpegQuality) | JPEG quality.
+ |
+| [GridAndGuidesInfoPhotoshop4](#GridAndGuidesInfoPhotoshop4) | Grid and guides information.
+ |
+| [ThumbnailResourcePhotoshop4](#ThumbnailResourcePhotoshop4) | Thumbnail resource for Photoshop 4.0 only.
+ |
+| [CopyrightFlagPhotoshop4](#CopyrightFlagPhotoshop4) | Copyright flag.
+ |
+| [UrlPhotoshop4](#UrlPhotoshop4) | URL.
+ |
+| [ThumbnailResourcePhotoshop5](#ThumbnailResourcePhotoshop5) | Thumbnail resource (supersedes resource 1033).
+ |
+| [GlobalAnglePhotoshop5](#GlobalAnglePhotoshop5) | Global Angle.
+ |
+| [IccProfilePhotoshop5](#IccProfilePhotoshop5) | (Photoshop 5.0) ICC Profile.
+ |
+| [WatermarkPhotoshop5](#WatermarkPhotoshop5) | Watermark.
+ |
+| [IccUntaggedProfilePhotoshop5](#IccUntaggedProfilePhotoshop5) | ICC Untagged Profile.
+ |
+| [TransparencyIndexPhotoshop6](#TransparencyIndexPhotoshop6) | Transparency Index.
+ |
+| [GlobalAltitudePhotoshop6](#GlobalAltitudePhotoshop6) | Global Altitude.
+ |
+| [SlicesPhotoshop6](#SlicesPhotoshop6) | Slices (Photoshop 6).
+ |
+| [WorkflowUrlPhotoshop6](#WorkflowUrlPhotoshop6) | Workflow URL.
+ |
+| [AlphaIdentifiersPhotoshop6](#AlphaIdentifiersPhotoshop6) | Alpha Identifiers.
+ |
+| [UrlListPhotoshop6](#UrlListPhotoshop6) | URL InternalList.
+ |
+| [VersionInfoPhotoshop6](#VersionInfoPhotoshop6) | Version Info.
+ |
+| [ExifData1Photoshop7](#ExifData1Photoshop7) | EXIF data 1,
+see more
+.
+ |
+| [ExifData3Photoshop7](#ExifData3Photoshop7) |
+EXIF data 3.
+
+ |
+| [XmpPhotoshop7](#XmpPhotoshop7) | XMP metadata.
+ |
+| [CaptionDigestPhotoshop7](#CaptionDigestPhotoshop7) | Caption digest.
+ |
+| [PrintScalePhotoshop7](#PrintScalePhotoshop7) | Print scale.
+ |
+| [PixelAspectRatio](#PixelAspectRatio) | Pixel Aspect Ratio.
+ |
+| [LayerComps](#LayerComps) | Layer Comps.
+ |
+| [LayerSelectionIds](#LayerSelectionIds) | Layer Selection ID(s).
+ |
+| [PrintInfoCS2](#PrintInfoCS2) | Print info (Photoshop CS2).
+ |
+| [LayerGroupEnabledIdCS2](#LayerGroupEnabledIdCS2) | Layer Group(s) Enabled ID.
+ |
+| [ColorSamplersResourceCS3](#ColorSamplersResourceCS3) | Color samplers resource.
+ |
+| [MeasurementScaleCS3](#MeasurementScaleCS3) | Measurement Scale.
+ |
+| [TimelineInformationCS3](#TimelineInformationCS3) | Timeline Information.
+ |
+| [SheetDisclosureCS3](#SheetDisclosureCS3) | Sheet Disclosure.
+ |
+| [PrintInformationCS5](#PrintInformationCS5) | Print Information (Photoshop CS5).
+ |
+| [PrintStyleCS5](#PrintStyleCS5) | Print Style (Photoshop CS5).
+ |
+| [MacintoshNSPrintInfoCS5](#MacintoshNSPrintInfoCS5) | Macintosh NSPrintInfo.
+ |
+| [WindowsDevmodeCS5](#WindowsDevmodeCS5) | Windows DEVMODE.
+ |
+| [AutoSaveFilePathCS6](#AutoSaveFilePathCS6) | Auto Save File Path.
+ |
+| [AutoSaveFormatCS6](#AutoSaveFormatCS6) | Auto Save Format.
+ |
+| [PathSelectionStateCC](#PathSelectionStateCC) | Path Selection State.
+ |
+| [ImageReadyVariables](#ImageReadyVariables) | Image Ready variables.
+ |
+| [ImageReadyDatasets](#ImageReadyDatasets) | Image Ready data sets.
+ |
+| [PrintFlagsInformation](#PrintFlagsInformation) | Print flags information.
+ |
## Methods
| Method | Description |
@@ -103,6 +169,7 @@ public static final ImageResourceID ResolutionInfo
ResolutionInfo structure. See Appendix A in Photoshop API Guide PDF document.
+
### NamesOfAlphaChannels {#NamesOfAlphaChannels}
```
public static final ImageResourceID NamesOfAlphaChannels
@@ -111,6 +178,7 @@ public static final ImageResourceID NamesOfAlphaChannels
Names of the alpha channels as a series of Pascal strings.
+
### Caption {#Caption}
```
public static final ImageResourceID Caption
@@ -119,13 +187,17 @@ public static final ImageResourceID Caption
The caption as a Pascal string.
+
### BorderInformation {#BorderInformation}
```
public static final ImageResourceID BorderInformation
```
-Border information. Contains a fixed number (2 bytes real, 2 bytes fraction) for the border width, and 2 bytes for border units (1 = inches, 2 = cm, 3 = points, 4 = picas, 5 = columns).
+Border information.
+Contains a fixed number (2 bytes real, 2 bytes fraction) for the border width,
+and 2 bytes for border units (1 = inches, 2 = cm, 3 = points, 4 = picas, 5 = columns).
+
### BackgroundColor {#BackgroundColor}
```
@@ -133,7 +205,11 @@ public static final ImageResourceID BackgroundColor
```
-Background color. See more.
+Background color.
+
+See more.
+
+
### PrintFlags {#PrintFlags}
```
@@ -141,7 +217,10 @@ public static final ImageResourceID PrintFlags
```
-Print flags. A series of one-byte boolean values (see Page Setup dialog): labels, crop marks, color bars, registration marks, negative, flip, interpolate, caption, print flags.
+Print flags.
+A series of one-byte boolean values (see Page Setup dialog):
+labels, crop marks, color bars, registration marks, negative, flip, interpolate, caption, print flags.
+
### Grayscale {#Grayscale}
```
@@ -151,6 +230,7 @@ public static final ImageResourceID Grayscale
Grayscale and multichannel halftoning information.
+
### ColorHalftoning {#ColorHalftoning}
```
public static final ImageResourceID ColorHalftoning
@@ -159,6 +239,7 @@ public static final ImageResourceID ColorHalftoning
Color halftoning information.
+
### DuotoneHalftoning {#DuotoneHalftoning}
```
public static final ImageResourceID DuotoneHalftoning
@@ -167,6 +248,7 @@ public static final ImageResourceID DuotoneHalftoning
Duotone halftoning information.
+
### GrayscaleFunction {#GrayscaleFunction}
```
public static final ImageResourceID GrayscaleFunction
@@ -175,6 +257,7 @@ public static final ImageResourceID GrayscaleFunction
Grayscale and multichannel transfer function.
+
### ColorTransferFunctions {#ColorTransferFunctions}
```
public static final ImageResourceID ColorTransferFunctions
@@ -183,6 +266,7 @@ public static final ImageResourceID ColorTransferFunctions
Color transfer functions.
+
### DuotoneTransferFunctions {#DuotoneTransferFunctions}
```
public static final ImageResourceID DuotoneTransferFunctions
@@ -191,6 +275,7 @@ public static final ImageResourceID DuotoneTransferFunctions
Duotone transfer functions.
+
### DuotoneImageInformation {#DuotoneImageInformation}
```
public static final ImageResourceID DuotoneImageInformation
@@ -199,6 +284,7 @@ public static final ImageResourceID DuotoneImageInformation
Duotone image information.
+
### EPSOptions {#EPSOptions}
```
public static final ImageResourceID EPSOptions
@@ -207,6 +293,7 @@ public static final ImageResourceID EPSOptions
EPS options.
+
### QuickMaskInformation {#QuickMaskInformation}
```
public static final ImageResourceID QuickMaskInformation
@@ -215,6 +302,7 @@ public static final ImageResourceID QuickMaskInformation
Quick Mask information. 2 bytes containing Quick Mask channel ID; 1- byte boolean indicating whether the mask was initially empty.
+
### LayerStateInformation {#LayerStateInformation}
```
public static final ImageResourceID LayerStateInformation
@@ -223,6 +311,7 @@ public static final ImageResourceID LayerStateInformation
Layer state information. 2 bytes containing the index of target layer (0 = bottom layer).
+
### WorkingPath {#WorkingPath}
```
public static final ImageResourceID WorkingPath
@@ -231,13 +320,16 @@ public static final ImageResourceID WorkingPath
Working path (not saved). See See Path resource format.
+
### LayersGroupInformation {#LayersGroupInformation}
```
public static final ImageResourceID LayersGroupInformation
```
-Layers group information. 2 bytes per layer containing a group ID for the dragging groups. Layers in a group have the same group ID.
+Layers group information.
+2 bytes per layer containing a group ID for the dragging groups. Layers in a group have the same group ID.
+
### Iptc {#Iptc}
```
@@ -247,6 +339,7 @@ public static final ImageResourceID Iptc
IPTC-NAA record. Contains the File Info... information. See the documentation in the IPTC folder of the Documentation folder.
+
### ImageModeForRawFormat {#ImageModeForRawFormat}
```
public static final ImageResourceID ImageModeForRawFormat
@@ -255,6 +348,7 @@ public static final ImageResourceID ImageModeForRawFormat
Image mode for raw format files.
+
### JpegQuality {#JpegQuality}
```
public static final ImageResourceID JpegQuality
@@ -263,6 +357,7 @@ public static final ImageResourceID JpegQuality
JPEG quality. Private.
+
### GridAndGuidesInfoPhotoshop4 {#GridAndGuidesInfoPhotoshop4}
```
public static final ImageResourceID GridAndGuidesInfoPhotoshop4
@@ -271,6 +366,7 @@ public static final ImageResourceID GridAndGuidesInfoPhotoshop4
Grid and guides information.
+
### ThumbnailResourcePhotoshop4 {#ThumbnailResourcePhotoshop4}
```
public static final ImageResourceID ThumbnailResourcePhotoshop4
@@ -279,6 +375,7 @@ public static final ImageResourceID ThumbnailResourcePhotoshop4
Thumbnail resource for Photoshop 4.0 only.
+
### CopyrightFlagPhotoshop4 {#CopyrightFlagPhotoshop4}
```
public static final ImageResourceID CopyrightFlagPhotoshop4
@@ -287,6 +384,7 @@ public static final ImageResourceID CopyrightFlagPhotoshop4
Copyright flag. Boolean indicating whether image is copyrighted. Can be set via Property suite or by user in File Info...
+
### UrlPhotoshop4 {#UrlPhotoshop4}
```
public static final ImageResourceID UrlPhotoshop4
@@ -295,6 +393,7 @@ public static final ImageResourceID UrlPhotoshop4
URL. Handle of a text string with uniform resource locator. Can be set via Property suite or by user in File Info...
+
### ThumbnailResourcePhotoshop5 {#ThumbnailResourcePhotoshop5}
```
public static final ImageResourceID ThumbnailResourcePhotoshop5
@@ -303,13 +402,16 @@ public static final ImageResourceID ThumbnailResourcePhotoshop5
Thumbnail resource (supersedes resource 1033). See See Thumbnail resource format.
+
### GlobalAnglePhotoshop5 {#GlobalAnglePhotoshop5}
```
public static final ImageResourceID GlobalAnglePhotoshop5
```
-Global Angle. 4 bytes that contain an integer between 0 and 359, which is the global lighting angle for effects layer. If not present, assumed to be 30.
+Global Angle.
+4 bytes that contain an integer between 0 and 359, which is the global lighting angle for effects layer. If not present, assumed to be 30.
+
### IccProfilePhotoshop5 {#IccProfilePhotoshop5}
```
@@ -317,7 +419,9 @@ public static final ImageResourceID IccProfilePhotoshop5
```
-(Photoshop 5.0) ICC Profile. The raw bytes of an ICC (International Color Consortium) format profile. See ICC1v42\_2006-05.pdf in the Documentation folder and icProfileHeader.h in Sample Code\\Common\\Includes.
+(Photoshop 5.0) ICC Profile.
+The raw bytes of an ICC (International Color Consortium) format profile. See ICC1v42_2006-05.pdf in the Documentation folder and icProfileHeader.h in Sample Code\\Common\\Includes.
+
### WatermarkPhotoshop5 {#WatermarkPhotoshop5}
```
@@ -327,6 +431,7 @@ public static final ImageResourceID WatermarkPhotoshop5
Watermark. One byte.
+
### IccUntaggedProfilePhotoshop5 {#IccUntaggedProfilePhotoshop5}
```
public static final ImageResourceID IccUntaggedProfilePhotoshop5
@@ -335,6 +440,7 @@ public static final ImageResourceID IccUntaggedProfilePhotoshop5
ICC Untagged Profile. 1 byte that disables any assumed profile handling when opening the file. 1 = intentionally untagged.
+
### TransparencyIndexPhotoshop6 {#TransparencyIndexPhotoshop6}
```
public static final ImageResourceID TransparencyIndexPhotoshop6
@@ -343,6 +449,7 @@ public static final ImageResourceID TransparencyIndexPhotoshop6
Transparency Index. 2 bytes for the index of transparent color, if any.
+
### GlobalAltitudePhotoshop6 {#GlobalAltitudePhotoshop6}
```
public static final ImageResourceID GlobalAltitudePhotoshop6
@@ -351,6 +458,7 @@ public static final ImageResourceID GlobalAltitudePhotoshop6
Global Altitude. 4 byte entry for altitude.
+
### SlicesPhotoshop6 {#SlicesPhotoshop6}
```
public static final ImageResourceID SlicesPhotoshop6
@@ -359,6 +467,7 @@ public static final ImageResourceID SlicesPhotoshop6
Slices (Photoshop 6).
+
### WorkflowUrlPhotoshop6 {#WorkflowUrlPhotoshop6}
```
public static final ImageResourceID WorkflowUrlPhotoshop6
@@ -367,6 +476,7 @@ public static final ImageResourceID WorkflowUrlPhotoshop6
Workflow URL. Unicode string. Photoshop 6.
+
### AlphaIdentifiersPhotoshop6 {#AlphaIdentifiersPhotoshop6}
```
public static final ImageResourceID AlphaIdentifiersPhotoshop6
@@ -375,6 +485,7 @@ public static final ImageResourceID AlphaIdentifiersPhotoshop6
Alpha Identifiers. 4 bytes of length, followed by 4 bytes each for every alpha identifier.
+
### UrlListPhotoshop6 {#UrlListPhotoshop6}
```
public static final ImageResourceID UrlListPhotoshop6
@@ -383,6 +494,7 @@ public static final ImageResourceID UrlListPhotoshop6
URL InternalList. 4 byte count of URLs, followed by 4 byte long, 4 byte ID, and Unicode string for each count.
+
### VersionInfoPhotoshop6 {#VersionInfoPhotoshop6}
```
public static final ImageResourceID VersionInfoPhotoshop6
@@ -391,13 +503,17 @@ public static final ImageResourceID VersionInfoPhotoshop6
Version Info. 4 bytes version, 1 byte hasRealMergedData , Unicode string: writer name, Unicode string: reader name, 4 bytes file version.
+
### ExifData1Photoshop7 {#ExifData1Photoshop7}
```
public static final ImageResourceID ExifData1Photoshop7
```
-EXIF data 1, see more .
+EXIF data 1,
+see more
+.
+
### ExifData3Photoshop7 {#ExifData3Photoshop7}
```
@@ -405,7 +521,10 @@ public static final ImageResourceID ExifData3Photoshop7
```
- EXIF data 3.
+
+EXIF data 3.
+
+
### XmpPhotoshop7 {#XmpPhotoshop7}
```
@@ -413,7 +532,10 @@ public static final ImageResourceID XmpPhotoshop7
```
-XMP metadata. File info as XML description, see more .
+XMP metadata. File info as XML description,
+see more
+.
+
### CaptionDigestPhotoshop7 {#CaptionDigestPhotoshop7}
```
@@ -423,13 +545,18 @@ public static final ImageResourceID CaptionDigestPhotoshop7
Caption digest. 16 bytes: RSA Data Security, MD5 message-digest algorithm.
+
### PrintScalePhotoshop7 {#PrintScalePhotoshop7}
```
public static final ImageResourceID PrintScalePhotoshop7
```
-Print scale. 2 bytes style (0 = centered, 1 = size to fit, 2 = user defined). 4 bytes x location (floating point). 4 bytes y location (floating point). 4 bytes scale (floating point).
+Print scale. 2 bytes style (0 = centered, 1 = size to fit, 2 = user defined).
+4 bytes x location (floating point).
+4 bytes y location (floating point).
+4 bytes scale (floating point).
+
### PixelAspectRatio {#PixelAspectRatio}
```
@@ -437,7 +564,9 @@ public static final ImageResourceID PixelAspectRatio
```
-Pixel Aspect Ratio. 4 bytes (version = 1 or 2), 8 bytes double, x / y of a pixel. Version 2, attempting to correct values for NTSC and PAL, previously off by a factor of approx. 5%.
+Pixel Aspect Ratio. 4 bytes (version = 1 or 2), 8 bytes double, x / y of a pixel.
+Version 2, attempting to correct values for NTSC and PAL, previously off by a factor of approx. 5%.
+
### LayerComps {#LayerComps}
```
@@ -447,13 +576,16 @@ public static final ImageResourceID LayerComps
Layer Comps. 4 bytes (descriptor version = 16), Descriptor.
+
### LayerSelectionIds {#LayerSelectionIds}
```
public static final ImageResourceID LayerSelectionIds
```
-Layer Selection ID(s). 2 bytes count, following is repeated for each count: 4 bytes layer ID.
+Layer Selection ID(s).
+2 bytes count, following is repeated for each count: 4 bytes layer ID.
+
### PrintInfoCS2 {#PrintInfoCS2}
```
@@ -463,13 +595,17 @@ public static final ImageResourceID PrintInfoCS2
Print info (Photoshop CS2).
+
### LayerGroupEnabledIdCS2 {#LayerGroupEnabledIdCS2}
```
public static final ImageResourceID LayerGroupEnabledIdCS2
```
-Layer Group(s) Enabled ID. 1 byte for each layer in the document, repeated by length of the resource. NOTE: Layer groups have start and end markers (Photoshop CS2).
+Layer Group(s) Enabled ID.
+1 byte for each layer in the document, repeated by length of the resource.
+NOTE: Layer groups have start and end markers (Photoshop CS2).
+
### ColorSamplersResourceCS3 {#ColorSamplersResourceCS3}
```
@@ -479,6 +615,7 @@ public static final ImageResourceID ColorSamplersResourceCS3
Color samplers resource. Also see ID 1038 for old format.
+
### MeasurementScaleCS3 {#MeasurementScaleCS3}
```
public static final ImageResourceID MeasurementScaleCS3
@@ -487,6 +624,7 @@ public static final ImageResourceID MeasurementScaleCS3
Measurement Scale. 4 bytes (descriptor version = 16), Descriptor.
+
### TimelineInformationCS3 {#TimelineInformationCS3}
```
public static final ImageResourceID TimelineInformationCS3
@@ -495,6 +633,7 @@ public static final ImageResourceID TimelineInformationCS3
Timeline Information. 4 bytes (descriptor version = 16), Descriptor.
+
### SheetDisclosureCS3 {#SheetDisclosureCS3}
```
public static final ImageResourceID SheetDisclosureCS3
@@ -503,6 +642,7 @@ public static final ImageResourceID SheetDisclosureCS3
Sheet Disclosure. 4 bytes (descriptor version = 16), Descriptor.
+
### PrintInformationCS5 {#PrintInformationCS5}
```
public static final ImageResourceID PrintInformationCS5
@@ -511,6 +651,7 @@ public static final ImageResourceID PrintInformationCS5
Print Information (Photoshop CS5).
+
### PrintStyleCS5 {#PrintStyleCS5}
```
public static final ImageResourceID PrintStyleCS5
@@ -519,13 +660,17 @@ public static final ImageResourceID PrintStyleCS5
Print Style (Photoshop CS5).
+
### MacintoshNSPrintInfoCS5 {#MacintoshNSPrintInfoCS5}
```
public static final ImageResourceID MacintoshNSPrintInfoCS5
```
-Macintosh NSPrintInfo. Variable OS specific info for Macintosh. NSPrintInfo. It is recommended that you do not interpret or use this data. (Photoshop CS5).
+Macintosh NSPrintInfo.
+Variable OS specific info for Macintosh. NSPrintInfo.
+It is recommended that you do not interpret or use this data. (Photoshop CS5).
+
### WindowsDevmodeCS5 {#WindowsDevmodeCS5}
```
@@ -533,7 +678,10 @@ public static final ImageResourceID WindowsDevmodeCS5
```
-Windows DEVMODE. Variable OS specific info for Windows. DEVMODE. It is recommended that you do not interpret or use this data. (Photoshop CS5).
+Windows DEVMODE.
+Variable OS specific info for Windows. DEVMODE.
+It is recommended that you do not interpret or use this data. (Photoshop CS5).
+
### AutoSaveFilePathCS6 {#AutoSaveFilePathCS6}
```
@@ -543,6 +691,7 @@ public static final ImageResourceID AutoSaveFilePathCS6
Auto Save File Path. Unicode string. (Photoshop CS6).
+
### AutoSaveFormatCS6 {#AutoSaveFormatCS6}
```
public static final ImageResourceID AutoSaveFormatCS6
@@ -551,6 +700,7 @@ public static final ImageResourceID AutoSaveFormatCS6
Auto Save Format. Unicode string. (Photoshop CS6).
+
### PathSelectionStateCC {#PathSelectionStateCC}
```
public static final ImageResourceID PathSelectionStateCC
@@ -559,6 +709,7 @@ public static final ImageResourceID PathSelectionStateCC
Path Selection State. (Photoshop CC).
+
### ImageReadyVariables {#ImageReadyVariables}
```
public static final ImageResourceID ImageReadyVariables
@@ -567,6 +718,7 @@ public static final ImageResourceID ImageReadyVariables
Image Ready variables. XML representation of variables definition.
+
### ImageReadyDatasets {#ImageReadyDatasets}
```
public static final ImageResourceID ImageReadyDatasets
@@ -575,13 +727,18 @@ public static final ImageResourceID ImageReadyDatasets
Image Ready data sets.
+
### PrintFlagsInformation {#PrintFlagsInformation}
```
public static final ImageResourceID PrintFlagsInformation
```
-Print flags information. 2 bytes version ( = 1), 1 byte center crop marks, 1 byte ( = 0), 4 bytes bleed width value, 2 bytes bleed width scale.
+Print flags information.
+2 bytes version ( = 1),
+1 byte center crop marks,
+1 byte ( = 0), 4 bytes bleed width value, 2 bytes bleed width scale.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
@@ -616,6 +773,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -626,6 +784,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -641,6 +800,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -656,6 +816,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -666,6 +827,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -676,6 +838,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/imageresourcepackage/_index.md b/english/java/com.groupdocs.metadata.core/imageresourcepackage/_index.md
index e49100f9b9..0c6a5df6b2 100644
--- a/english/java/com.groupdocs.metadata.core/imageresourcepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/imageresourcepackage/_index.md
@@ -14,17 +14,20 @@ public final class ImageResourcePackage extends CustomPackage
Represents a metadata package containing Photoshop Image Resources.
+
**Learn more**
- * [Working with metadata in PSD images][]
+* [Working with metadata in PSD images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images)
+
+
-[Working with metadata in PSD images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images
## Methods
| Method | Description |
| --- | --- |
-| [toList()](#toList--) | Creates a list from the package. |
+| [toList()](#toList--) | Creates a list from the package.
+ |
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -33,5 +36,7 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains all Image Resource Blocks from the package.
+
diff --git a/english/java/com.groupdocs.metadata.core/imagerootpackage/_index.md b/english/java/com.groupdocs.metadata.core/imagerootpackage/_index.md
index 5aa16ff9f7..b0c638fc37 100644
--- a/english/java/com.groupdocs.metadata.core/imagerootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/imagerootpackage/_index.md
@@ -15,10 +15,10 @@ public abstract class ImageRootPackage extends RootMetadataPackage
Provides a base abstract class for all image root packages.
This code sample demonstrates how to extract common image properties such as width and height, MIME type, byte order, etc.
-
-> ```
+>
+> ````
> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputPng)) {
> ImageRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getImageType().getFileFormat());
@@ -30,12 +30,15 @@ This code sample demonstrates how to extract common image properties such as wid
> }
>
> ```
-> ```
+> ````
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getImageType()](#getImageType--) | Gets the file type metadata package. |
+| [getImageType()](#getImageType--) | Gets the file type metadata package.
+ |
### getImageType() {#getImageType--}
```
public final ImageTypePackage getImageType()
@@ -44,5 +47,7 @@ public final ImageTypePackage getImageType()
Gets the file type metadata package.
+
**Returns:**
[ImageTypePackage](../../com.groupdocs.metadata.core/imagetypepackage) - The file type metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/imagetypepackage/_index.md b/english/java/com.groupdocs.metadata.core/imagetypepackage/_index.md
index 30b984cf00..7943fbb48a 100644
--- a/english/java/com.groupdocs.metadata.core/imagetypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/imagetypepackage/_index.md
@@ -13,13 +13,17 @@ public class ImageTypePackage extends FileTypePackage
```
Represents a metadata package containing image-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getWidth()](#getWidth--) | Gets the image width. |
-| [getHeight()](#getHeight--) | Gets the image height. |
-| [getByteOrder()](#getByteOrder--) | Gets the byte-order of the image. |
+| [getWidth()](#getWidth--) | Gets the image width.
+ |
+| [getHeight()](#getHeight--) | Gets the image height.
+ |
+| [getByteOrder()](#getByteOrder--) | Gets the byte-order of the image.
+ |
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -28,8 +32,10 @@ public final int getWidth()
Gets the image width.
+
**Returns:**
int - The image width.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -38,15 +44,22 @@ public final int getHeight()
Gets the image height.
+
**Returns:**
int - The image height.
+
### getByteOrder() {#getByteOrder--}
```
public final ByteOrder getByteOrder()
```
-Gets the byte-order of the image. Please see https://en.wikipedia.org/wiki/Endianness for more information.
+Gets the byte-order of the image.
+Please see
+
+ for more information.
+
**Returns:**
[ByteOrder](../../com.groupdocs.metadata.core/byteorder) - The byte-order value.
+
diff --git a/english/java/com.groupdocs.metadata.core/interoperabilityifdpointerpackage/_index.md b/english/java/com.groupdocs.metadata.core/interoperabilityifdpointerpackage/_index.md
index 4b3e6c6375..204a1d0205 100644
--- a/english/java/com.groupdocs.metadata.core/interoperabilityifdpointerpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/interoperabilityifdpointerpackage/_index.md
@@ -13,12 +13,15 @@ public final class InteroperabilityIFDPointerPackage extends CustomPackage
```
Represents Interoperability IFD.
+
## Methods
| Method | Description |
| --- | --- |
-| [getTagInteropIndex()](#getTagInteropIndex--) | Gets the TagInteropIndex. |
-| [getTagInteropVersion()](#getTagInteropVersion--) | Gets the TagInteropVersion. |
+| [getTagInteropIndex()](#getTagInteropIndex--) | Gets the TagInteropIndex.
+ |
+| [getTagInteropVersion()](#getTagInteropVersion--) | Gets the TagInteropVersion.
+ |
### getTagInteropIndex() {#getTagInteropIndex--}
```
public final String getTagInteropIndex()
@@ -27,8 +30,10 @@ public final String getTagInteropIndex()
Gets the TagInteropIndex.
+
**Returns:**
java.lang.String - The TagInteropIndex.
+
### getTagInteropVersion() {#getTagInteropVersion--}
```
public final byte[] getTagInteropVersion()
@@ -37,5 +42,7 @@ public final byte[] getTagInteropVersion()
Gets the TagInteropVersion.
+
**Returns:**
byte[] - The TagInteropVersion.
+
diff --git a/english/java/com.groupdocs.metadata.core/invalidformatexception/_index.md b/english/java/com.groupdocs.metadata.core/invalidformatexception/_index.md
index 5fdb31e809..d368806361 100644
--- a/english/java/com.groupdocs.metadata.core/invalidformatexception/_index.md
+++ b/english/java/com.groupdocs.metadata.core/invalidformatexception/_index.md
@@ -13,20 +13,33 @@ public final class InvalidFormatException extends GroupDocsMetadataException
```
The exception that is thrown when a file has an invalid format.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [InvalidFormatException()](#InvalidFormatException--) | Initializes a new instance of the InvalidFormatException class. |
-| [InvalidFormatException(String message)](#InvalidFormatException-java.lang.String-) | Initializes a new instance of the InvalidFormatException class. |
-| [InvalidFormatException(String message, RuntimeException innerException)](#InvalidFormatException-java.lang.String-java.lang.RuntimeException-) | Initializes a new instance of the InvalidFormatException class. |
+| [InvalidFormatException()](#InvalidFormatException--) | Initializes a new instance of the
+InvalidFormatException
+ class.
+ |
+| [InvalidFormatException(String message)](#InvalidFormatException-java.lang.String-) | Initializes a new instance of the
+InvalidFormatException
+ class.
+ |
+| [InvalidFormatException(String message, RuntimeException innerException)](#InvalidFormatException-java.lang.String-java.lang.RuntimeException-) | Initializes a new instance of the
+InvalidFormatException
+ class.
+ |
### InvalidFormatException() {#InvalidFormatException--}
```
public InvalidFormatException()
```
-Initializes a new instance of the InvalidFormatException class.
+Initializes a new instance of the
+InvalidFormatException
+ class.
+
### InvalidFormatException(String message) {#InvalidFormatException-java.lang.String-}
```
@@ -34,12 +47,16 @@ public InvalidFormatException(String message)
```
-Initializes a new instance of the InvalidFormatException class.
+Initializes a new instance of the
+InvalidFormatException
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| message | java.lang.String | The message that describes the error. |
+| message | java.lang.String | The message that describes the error.
+ |
### InvalidFormatException(String message, RuntimeException innerException) {#InvalidFormatException-java.lang.String-java.lang.RuntimeException-}
```
@@ -47,11 +64,16 @@ public InvalidFormatException(String message, RuntimeException innerException)
```
-Initializes a new instance of the InvalidFormatException class.
+Initializes a new instance of the
+InvalidFormatException
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| message | java.lang.String | The error message that explains the reason for the exception. |
-| innerException | java.lang.RuntimeException | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
+| message | java.lang.String | The error message that explains the reason for the exception.
+ |
+| innerException | java.lang.RuntimeException | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/iptcapplicationrecord/_index.md b/english/java/com.groupdocs.metadata.core/iptcapplicationrecord/_index.md
index 01a6d6f844..b7a3f13510 100644
--- a/english/java/com.groupdocs.metadata.core/iptcapplicationrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcapplicationrecord/_index.md
@@ -14,72 +14,126 @@ public final class IptcApplicationRecord extends IptcRecord
Represents an IPTC Application Record.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [IptcApplicationRecord()](#IptcApplicationRecord--) | Initializes a new instance of the IptcApplicationRecord class. |
+| [IptcApplicationRecord()](#IptcApplicationRecord--) | Initializes a new instance of the
+IptcApplicationRecord
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getByLine()](#getByLine--) | Gets the name of the creator of the object, e.g. |
-| [setByLine(String value)](#setByLine-java.lang.String-) | Sets the name of the creator of the object, e.g. |
-| [getByLines()](#getByLines--) | Gets the names of the creators of the object, e.g. |
-| [setByLines(String[] value)](#setByLines-java.lang.String---) | Sets the names of the creators of the object, e.g. |
-| [getByLineTitle()](#getByLineTitle--) | Gets the title of the creator or creators of the object. |
-| [setByLineTitle(String value)](#setByLineTitle-java.lang.String-) | Sets the title of the creator or creators of the object. |
-| [getByLineTitles()](#getByLineTitles--) | Gets the titles of the creator or creators of the object. |
-| [setByLineTitles(String[] value)](#setByLineTitles-java.lang.String---) | Sets the titles of the creator or creators of the object. |
-| [getContentLocationCode()](#getContentLocationCode--) | Gets the content location code. |
-| [setContentLocationCode(String value)](#setContentLocationCode-java.lang.String-) | Sets the content location code. |
-| [getContentLocationCodes()](#getContentLocationCodes--) | Gets the content location codes. |
-| [setContentLocationCodes(String[] value)](#setContentLocationCodes-java.lang.String---) | Sets the content location codes. |
-| [getContentLocationName()](#getContentLocationName--) | Gets the content location name. |
-| [setContentLocationName(String value)](#setContentLocationName-java.lang.String-) | Sets the content location name. |
-| [getContentLocationNames()](#getContentLocationNames--) | Gets the content location names. |
-| [setContentLocationNames(String[] value)](#setContentLocationNames-java.lang.String---) | Sets the content location names. |
-| [getDateCreated()](#getDateCreated--) | Gets the date the intellectual content of the object was created. |
-| [setDateCreated(Date value)](#setDateCreated-java.util.Date-) | Sets the date the intellectual content of the object was created. |
-| [getReferenceDate()](#getReferenceDate--) | Gets the date of a prior envelope to which the current object refers. |
-| [setReferenceDate(Date value)](#setReferenceDate-java.util.Date-) | Sets the date of a prior envelope to which the current object refers. |
-| [getReferenceDates()](#getReferenceDates--) | Gets the dates of a prior envelope to which the current object refers. |
-| [getReleaseDate()](#getReleaseDate--) | Gets the release date. |
-| [setReleaseDate(Date value)](#setReleaseDate-java.util.Date-) | Sets the release date. |
-| [getCredit()](#getCredit--) | Gets information about the provider of the object, not necessarily the owner/creator. |
-| [setCredit(String value)](#setCredit-java.lang.String-) | Sets information about the provider of the object, not necessarily the owner/creator. |
-| [getHeadline()](#getHeadline--) | Gets a publishable entry providing a synopsis of the contents of the object. |
-| [setHeadline(String value)](#setHeadline-java.lang.String-) | Sets a publishable entry providing a synopsis of the contents of the object. |
-| [getCopyrightNotice()](#getCopyrightNotice--) | Gets the copyright notice. |
-| [setCopyrightNotice(String value)](#setCopyrightNotice-java.lang.String-) | Sets the copyright notice. |
-| [getContact()](#getContact--) | Gets information about the person or organisation which can provide further background information on the object. |
-| [setContact(String value)](#setContact-java.lang.String-) | Sets information about the person or organisation which can provide further background information on the object. |
-| [getContacts()](#getContacts--) | Gets information about the person or organisation which can provide further background information on the object. |
-| [setContacts(String[] value)](#setContacts-java.lang.String---) | Sets information about the person or organisation which can provide further background information on the object. |
-| [getCity()](#getCity--) | Gets the city. |
-| [setCity(String value)](#setCity-java.lang.String-) | Sets the city. |
-| [getCaptionAbstract()](#getCaptionAbstract--) | Gets a textual description of the object, particularly used where the object is not text. |
-| [setCaptionAbstract(String value)](#setCaptionAbstract-java.lang.String-) | Sets a textual description of the object, particularly used where the object is not text. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getAllKeywords()](#getAllKeywords--) | Gets the keywords. |
-| [setAllKeywords(String[] value)](#setAllKeywords-java.lang.String---) | Sets the keywords. |
-| [getProgramVersion()](#getProgramVersion--) | Gets the program version. |
-| [setProgramVersion(String value)](#setProgramVersion-java.lang.String-) | Sets the program version. |
-| [getByIptcApplicationRecordDataSet(IptcApplicationRecordDataSet dataSetNumber)](#getByIptcApplicationRecordDataSet-com.groupdocs.metadata.core.IptcApplicationRecordDataSet-) | Gets the IptcDataSet with the specified number. |
+| [getByLine()](#getByLine--) | Gets the name of the creator of the object, e.g.
+ |
+| [setByLine(String value)](#setByLine-java.lang.String-) | Sets the name of the creator of the object, e.g.
+ |
+| [getByLines()](#getByLines--) | Gets the names of the creators of the object, e.g.
+ |
+| [setByLines(String[] value)](#setByLines-java.lang.String---) | Sets the names of the creators of the object, e.g.
+ |
+| [getByLineTitle()](#getByLineTitle--) | Gets the title of the creator or creators of the object.
+ |
+| [setByLineTitle(String value)](#setByLineTitle-java.lang.String-) | Sets the title of the creator or creators of the object.
+ |
+| [getByLineTitles()](#getByLineTitles--) | Gets the titles of the creator or creators of the object.
+ |
+| [setByLineTitles(String[] value)](#setByLineTitles-java.lang.String---) | Sets the titles of the creator or creators of the object.
+ |
+| [getContentLocationCode()](#getContentLocationCode--) | Gets the content location code.
+ |
+| [setContentLocationCode(String value)](#setContentLocationCode-java.lang.String-) | Sets the content location code.
+ |
+| [getContentLocationCodes()](#getContentLocationCodes--) | Gets the content location codes.
+ |
+| [setContentLocationCodes(String[] value)](#setContentLocationCodes-java.lang.String---) | Sets the content location codes.
+ |
+| [getContentLocationName()](#getContentLocationName--) | Gets the content location name.
+ |
+| [setContentLocationName(String value)](#setContentLocationName-java.lang.String-) | Sets the content location name.
+ |
+| [getContentLocationNames()](#getContentLocationNames--) | Gets the content location names.
+ |
+| [setContentLocationNames(String[] value)](#setContentLocationNames-java.lang.String---) | Sets the content location names.
+ |
+| [getDateCreated()](#getDateCreated--) | Gets the date the intellectual content of the object was created.
+ |
+| [setDateCreated(Date value)](#setDateCreated-java.util.Date-) | Sets the date the intellectual content of the object was created.
+ |
+| [getReferenceDate()](#getReferenceDate--) | Gets the date of a prior envelope to which the current object refers.
+ |
+| [setReferenceDate(Date value)](#setReferenceDate-java.util.Date-) | Sets the date of a prior envelope to which the current object refers.
+ |
+| [getReferenceDates()](#getReferenceDates--) | Gets the dates of a prior envelope to which the current object refers.
+ |
+| [getReleaseDate()](#getReleaseDate--) | Gets the release date.
+ |
+| [setReleaseDate(Date value)](#setReleaseDate-java.util.Date-) | Sets the release date.
+ |
+| [getCredit()](#getCredit--) | Gets information about the provider of the object, not necessarily the owner/creator.
+ |
+| [setCredit(String value)](#setCredit-java.lang.String-) | Sets information about the provider of the object, not necessarily the owner/creator.
+ |
+| [getHeadline()](#getHeadline--) | Gets a publishable entry providing a synopsis of the contents of the object.
+ |
+| [setHeadline(String value)](#setHeadline-java.lang.String-) | Sets a publishable entry providing a synopsis of the contents of the object.
+ |
+| [getCopyrightNotice()](#getCopyrightNotice--) | Gets the copyright notice.
+ |
+| [setCopyrightNotice(String value)](#setCopyrightNotice-java.lang.String-) | Sets the copyright notice.
+ |
+| [getContact()](#getContact--) | Gets information about the person or organisation which can provide further background information on the object.
+ |
+| [setContact(String value)](#setContact-java.lang.String-) | Sets information about the person or organisation which can provide further background information on the object.
+ |
+| [getContacts()](#getContacts--) | Gets information about the person or organisation which can provide further background information on the object.
+ |
+| [setContacts(String[] value)](#setContacts-java.lang.String---) | Sets information about the person or organisation which can provide further background information on the object.
+ |
+| [getCity()](#getCity--) | Gets the city.
+ |
+| [setCity(String value)](#setCity-java.lang.String-) | Sets the city.
+ |
+| [getCaptionAbstract()](#getCaptionAbstract--) | Gets a textual description of the object, particularly used where the object is not text.
+ |
+| [setCaptionAbstract(String value)](#setCaptionAbstract-java.lang.String-) | Sets a textual description of the object, particularly used where the object is not text.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getAllKeywords()](#getAllKeywords--) | Gets the keywords.
+ |
+| [setAllKeywords(String[] value)](#setAllKeywords-java.lang.String---) | Sets the keywords.
+ |
+| [getProgramVersion()](#getProgramVersion--) | Gets the program version.
+ |
+| [setProgramVersion(String value)](#setProgramVersion-java.lang.String-) | Sets the program version.
+ |
+| [getByIptcApplicationRecordDataSet(IptcApplicationRecordDataSet dataSetNumber)](#getByIptcApplicationRecordDataSet-com.groupdocs.metadata.core.IptcApplicationRecordDataSet-) | Gets the
+IptcDataSet
+ with the specified number.
+ |
### IptcApplicationRecord() {#IptcApplicationRecord--}
```
public IptcApplicationRecord()
```
-Initializes a new instance of the IptcApplicationRecord class.
+Initializes a new instance of the
+IptcApplicationRecord
+ class.
+
### getByLine() {#getByLine--}
```
@@ -89,8 +143,10 @@ public final String getByLine()
Gets the name of the creator of the object, e.g. writer, photographer or graphic artist.
+
**Returns:**
java.lang.String - The name of the creator of the object, e.g. writer, photographer or graphic artist.
+
### setByLine(String value) {#setByLine-java.lang.String-}
```
public final void setByLine(String value)
@@ -99,10 +155,12 @@ public final void setByLine(String value)
Sets the name of the creator of the object, e.g. writer, photographer or graphic artist.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the creator of the object, e.g. writer, photographer or graphic artist. |
+| value | java.lang.String | The name of the creator of the object, e.g. writer, photographer or graphic artist.
+ |
### getByLines() {#getByLines--}
```
@@ -112,8 +170,10 @@ public final String[] getByLines()
Gets the names of the creators of the object, e.g. writer, photographer or graphic artist.
+
**Returns:**
java.lang.String[] - The names of the creators of the object, e.g. writer, photographer or graphic artist.
+
### setByLines(String[] value) {#setByLines-java.lang.String---}
```
public final void setByLines(String[] value)
@@ -122,10 +182,12 @@ public final void setByLines(String[] value)
Sets the names of the creators of the object, e.g. writer, photographer or graphic artist.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The names of the creators of the object, e.g. writer, photographer or graphic artist. |
+| value | java.lang.String[] | The names of the creators of the object, e.g. writer, photographer or graphic artist.
+ |
### getByLineTitle() {#getByLineTitle--}
```
@@ -135,8 +197,10 @@ public final String getByLineTitle()
Gets the title of the creator or creators of the object.
+
**Returns:**
java.lang.String - The title of the creator or creators of the object.
+
### setByLineTitle(String value) {#setByLineTitle-java.lang.String-}
```
public final void setByLineTitle(String value)
@@ -145,10 +209,12 @@ public final void setByLineTitle(String value)
Sets the title of the creator or creators of the object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title of the creator or creators of the object. |
+| value | java.lang.String | The title of the creator or creators of the object.
+ |
### getByLineTitles() {#getByLineTitles--}
```
@@ -158,8 +224,10 @@ public final String[] getByLineTitles()
Gets the titles of the creator or creators of the object.
+
**Returns:**
java.lang.String[] - The titles of the creator or creators of the object.
+
### setByLineTitles(String[] value) {#setByLineTitles-java.lang.String---}
```
public final void setByLineTitles(String[] value)
@@ -168,10 +236,12 @@ public final void setByLineTitles(String[] value)
Sets the titles of the creator or creators of the object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The titles of the creator or creators of the object. |
+| value | java.lang.String[] | The titles of the creator or creators of the object.
+ |
### getContentLocationCode() {#getContentLocationCode--}
```
@@ -181,8 +251,10 @@ public final String getContentLocationCode()
Gets the content location code.
+
**Returns:**
java.lang.String - The content location code.
+
### setContentLocationCode(String value) {#setContentLocationCode-java.lang.String-}
```
public final void setContentLocationCode(String value)
@@ -191,10 +263,12 @@ public final void setContentLocationCode(String value)
Sets the content location code.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The content location code. |
+| value | java.lang.String | The content location code.
+ |
### getContentLocationCodes() {#getContentLocationCodes--}
```
@@ -204,8 +278,10 @@ public final String[] getContentLocationCodes()
Gets the content location codes.
+
**Returns:**
java.lang.String[] - The content location codes.
+
### setContentLocationCodes(String[] value) {#setContentLocationCodes-java.lang.String---}
```
public final void setContentLocationCodes(String[] value)
@@ -214,10 +290,12 @@ public final void setContentLocationCodes(String[] value)
Sets the content location codes.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The content location codes. |
+| value | java.lang.String[] | The content location codes.
+ |
### getContentLocationName() {#getContentLocationName--}
```
@@ -227,8 +305,10 @@ public final String getContentLocationName()
Gets the content location name.
+
**Returns:**
java.lang.String - The name of the content location.
+
### setContentLocationName(String value) {#setContentLocationName-java.lang.String-}
```
public final void setContentLocationName(String value)
@@ -237,10 +317,12 @@ public final void setContentLocationName(String value)
Sets the content location name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the content location. |
+| value | java.lang.String | The name of the content location.
+ |
### getContentLocationNames() {#getContentLocationNames--}
```
@@ -250,8 +332,10 @@ public final String[] getContentLocationNames()
Gets the content location names.
+
**Returns:**
java.lang.String[] - The name of the content locations.
+
### setContentLocationNames(String[] value) {#setContentLocationNames-java.lang.String---}
```
public final void setContentLocationNames(String[] value)
@@ -260,10 +344,12 @@ public final void setContentLocationNames(String[] value)
Sets the content location names.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The name of the content locations. |
+| value | java.lang.String[] | The name of the content locations.
+ |
### getDateCreated() {#getDateCreated--}
```
@@ -273,8 +359,10 @@ public final Date getDateCreated()
Gets the date the intellectual content of the object was created.
+
**Returns:**
java.util.Date - The date the intellectual content of the object was created.
+
### setDateCreated(Date value) {#setDateCreated-java.util.Date-}
```
public final void setDateCreated(Date value)
@@ -283,10 +371,12 @@ public final void setDateCreated(Date value)
Sets the date the intellectual content of the object was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date the intellectual content of the object was created. |
+| value | java.util.Date | The date the intellectual content of the object was created.
+ |
### getReferenceDate() {#getReferenceDate--}
```
@@ -296,8 +386,10 @@ public final Date getReferenceDate()
Gets the date of a prior envelope to which the current object refers.
+
**Returns:**
java.util.Date - The date of a prior envelope to which the current object refers.
+
### setReferenceDate(Date value) {#setReferenceDate-java.util.Date-}
```
public final void setReferenceDate(Date value)
@@ -306,10 +398,12 @@ public final void setReferenceDate(Date value)
Sets the date of a prior envelope to which the current object refers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date of a prior envelope to which the current object refers. |
+| value | java.util.Date | The date of a prior envelope to which the current object refers.
+ |
### getReferenceDates() {#getReferenceDates--}
```
@@ -319,8 +413,10 @@ public final Date[] getReferenceDates()
Gets the dates of a prior envelope to which the current object refers.
+
**Returns:**
java.util.Date[] - The dates of a prior envelope to which the current object refers.
+
### getReleaseDate() {#getReleaseDate--}
```
public final Date getReleaseDate()
@@ -329,8 +425,10 @@ public final Date getReleaseDate()
Gets the release date.
+
**Returns:**
java.util.Date - The release date.
+
### setReleaseDate(Date value) {#setReleaseDate-java.util.Date-}
```
public final void setReleaseDate(Date value)
@@ -339,10 +437,12 @@ public final void setReleaseDate(Date value)
Sets the release date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The release date. |
+| value | java.util.Date | The release date.
+ |
### getCredit() {#getCredit--}
```
@@ -352,8 +452,10 @@ public final String getCredit()
Gets information about the provider of the object, not necessarily the owner/creator.
+
**Returns:**
java.lang.String - The information about the provider of the object, not necessarily the owner/creator.
+
### setCredit(String value) {#setCredit-java.lang.String-}
```
public final void setCredit(String value)
@@ -362,10 +464,12 @@ public final void setCredit(String value)
Sets information about the provider of the object, not necessarily the owner/creator.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The information about the provider of the object, not necessarily the owner/creator. |
+| value | java.lang.String | The information about the provider of the object, not necessarily the owner/creator.
+ |
### getHeadline() {#getHeadline--}
```
@@ -375,8 +479,10 @@ public final String getHeadline()
Gets a publishable entry providing a synopsis of the contents of the object.
+
**Returns:**
java.lang.String - A publishable entry providing a synopsis of the contents of the object.
+
### setHeadline(String value) {#setHeadline-java.lang.String-}
```
public final void setHeadline(String value)
@@ -385,10 +491,12 @@ public final void setHeadline(String value)
Sets a publishable entry providing a synopsis of the contents of the object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A publishable entry providing a synopsis of the contents of the object. |
+| value | java.lang.String | A publishable entry providing a synopsis of the contents of the object.
+ |
### getCopyrightNotice() {#getCopyrightNotice--}
```
@@ -398,8 +506,10 @@ public final String getCopyrightNotice()
Gets the copyright notice.
+
**Returns:**
java.lang.String - The copyright notice.
+
### setCopyrightNotice(String value) {#setCopyrightNotice-java.lang.String-}
```
public final void setCopyrightNotice(String value)
@@ -408,10 +518,12 @@ public final void setCopyrightNotice(String value)
Sets the copyright notice.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The copyright notice. |
+| value | java.lang.String | The copyright notice.
+ |
### getContact() {#getContact--}
```
@@ -421,8 +533,10 @@ public final String getContact()
Gets information about the person or organisation which can provide further background information on the object.
+
**Returns:**
java.lang.String - The information about the person or organisation which can provide further background information on the object.
+
### setContact(String value) {#setContact-java.lang.String-}
```
public final void setContact(String value)
@@ -431,10 +545,12 @@ public final void setContact(String value)
Sets information about the person or organisation which can provide further background information on the object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The information about the person or organisation which can provide further background information on the object. |
+| value | java.lang.String | The information about the person or organisation which can provide further background information on the object.
+ |
### getContacts() {#getContacts--}
```
@@ -444,8 +560,10 @@ public final String[] getContacts()
Gets information about the person or organisation which can provide further background information on the object.
+
**Returns:**
java.lang.String[] - The information about the person or organisation which can provide further background information on the object.
+
### setContacts(String[] value) {#setContacts-java.lang.String---}
```
public final void setContacts(String[] value)
@@ -454,10 +572,12 @@ public final void setContacts(String[] value)
Sets information about the person or organisation which can provide further background information on the object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The information about the person or organisation which can provide further background information on the object. |
+| value | java.lang.String[] | The information about the person or organisation which can provide further background information on the object.
+ |
### getCity() {#getCity--}
```
@@ -467,8 +587,10 @@ public final String getCity()
Gets the city.
+
**Returns:**
java.lang.String - The city.
+
### setCity(String value) {#setCity-java.lang.String-}
```
public final void setCity(String value)
@@ -477,10 +599,12 @@ public final void setCity(String value)
Sets the city.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The city. |
+| value | java.lang.String | The city.
+ |
### getCaptionAbstract() {#getCaptionAbstract--}
```
@@ -490,8 +614,10 @@ public final String getCaptionAbstract()
Gets a textual description of the object, particularly used where the object is not text.
+
**Returns:**
java.lang.String - TheA textual description of the object, particularly used where the object is not text.
+
### setCaptionAbstract(String value) {#setCaptionAbstract-java.lang.String-}
```
public final void setCaptionAbstract(String value)
@@ -500,10 +626,12 @@ public final void setCaptionAbstract(String value)
Sets a textual description of the object, particularly used where the object is not text.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | TheA textual description of the object, particularly used where the object is not text. |
+| value | java.lang.String | TheA textual description of the object, particularly used where the object is not text.
+ |
### getKeywords() {#getKeywords--}
```
@@ -513,8 +641,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -523,10 +653,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The keywords. |
+| value | java.lang.String | The keywords.
+ |
### getAllKeywords() {#getAllKeywords--}
```
@@ -536,8 +668,10 @@ public final String[] getAllKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String[] - The keywords.
+
### setAllKeywords(String[] value) {#setAllKeywords-java.lang.String---}
```
public final void setAllKeywords(String[] value)
@@ -546,10 +680,12 @@ public final void setAllKeywords(String[] value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The keywords. |
+| value | java.lang.String[] | The keywords.
+ |
### getProgramVersion() {#getProgramVersion--}
```
@@ -559,8 +695,10 @@ public final String getProgramVersion()
Gets the program version.
+
**Returns:**
java.lang.String - The program version.
+
### setProgramVersion(String value) {#setProgramVersion-java.lang.String-}
```
public final void setProgramVersion(String value)
@@ -569,10 +707,12 @@ public final void setProgramVersion(String value)
Sets the program version.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The program version. |
+| value | java.lang.String | The program version.
+ |
### getByIptcApplicationRecordDataSet(IptcApplicationRecordDataSet dataSetNumber) {#getByIptcApplicationRecordDataSet-com.groupdocs.metadata.core.IptcApplicationRecordDataSet-}
```
@@ -580,12 +720,17 @@ public final IptcDataSet getByIptcApplicationRecordDataSet(IptcApplicationRecord
```
-Gets the IptcDataSet with the specified number.
+Gets the
+IptcDataSet
+ with the specified number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dataSetNumber | [IptcApplicationRecordDataSet](../../com.groupdocs.metadata.core/iptcapplicationrecorddataset) | The dataSet number. |
+| dataSetNumber | [IptcApplicationRecordDataSet](../../com.groupdocs.metadata.core/iptcapplicationrecorddataset) | The dataSet number.
+ |
**Returns:**
[IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) - The IptcDataSet with the specified number.
+
diff --git a/english/java/com.groupdocs.metadata.core/iptcapplicationrecorddataset/_index.md b/english/java/com.groupdocs.metadata.core/iptcapplicationrecorddataset/_index.md
index 33dd852ffd..45a61828e8 100644
--- a/english/java/com.groupdocs.metadata.core/iptcapplicationrecorddataset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcapplicationrecorddataset/_index.md
@@ -16,66 +16,127 @@ public enum IptcApplicationRecordDataSet extends Enum
+
+ |
+| [FixtureIdentifier](#FixtureIdentifier) | The fixture identifier.
+ |
+| [Keywords](#Keywords) | Used to indicate specific information retrieval words.
+ |
+| [ContentLocationCode](#ContentLocationCode) | Indicates the code of a country/geographical location referenced by the content of the object.
+ |
+| [ContentLocationName](#ContentLocationName) |
+
+ |
+| [ReleaseDate](#ReleaseDate) | Designates in the form CCYYMMDD the earliest date the provider intends the object to be used.
+ |
+| [ReleaseTime](#ReleaseTime) | Designates in the form HHMMSS??HHMM the earliest time the provider intends the object to be used.
+ |
+| [ExpirationDate](#ExpirationDate) | Designates in the form CCYYMMDD the latest date the provider or owner intends the objectdata to be used.
+ |
+| [SpecialInstructions](#SpecialInstructions) | Other editorial instructions concerning the use of the objectdata, such as embargoes and warnings.
+ |
+| [ActionAdvised](#ActionAdvised) | Indicates the type of action that this object provides to a previous object.
+ |
+| [ReferenceService](#ReferenceService) | Identifies the Service Identifier of a prior envelope to which the current object refers.
+ |
+| [ReferenceDate](#ReferenceDate) | Identifies the date of a prior envelope to which the current object refers.
+ |
+| [ReferenceNumber](#ReferenceNumber) | Identifies the Envelope Number of a prior envelope to which the current object refers.
+ |
+| [DateCreated](#DateCreated) | Represented in the form CCYYMMDD to designate the date the intellectual content of the objectdata was created rather than the date of the creation of the physical representation.
+ |
+| [TimeCreated](#TimeCreated) | Represented in the form HHMMSS??HHMM to designate the time the intellectual content of the objectdata
+current source material was created rather than the creation of the physical representation.
+ |
+| [DigitalCreationDate](#DigitalCreationDate) | Represented in the form CCYYMMDD to designate the date the digital representation of the objectdata was created.
+ |
+| [DigitalCreationTime](#DigitalCreationTime) | Represented in the form HHMMSS??HHMM to designate the time the digital representation of the objectdata was created.
+ |
+| [OriginatingProgram](#OriginatingProgram) | Identifies the type of program used to originate the objectdata.
+ |
+| [ProgramVersion](#ProgramVersion) | Used to identify the version of the program mentioned in 2:65.
+ |
+| [ObjectCycle](#ObjectCycle) | Consisting of an alphabetic character.
+ |
+| [Byline](#Byline) | Contains name of the creator of the objectdata, e.g.
+ |
+| [BylineTitle](#BylineTitle) | A by-line title is the title of the creator or creators of an object data.
+ |
+| [City](#City) | Identifies city of objectdata origin according to guidelines established by the provider.
+ |
+| [SubLocation](#SubLocation) | Identifies the location within a city from which the objectdata originates, according to guidelines established by the provider.
+ |
+| [ProvinceState](#ProvinceState) | Identifies Province/State of origin according to guidelines established by the provider.
+ |
+| [PrimaryLocationCode](#PrimaryLocationCode) | Indicates the code of the country/primary location where the intellectual property of the objectdata was created, e.g.
+ |
+| [PrimaryLocationName](#PrimaryLocationName) | Provides full, publishable, name of the country/primary location where the intellectual property of the objectdata was created,
+according to guidelines of the provider.
+ |
+| [OriginalTransmissionReference](#OriginalTransmissionReference) | A code representing the location of original transmission according to practices of the provider.
+ |
+| [Headline](#Headline) | A publishable entry providing a synopsis of the contents of the objectdata.
+ |
+| [Credit](#Credit) | Identifies the provider of the objectdata, not necessarily the owner/creator.
+ |
+| [Source](#Source) | The name of a person or party who has a role in the content supply chain.
+ |
+| [CopyrightNotice](#CopyrightNotice) | Contains any necessary copyright notice.
+ |
+| [Contact](#Contact) | Identifies the person or organization which can provide further background information on the object data.
+ |
+| [CaptionAbstract](#CaptionAbstract) | A textual description of the objectdata, particularly used where the object is not text.
+ |
+| [WriterEditor](#WriterEditor) | Identification of the name of the person involved in the writing, editing or correcting the objectdata or caption/abstract.
+ |
+| [RasterizedCaption](#RasterizedCaption) | Image width 460 pixels and image height 128 pixels.
+ |
+| [ImageType](#ImageType) | The numeric characters 1 to 4 indicate the number of components in an image, in single or multiple envelopes.
+ |
+| [ImageOrientation](#ImageOrientation) | Indicates the layout of the image area.
+ |
+| [LanguageIdentifier](#LanguageIdentifier) | Describes the major national language of the object, according to the 2-letter codes of ISO 639:1988.
+ |
+| [AudioType](#AudioType) | The audio type.
+ |
+| [AudioSamplingRate](#AudioSamplingRate) | Sampling rate numeric characters, representing the sampling rate in hertz (Hz).
+ |
+| [AudioSamplingResolution](#AudioSamplingResolution) | The number of bits in each audio sample.
+ |
+| [AudioDuration](#AudioDuration) | Duration Designates in the form HHMMSS the running time of an audio object data when played back at the speed at which it was recorded.
+ |
+| [AudioOutcue](#AudioOutcue) | Identifies the content of the end of an audio objectdata, according to guidelines established by the provider.
+ |
+| [ObjDataPreviewFileFormat](#ObjDataPreviewFileFormat) | A binary number representing the file format of the ObjectData Preview.
+ |
+| [ObjDataPreviewFileFormatVer](#ObjDataPreviewFileFormatVer) | A binary number representing the particular version of the ObjectData Preview File Format specified in 2:200.
+ |
+| [ObjDataPreviewData](#ObjDataPreviewData) | The object data preview.
+ |
## Methods
| Method | Description |
@@ -97,13 +158,15 @@ public static final IptcApplicationRecordDataSet RecordVersion
Represents the record version. Binary. Always 2 in JPEGs.
+
### ObjectTypeReference {#ObjectTypeReference}
```
public static final IptcApplicationRecordDataSet ObjectTypeReference
```
-Object type reference. Used pattern: "/\\d\{2\}:[\\w\\s]\{0,64\}?/".
+Object type reference. Used pattern: "/\\d{2}:[\\w\\s]{0,64}?/".
+
### ObjectAttributeReference {#ObjectAttributeReference}
```
@@ -113,6 +176,7 @@ public static final IptcApplicationRecordDataSet ObjectAttributeReference
The object attribute reference.
+
### ObjectName {#ObjectName}
```
public static final IptcApplicationRecordDataSet ObjectName
@@ -121,10 +185,16 @@ public static final IptcApplicationRecordDataSet ObjectName
Used as a shorthand reference for the object.
---------------------
+
+
+*** ** * ** ***
Changes to existing data, such as updated stories or new crops on photos, should be identified in EditStatus .
+
+
+
+
### EditStatus {#EditStatus}
```
public static final IptcApplicationRecordDataSet EditStatus
@@ -133,6 +203,7 @@ public static final IptcApplicationRecordDataSet EditStatus
Status of the objectdata, according to the practice of the provider.
+
### EditorialUpdate {#EditorialUpdate}
```
public static final IptcApplicationRecordDataSet EditorialUpdate
@@ -141,6 +212,7 @@ public static final IptcApplicationRecordDataSet EditorialUpdate
Indicates the type of update that this object provides to a previous object.
+
### Urgency {#Urgency}
```
public static final IptcApplicationRecordDataSet Urgency
@@ -149,6 +221,7 @@ public static final IptcApplicationRecordDataSet Urgency
Specifies the editorial urgency of content and not necessarily the envelope handling priority (see 1:60, Envelope Priority).
+
### SubjectReference {#SubjectReference}
```
public static final IptcApplicationRecordDataSet SubjectReference
@@ -157,6 +230,7 @@ public static final IptcApplicationRecordDataSet SubjectReference
The subject reference.
+
### Category {#Category}
```
public static final IptcApplicationRecordDataSet Category
@@ -165,6 +239,7 @@ public static final IptcApplicationRecordDataSet Category
Identifies the subject of the objectdata in the opinion of the provider.
+
### SupplementalCategory {#SupplementalCategory}
```
public static final IptcApplicationRecordDataSet SupplementalCategory
@@ -173,7 +248,18 @@ public static final IptcApplicationRecordDataSet SupplementalCategory
Supplemental categories further refine the subject of an objectdata.
- Only a single supplemental category may be contained in each DataSet. A supplemental category may include any of the recognised categories as used in 2:15.
+
+
+
+
+Only a single supplemental category may be contained in each DataSet. A supplemental category may include any of the recognised categories as used in 2:15.
+
+
+
+
+
+
+
@@ -185,13 +271,16 @@ public static final IptcApplicationRecordDataSet FixtureIdentifier
The fixture identifier.
+
### Keywords {#Keywords}
```
public static final IptcApplicationRecordDataSet Keywords
```
-Used to indicate specific information retrieval words. Each keyword uses a single Keywords DataSet. Multiple keywords use multiple Keywords DataSets.
+Used to indicate specific information retrieval words.
+Each keyword uses a single Keywords DataSet. Multiple keywords use multiple Keywords DataSets.
+
### ContentLocationCode {#ContentLocationCode}
```
@@ -201,6 +290,7 @@ public static final IptcApplicationRecordDataSet ContentLocationCode
Indicates the code of a country/geographical location referenced by the content of the object.
+
### ContentLocationName {#ContentLocationName}
```
public static final IptcApplicationRecordDataSet ContentLocationName
@@ -209,7 +299,15 @@ public static final IptcApplicationRecordDataSet ContentLocationName
Provides a full, publishable name of a country/geographical location referenced by the content of the object,
- according to guidelines of the provider.
+
+
+
+
+according to guidelines of the provider.
+
+
+
+
### ReleaseDate {#ReleaseDate}
```
@@ -219,6 +317,7 @@ public static final IptcApplicationRecordDataSet ReleaseDate
Designates in the form CCYYMMDD the earliest date the provider intends the object to be used. Follows ISO 8601 standard.
+
### ReleaseTime {#ReleaseTime}
```
public static final IptcApplicationRecordDataSet ReleaseTime
@@ -227,6 +326,7 @@ public static final IptcApplicationRecordDataSet ReleaseTime
Designates in the form HHMMSS??HHMM the earliest time the provider intends the object to be used. Follows ISO 8601 standard.
+
### ExpirationDate {#ExpirationDate}
```
public static final IptcApplicationRecordDataSet ExpirationDate
@@ -235,6 +335,7 @@ public static final IptcApplicationRecordDataSet ExpirationDate
Designates in the form CCYYMMDD the latest date the provider or owner intends the objectdata to be used. Follows ISO 8601 standard.
+
### SpecialInstructions {#SpecialInstructions}
```
public static final IptcApplicationRecordDataSet SpecialInstructions
@@ -243,6 +344,7 @@ public static final IptcApplicationRecordDataSet SpecialInstructions
Other editorial instructions concerning the use of the objectdata, such as embargoes and warnings.
+
### ActionAdvised {#ActionAdvised}
```
public static final IptcApplicationRecordDataSet ActionAdvised
@@ -251,6 +353,7 @@ public static final IptcApplicationRecordDataSet ActionAdvised
Indicates the type of action that this object provides to a previous object.
+
### ReferenceService {#ReferenceService}
```
public static final IptcApplicationRecordDataSet ReferenceService
@@ -259,6 +362,7 @@ public static final IptcApplicationRecordDataSet ReferenceService
Identifies the Service Identifier of a prior envelope to which the current object refers.
+
### ReferenceDate {#ReferenceDate}
```
public static final IptcApplicationRecordDataSet ReferenceDate
@@ -267,6 +371,7 @@ public static final IptcApplicationRecordDataSet ReferenceDate
Identifies the date of a prior envelope to which the current object refers.
+
### ReferenceNumber {#ReferenceNumber}
```
public static final IptcApplicationRecordDataSet ReferenceNumber
@@ -275,6 +380,7 @@ public static final IptcApplicationRecordDataSet ReferenceNumber
Identifies the Envelope Number of a prior envelope to which the current object refers.
+
### DateCreated {#DateCreated}
```
public static final IptcApplicationRecordDataSet DateCreated
@@ -283,22 +389,35 @@ public static final IptcApplicationRecordDataSet DateCreated
Represented in the form CCYYMMDD to designate the date the intellectual content of the objectdata was created rather than the date of the creation of the physical representation.
---------------------
+
+
+*** ** * ** ***
Follows ISO 8601 standard. Where the month or day cannot be determined, the information will be represented by ???00???. Where the year cannot be determined, the information for century and year will be represented by ???00???.
+
+
+
+
### TimeCreated {#TimeCreated}
```
public static final IptcApplicationRecordDataSet TimeCreated
```
-Represented in the form HHMMSS??HHMM to designate the time the intellectual content of the objectdata current source material was created rather than the creation of the physical representation.
+Represented in the form HHMMSS??HHMM to designate the time the intellectual content of the objectdata
+current source material was created rather than the creation of the physical representation.
---------------------
+
+
+*** ** * ** ***
Follows ISO 8601 standard.
+
+
+
+
### DigitalCreationDate {#DigitalCreationDate}
```
public static final IptcApplicationRecordDataSet DigitalCreationDate
@@ -307,6 +426,7 @@ public static final IptcApplicationRecordDataSet DigitalCreationDate
Represented in the form CCYYMMDD to designate the date the digital representation of the objectdata was created.
+
### DigitalCreationTime {#DigitalCreationTime}
```
public static final IptcApplicationRecordDataSet DigitalCreationTime
@@ -315,6 +435,7 @@ public static final IptcApplicationRecordDataSet DigitalCreationTime
Represented in the form HHMMSS??HHMM to designate the time the digital representation of the objectdata was created.
+
### OriginatingProgram {#OriginatingProgram}
```
public static final IptcApplicationRecordDataSet OriginatingProgram
@@ -323,6 +444,7 @@ public static final IptcApplicationRecordDataSet OriginatingProgram
Identifies the type of program used to originate the objectdata.
+
### ProgramVersion {#ProgramVersion}
```
public static final IptcApplicationRecordDataSet ProgramVersion
@@ -331,6 +453,7 @@ public static final IptcApplicationRecordDataSet ProgramVersion
Used to identify the version of the program mentioned in 2:65. DataSet 2:70 is invalid if 2:65 is not present.
+
### ObjectCycle {#ObjectCycle}
```
public static final IptcApplicationRecordDataSet ObjectCycle
@@ -339,6 +462,7 @@ public static final IptcApplicationRecordDataSet ObjectCycle
Consisting of an alphabetic character. Where: 'a'(morning, 'p'(evening, 'b'(both.
+
### Byline {#Byline}
```
public static final IptcApplicationRecordDataSet Byline
@@ -347,6 +471,7 @@ public static final IptcApplicationRecordDataSet Byline
Contains name of the creator of the objectdata, e.g. writer, photographer or graphic artist.
+
### BylineTitle {#BylineTitle}
```
public static final IptcApplicationRecordDataSet BylineTitle
@@ -355,6 +480,7 @@ public static final IptcApplicationRecordDataSet BylineTitle
A by-line title is the title of the creator or creators of an object data.
+
### City {#City}
```
public static final IptcApplicationRecordDataSet City
@@ -363,6 +489,7 @@ public static final IptcApplicationRecordDataSet City
Identifies city of objectdata origin according to guidelines established by the provider.
+
### SubLocation {#SubLocation}
```
public static final IptcApplicationRecordDataSet SubLocation
@@ -371,6 +498,7 @@ public static final IptcApplicationRecordDataSet SubLocation
Identifies the location within a city from which the objectdata originates, according to guidelines established by the provider.
+
### ProvinceState {#ProvinceState}
```
public static final IptcApplicationRecordDataSet ProvinceState
@@ -379,6 +507,7 @@ public static final IptcApplicationRecordDataSet ProvinceState
Identifies Province/State of origin according to guidelines established by the provider.
+
### PrimaryLocationCode {#PrimaryLocationCode}
```
public static final IptcApplicationRecordDataSet PrimaryLocationCode
@@ -387,13 +516,16 @@ public static final IptcApplicationRecordDataSet PrimaryLocationCode
Indicates the code of the country/primary location where the intellectual property of the objectdata was created, e.g. a photo was taken, an event occurred.
+
### PrimaryLocationName {#PrimaryLocationName}
```
public static final IptcApplicationRecordDataSet PrimaryLocationName
```
-Provides full, publishable, name of the country/primary location where the intellectual property of the objectdata was created, according to guidelines of the provider.
+Provides full, publishable, name of the country/primary location where the intellectual property of the objectdata was created,
+according to guidelines of the provider.
+
### OriginalTransmissionReference {#OriginalTransmissionReference}
```
@@ -403,6 +535,7 @@ public static final IptcApplicationRecordDataSet OriginalTransmissionReference
A code representing the location of original transmission according to practices of the provider.
+
### Headline {#Headline}
```
public static final IptcApplicationRecordDataSet Headline
@@ -411,6 +544,7 @@ public static final IptcApplicationRecordDataSet Headline
A publishable entry providing a synopsis of the contents of the objectdata.
+
### Credit {#Credit}
```
public static final IptcApplicationRecordDataSet Credit
@@ -419,13 +553,16 @@ public static final IptcApplicationRecordDataSet Credit
Identifies the provider of the objectdata, not necessarily the owner/creator.
+
### Source {#Source}
```
public static final IptcApplicationRecordDataSet Source
```
-The name of a person or party who has a role in the content supply chain. This could be an agency, a member of an agency, an individual or a combination.
+The name of a person or party who has a role in the content supply chain.
+This could be an agency, a member of an agency, an individual or a combination.
+
### CopyrightNotice {#CopyrightNotice}
```
@@ -435,6 +572,7 @@ public static final IptcApplicationRecordDataSet CopyrightNotice
Contains any necessary copyright notice.
+
### Contact {#Contact}
```
public static final IptcApplicationRecordDataSet Contact
@@ -443,6 +581,7 @@ public static final IptcApplicationRecordDataSet Contact
Identifies the person or organization which can provide further background information on the object data.
+
### CaptionAbstract {#CaptionAbstract}
```
public static final IptcApplicationRecordDataSet CaptionAbstract
@@ -451,6 +590,7 @@ public static final IptcApplicationRecordDataSet CaptionAbstract
A textual description of the objectdata, particularly used where the object is not text.
+
### WriterEditor {#WriterEditor}
```
public static final IptcApplicationRecordDataSet WriterEditor
@@ -459,6 +599,7 @@ public static final IptcApplicationRecordDataSet WriterEditor
Identification of the name of the person involved in the writing, editing or correcting the objectdata or caption/abstract.
+
### RasterizedCaption {#RasterizedCaption}
```
public static final IptcApplicationRecordDataSet RasterizedCaption
@@ -467,6 +608,7 @@ public static final IptcApplicationRecordDataSet RasterizedCaption
Image width 460 pixels and image height 128 pixels. Scanning direction bottom to top, left to right.
+
### ImageType {#ImageType}
```
public static final IptcApplicationRecordDataSet ImageType
@@ -475,6 +617,7 @@ public static final IptcApplicationRecordDataSet ImageType
The numeric characters 1 to 4 indicate the number of components in an image, in single or multiple envelopes.
+
### ImageOrientation {#ImageOrientation}
```
public static final IptcApplicationRecordDataSet ImageOrientation
@@ -483,6 +626,7 @@ public static final IptcApplicationRecordDataSet ImageOrientation
Indicates the layout of the image area.
+
### LanguageIdentifier {#LanguageIdentifier}
```
public static final IptcApplicationRecordDataSet LanguageIdentifier
@@ -491,6 +635,7 @@ public static final IptcApplicationRecordDataSet LanguageIdentifier
Describes the major national language of the object, according to the 2-letter codes of ISO 639:1988.
+
### AudioType {#AudioType}
```
public static final IptcApplicationRecordDataSet AudioType
@@ -499,6 +644,7 @@ public static final IptcApplicationRecordDataSet AudioType
The audio type.
+
### AudioSamplingRate {#AudioSamplingRate}
```
public static final IptcApplicationRecordDataSet AudioSamplingRate
@@ -507,6 +653,7 @@ public static final IptcApplicationRecordDataSet AudioSamplingRate
Sampling rate numeric characters, representing the sampling rate in hertz (Hz).
+
### AudioSamplingResolution {#AudioSamplingResolution}
```
public static final IptcApplicationRecordDataSet AudioSamplingResolution
@@ -515,6 +662,7 @@ public static final IptcApplicationRecordDataSet AudioSamplingResolution
The number of bits in each audio sample.
+
### AudioDuration {#AudioDuration}
```
public static final IptcApplicationRecordDataSet AudioDuration
@@ -523,6 +671,7 @@ public static final IptcApplicationRecordDataSet AudioDuration
Duration Designates in the form HHMMSS the running time of an audio object data when played back at the speed at which it was recorded.
+
### AudioOutcue {#AudioOutcue}
```
public static final IptcApplicationRecordDataSet AudioOutcue
@@ -531,6 +680,7 @@ public static final IptcApplicationRecordDataSet AudioOutcue
Identifies the content of the end of an audio objectdata, according to guidelines established by the provider.
+
### ObjDataPreviewFileFormat {#ObjDataPreviewFileFormat}
```
public static final IptcApplicationRecordDataSet ObjDataPreviewFileFormat
@@ -539,6 +689,7 @@ public static final IptcApplicationRecordDataSet ObjDataPreviewFileFormat
A binary number representing the file format of the ObjectData Preview.
+
### ObjDataPreviewFileFormatVer {#ObjDataPreviewFileFormatVer}
```
public static final IptcApplicationRecordDataSet ObjDataPreviewFileFormatVer
@@ -547,6 +698,7 @@ public static final IptcApplicationRecordDataSet ObjDataPreviewFileFormatVer
A binary number representing the particular version of the ObjectData Preview File Format specified in 2:200.
+
### ObjDataPreviewData {#ObjDataPreviewData}
```
public static final IptcApplicationRecordDataSet ObjDataPreviewData
@@ -555,6 +707,7 @@ public static final IptcApplicationRecordDataSet ObjDataPreviewData
The object data preview.
+
### values() {#values--}
```
public static IptcApplicationRecordDataSet[] values()
@@ -613,6 +766,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -623,6 +777,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -638,6 +793,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -653,6 +809,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -663,5 +820,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/iptcdataset/_index.md b/english/java/com.groupdocs.metadata.core/iptcdataset/_index.md
index 8a6a64403b..450b6b93fc 100644
--- a/english/java/com.groupdocs.metadata.core/iptcdataset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcdataset/_index.md
@@ -14,41 +14,64 @@ public final class IptcDataSet extends MetadataProperty
Represents an IPTC DataSet (metadata property).
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [IptcDataSet(byte recordNumber, byte dataSetNumber, byte[] value)](#IptcDataSet-byte-byte-byte---) | Initializes a new instance of the IptcDataSet class. |
-| [IptcDataSet(byte recordNumber, byte dataSetNumber, String value)](#IptcDataSet-byte-byte-java.lang.String-) | Initializes a new instance of the IptcDataSet class. |
-| [IptcDataSet(byte recordNumber, byte dataSetNumber, int value)](#IptcDataSet-byte-byte-int-) | Initializes a new instance of the IptcDataSet class. |
-| [IptcDataSet(byte recordNumber, byte dataSetNumber, Date value)](#IptcDataSet-byte-byte-java.util.Date-) | Initializes a new instance of the IptcDataSet class. |
+| [IptcDataSet(byte recordNumber, byte dataSetNumber, byte[] value)](#IptcDataSet-byte-byte-byte---) | Initializes a new instance of the
+IptcDataSet
+ class.
+ |
+| [IptcDataSet(byte recordNumber, byte dataSetNumber, String value)](#IptcDataSet-byte-byte-java.lang.String-) | Initializes a new instance of the
+IptcDataSet
+ class.
+ |
+| [IptcDataSet(byte recordNumber, byte dataSetNumber, int value)](#IptcDataSet-byte-byte-int-) | Initializes a new instance of the
+IptcDataSet
+ class.
+ |
+| [IptcDataSet(byte recordNumber, byte dataSetNumber, Date value)](#IptcDataSet-byte-byte-java.util.Date-) | Initializes a new instance of the
+IptcDataSet
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getRecordNumber()](#getRecordNumber--) | Gets the record number. |
-| [getDataSetNumber()](#getDataSetNumber--) | Gets the dataSet number. |
-| [getAlternativeName()](#getAlternativeName--) | Gets the alternative name of the dataSet. |
+| [getRecordNumber()](#getRecordNumber--) | Gets the record number.
+ |
+| [getDataSetNumber()](#getDataSetNumber--) | Gets the dataSet number.
+ |
+| [getAlternativeName()](#getAlternativeName--) | Gets the alternative name of the dataSet.
+ |
### IptcDataSet(byte recordNumber, byte dataSetNumber, byte[] value) {#IptcDataSet-byte-byte-byte---}
```
public IptcDataSet(byte recordNumber, byte dataSetNumber, byte[] value)
```
-Initializes a new instance of the IptcDataSet class.
+Initializes a new instance of the
+IptcDataSet
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
-| dataSetNumber | byte | The dataSet number. |
-| value | byte[] | A byte array value. |
+| recordNumber | byte | The record number.
+ |
+| dataSetNumber | byte | The dataSet number.
+ |
+| value | byte[] | A byte array value.
+ |
### IptcDataSet(byte recordNumber, byte dataSetNumber, String value) {#IptcDataSet-byte-byte-java.lang.String-}
```
@@ -56,14 +79,20 @@ public IptcDataSet(byte recordNumber, byte dataSetNumber, String value)
```
-Initializes a new instance of the IptcDataSet class.
+Initializes a new instance of the
+IptcDataSet
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
-| dataSetNumber | byte | The dataSet number. |
-| value | java.lang.String | A string value. |
+| recordNumber | byte | The record number.
+ |
+| dataSetNumber | byte | The dataSet number.
+ |
+| value | java.lang.String | A string value.
+ |
### IptcDataSet(byte recordNumber, byte dataSetNumber, int value) {#IptcDataSet-byte-byte-int-}
```
@@ -71,14 +100,20 @@ public IptcDataSet(byte recordNumber, byte dataSetNumber, int value)
```
-Initializes a new instance of the IptcDataSet class.
+Initializes a new instance of the
+IptcDataSet
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
-| dataSetNumber | byte | The dataSet number. |
-| value | int | An integer value. |
+| recordNumber | byte | The record number.
+ |
+| dataSetNumber | byte | The dataSet number.
+ |
+| value | int | An integer value.
+ |
### IptcDataSet(byte recordNumber, byte dataSetNumber, Date value) {#IptcDataSet-byte-byte-java.util.Date-}
```
@@ -86,14 +121,20 @@ public IptcDataSet(byte recordNumber, byte dataSetNumber, Date value)
```
-Initializes a new instance of the IptcDataSet class.
+Initializes a new instance of the
+IptcDataSet
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
-| dataSetNumber | byte | The dataSet number. |
-| value | java.util.Date | A date value. |
+| recordNumber | byte | The record number.
+ |
+| dataSetNumber | byte | The dataSet number.
+ |
+| value | java.util.Date | A date value.
+ |
### getRecordNumber() {#getRecordNumber--}
```
@@ -103,8 +144,10 @@ public final byte getRecordNumber()
Gets the record number.
+
**Returns:**
byte - The record number.
+
### getDataSetNumber() {#getDataSetNumber--}
```
public final byte getDataSetNumber()
@@ -113,8 +156,10 @@ public final byte getDataSetNumber()
Gets the dataSet number.
+
**Returns:**
byte - The dataSet number.
+
### getAlternativeName() {#getAlternativeName--}
```
public final String getAlternativeName()
@@ -123,5 +168,7 @@ public final String getAlternativeName()
Gets the alternative name of the dataSet.
+
**Returns:**
java.lang.String - The alternative name of the dataSet.
+
diff --git a/english/java/com.groupdocs.metadata.core/iptcenveloperecord/_index.md b/english/java/com.groupdocs.metadata.core/iptcenveloperecord/_index.md
index cb4a700083..b19db08e72 100644
--- a/english/java/com.groupdocs.metadata.core/iptcenveloperecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcenveloperecord/_index.md
@@ -14,47 +14,76 @@ public final class IptcEnvelopeRecord extends IptcRecord
Represents an IPTC Envelope Record.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [IptcEnvelopeRecord()](#IptcEnvelopeRecord--) | Initializes a new instance of the IptcEnvelopeRecord class. |
+| [IptcEnvelopeRecord()](#IptcEnvelopeRecord--) | Initializes a new instance of the
+IptcEnvelopeRecord
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getModelVersion()](#getModelVersion--) | Gets a number identifying the version of the information. |
-| [setModelVersion(Integer value)](#setModelVersion-java.lang.Integer-) | Sets a number identifying the version of the information. |
-| [getDestination()](#getDestination--) | Gets the destination. |
-| [setDestination(String value)](#setDestination-java.lang.String-) | Sets the destination. |
-| [getDestinations()](#getDestinations--) | Gets an array of destinations. |
-| [setDestinations(String[] value)](#setDestinations-java.lang.String---) | Sets an array of destinations. |
-| [getFileFormat()](#getFileFormat--) | Gets the file format. |
-| [setFileFormat(Integer value)](#setFileFormat-java.lang.Integer-) | Sets the file format. |
-| [getFileFormatVersion()](#getFileFormatVersion--) | Gets the file format version. |
-| [setFileFormatVersion(Integer value)](#setFileFormatVersion-java.lang.Integer-) | Sets the file format version. |
-| [getServiceIdentifier()](#getServiceIdentifier--) | Gets the service identifier. |
-| [setServiceIdentifier(String value)](#setServiceIdentifier-java.lang.String-) | Sets the service identifier. |
-| [getProductID()](#getProductID--) | Gets the product identifier. |
-| [setProductID(String value)](#setProductID-java.lang.String-) | Sets the product identifier. |
-| [getProductIds()](#getProductIds--) | Gets the product identifiers. |
-| [setProductIds(String[] value)](#setProductIds-java.lang.String---) | Sets the product identifiers. |
-| [getDateSent()](#getDateSent--) | Gets the date the service sent the material. |
-| [setDateSent(Date value)](#setDateSent-java.util.Date-) | Sets the date the service sent the material. |
-| [getByIptcEnvelopeRecordDataSet(IptcEnvelopeRecordDataSet dataSetNumber)](#getByIptcEnvelopeRecordDataSet-com.groupdocs.metadata.core.IptcEnvelopeRecordDataSet-) | Gets the IptcDataSet with the specified number. |
+| [getModelVersion()](#getModelVersion--) | Gets a number identifying the version of the information.
+ |
+| [setModelVersion(Integer value)](#setModelVersion-java.lang.Integer-) | Sets a number identifying the version of the information.
+ |
+| [getDestination()](#getDestination--) | Gets the destination.
+ |
+| [setDestination(String value)](#setDestination-java.lang.String-) | Sets the destination.
+ |
+| [getDestinations()](#getDestinations--) | Gets an array of destinations.
+ |
+| [setDestinations(String[] value)](#setDestinations-java.lang.String---) | Sets an array of destinations.
+ |
+| [getFileFormat()](#getFileFormat--) | Gets the file format.
+ |
+| [setFileFormat(Integer value)](#setFileFormat-java.lang.Integer-) | Sets the file format.
+ |
+| [getFileFormatVersion()](#getFileFormatVersion--) | Gets the file format version.
+ |
+| [setFileFormatVersion(Integer value)](#setFileFormatVersion-java.lang.Integer-) | Sets the file format version.
+ |
+| [getServiceIdentifier()](#getServiceIdentifier--) | Gets the service identifier.
+ |
+| [setServiceIdentifier(String value)](#setServiceIdentifier-java.lang.String-) | Sets the service identifier.
+ |
+| [getProductID()](#getProductID--) | Gets the product identifier.
+ |
+| [setProductID(String value)](#setProductID-java.lang.String-) | Sets the product identifier.
+ |
+| [getProductIds()](#getProductIds--) | Gets the product identifiers.
+ |
+| [setProductIds(String[] value)](#setProductIds-java.lang.String---) | Sets the product identifiers.
+ |
+| [getDateSent()](#getDateSent--) | Gets the date the service sent the material.
+ |
+| [setDateSent(Date value)](#setDateSent-java.util.Date-) | Sets the date the service sent the material.
+ |
+| [getByIptcEnvelopeRecordDataSet(IptcEnvelopeRecordDataSet dataSetNumber)](#getByIptcEnvelopeRecordDataSet-com.groupdocs.metadata.core.IptcEnvelopeRecordDataSet-) | Gets the
+IptcDataSet
+ with the specified number.
+ |
### IptcEnvelopeRecord() {#IptcEnvelopeRecord--}
```
public IptcEnvelopeRecord()
```
-Initializes a new instance of the IptcEnvelopeRecord class.
+Initializes a new instance of the
+IptcEnvelopeRecord
+ class.
+
### getModelVersion() {#getModelVersion--}
```
@@ -64,8 +93,10 @@ public final Integer getModelVersion()
Gets a number identifying the version of the information.
+
**Returns:**
java.lang.Integer - The model version.
+
### setModelVersion(Integer value) {#setModelVersion-java.lang.Integer-}
```
public final void setModelVersion(Integer value)
@@ -74,10 +105,12 @@ public final void setModelVersion(Integer value)
Sets a number identifying the version of the information.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The model version. |
+| value | java.lang.Integer | The model version.
+ |
### getDestination() {#getDestination--}
```
@@ -87,8 +120,10 @@ public final String getDestination()
Gets the destination.
+
**Returns:**
java.lang.String - The destination.
+
### setDestination(String value) {#setDestination-java.lang.String-}
```
public final void setDestination(String value)
@@ -97,10 +132,12 @@ public final void setDestination(String value)
Sets the destination.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The destination. |
+| value | java.lang.String | The destination.
+ |
### getDestinations() {#getDestinations--}
```
@@ -110,8 +147,10 @@ public final String[] getDestinations()
Gets an array of destinations.
+
**Returns:**
java.lang.String[] - The destinations.
+
### setDestinations(String[] value) {#setDestinations-java.lang.String---}
```
public final void setDestinations(String[] value)
@@ -120,10 +159,12 @@ public final void setDestinations(String[] value)
Sets an array of destinations.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The destinations. |
+| value | java.lang.String[] | The destinations.
+ |
### getFileFormat() {#getFileFormat--}
```
@@ -133,8 +174,10 @@ public final Integer getFileFormat()
Gets the file format.
+
**Returns:**
java.lang.Integer - The file format.
+
### setFileFormat(Integer value) {#setFileFormat-java.lang.Integer-}
```
public final void setFileFormat(Integer value)
@@ -143,10 +186,12 @@ public final void setFileFormat(Integer value)
Sets the file format.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The file format. |
+| value | java.lang.Integer | The file format.
+ |
### getFileFormatVersion() {#getFileFormatVersion--}
```
@@ -154,22 +199,32 @@ public final Integer getFileFormatVersion()
```
-Gets the file format version. A number representing the particular version of the File Format specified in FileFormat .
+Gets the file format version.
+A number representing the particular version of the File Format specified in
+FileFormat
+.
+
**Returns:**
java.lang.Integer - The file format version.
+
### setFileFormatVersion(Integer value) {#setFileFormatVersion-java.lang.Integer-}
```
public final void setFileFormatVersion(Integer value)
```
-Sets the file format version. A number representing the particular version of the File Format specified in FileFormat .
+Sets the file format version.
+A number representing the particular version of the File Format specified in
+FileFormat
+.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The file format version. |
+| value | java.lang.Integer | The file format version.
+ |
### getServiceIdentifier() {#getServiceIdentifier--}
```
@@ -179,8 +234,10 @@ public final String getServiceIdentifier()
Gets the service identifier.
+
**Returns:**
java.lang.String - The service identifier.
+
### setServiceIdentifier(String value) {#setServiceIdentifier-java.lang.String-}
```
public final void setServiceIdentifier(String value)
@@ -189,10 +246,12 @@ public final void setServiceIdentifier(String value)
Sets the service identifier.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The service identifier. |
+| value | java.lang.String | The service identifier.
+ |
### getProductID() {#getProductID--}
```
@@ -202,8 +261,10 @@ public final String getProductID()
Gets the product identifier.
+
**Returns:**
java.lang.String - The product identifier.
+
### setProductID(String value) {#setProductID-java.lang.String-}
```
public final void setProductID(String value)
@@ -212,10 +273,12 @@ public final void setProductID(String value)
Sets the product identifier.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The product identifier. |
+| value | java.lang.String | The product identifier.
+ |
### getProductIds() {#getProductIds--}
```
@@ -225,8 +288,10 @@ public final String[] getProductIds()
Gets the product identifiers.
+
**Returns:**
java.lang.String[] - The product identifiers.
+
### setProductIds(String[] value) {#setProductIds-java.lang.String---}
```
public final void setProductIds(String[] value)
@@ -235,10 +300,12 @@ public final void setProductIds(String[] value)
Sets the product identifiers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The product identifiers. |
+| value | java.lang.String[] | The product identifiers.
+ |
### getDateSent() {#getDateSent--}
```
@@ -248,8 +315,10 @@ public final Date getDateSent()
Gets the date the service sent the material.
+
**Returns:**
java.util.Date - The date the service sent the material.
+
### setDateSent(Date value) {#setDateSent-java.util.Date-}
```
public final void setDateSent(Date value)
@@ -258,10 +327,12 @@ public final void setDateSent(Date value)
Sets the date the service sent the material.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date the service sent the material. |
+| value | java.util.Date | The date the service sent the material.
+ |
### getByIptcEnvelopeRecordDataSet(IptcEnvelopeRecordDataSet dataSetNumber) {#getByIptcEnvelopeRecordDataSet-com.groupdocs.metadata.core.IptcEnvelopeRecordDataSet-}
```
@@ -269,12 +340,17 @@ public final IptcDataSet getByIptcEnvelopeRecordDataSet(IptcEnvelopeRecordDataSe
```
-Gets the IptcDataSet with the specified number.
+Gets the
+IptcDataSet
+ with the specified number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dataSetNumber | [IptcEnvelopeRecordDataSet](../../com.groupdocs.metadata.core/iptcenveloperecorddataset) | The dataSet number. |
+| dataSetNumber | [IptcEnvelopeRecordDataSet](../../com.groupdocs.metadata.core/iptcenveloperecorddataset) | The dataSet number.
+ |
**Returns:**
[IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) - The IptcDataSet with the specified number.
+
diff --git a/english/java/com.groupdocs.metadata.core/iptcenveloperecorddataset/_index.md b/english/java/com.groupdocs.metadata.core/iptcenveloperecorddataset/_index.md
index d025cb613f..d416d0c349 100644
--- a/english/java/com.groupdocs.metadata.core/iptcenveloperecorddataset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcenveloperecorddataset/_index.md
@@ -16,24 +16,50 @@ public final class IptcEnvelopeRecordDataSet implements IEnumValue
```
Defines IPTC Envelope Record dataSet numbers.
+
## Fields
| Field | Description |
| --- | --- |
-| [ModelVersion](#ModelVersion) | |
-| [Destination](#Destination) | |
-| [FileFormat](#FileFormat) | File format. |
-| [FileFormatVersion](#FileFormatVersion) | |
-| [ServiceIdentifier](#ServiceIdentifier) | |
-| [EnvelopeNumber](#EnvelopeNumber) | |
-| [ProductID](#ProductID) | |
-| [EnvelopePriority](#EnvelopePriority) | |
-| [DateSent](#DateSent) | |
-| [TimeSent](#TimeSent) | |
-| [CodedCharacterSet](#CodedCharacterSet) | |
-| [Uno](#Uno) | Invalid (eternal identifier). |
-| [ArmIdentifier](#ArmIdentifier) | The DataSet identifies the Abstract Relationship Method (ARM) which is described in a document registered by the originator of the ARM with the IPTC and NAA. |
-| [ArmVersion](#ArmVersion) | Binary number representing the particular version of the ARM specified in DataSet 1:120. |
+| [ModelVersion](#ModelVersion) |
+
+ |
+| [Destination](#Destination) |
+
+ |
+| [FileFormat](#FileFormat) | File format.
+ |
+| [FileFormatVersion](#FileFormatVersion) |
+
+ |
+| [ServiceIdentifier](#ServiceIdentifier) |
+
+ |
+| [EnvelopeNumber](#EnvelopeNumber) |
+
+ |
+| [ProductID](#ProductID) |
+
+ |
+| [EnvelopePriority](#EnvelopePriority) |
+
+ |
+| [DateSent](#DateSent) |
+
+ |
+| [TimeSent](#TimeSent) |
+
+ |
+| [CodedCharacterSet](#CodedCharacterSet) |
+
+ |
+| [Uno](#Uno) | Invalid (eternal identifier).
+ |
+| [ArmIdentifier](#ArmIdentifier) | The DataSet identifies the Abstract Relationship Method (ARM) which is described
+in a document registered by the originator of the ARM with the IPTC and NAA.
+ |
+| [ArmVersion](#ArmVersion) | Binary number representing the particular version of the ARM specified in DataSet 1:120.
+ |
## Methods
| Method | Description |
@@ -54,11 +80,25 @@ public static final IptcEnvelopeRecordDataSet ModelVersion
```
-A binary number identifying the version of the Information
+A binary number identifying the version of the Information
+
+
+
+
+
+
+Interchange Model, Part I, utilised by the provider. Version numbers are assigned by IPTC and NAA.
+
+
+
+
+
+
+The version number of this record is four (4).
+
+
- Interchange Model, Part I, utilised by the provider. Version numbers are assigned by IPTC and NAA.
- The version number of this record is four (4).
### Destination {#Destination}
```
@@ -66,9 +106,18 @@ public static final IptcEnvelopeRecordDataSet Destination
```
-Optional, repeatable, maximum 1024 octets, consisting of sequentially contiguous graphic characters.
+Optional, repeatable, maximum 1024 octets, consisting of sequentially contiguous graphic characters.
+
+
+
+
+
+
+This DataSet is to accommodate some providers who require routing information above the appropriate OSI layers.
+
+
+
- This DataSet is to accommodate some providers who require routing information above the appropriate OSI layers.
### FileFormat {#FileFormat}
```
@@ -78,17 +127,32 @@ public static final IptcEnvelopeRecordDataSet FileFormat
File format.
+
### FileFormatVersion {#FileFormatVersion}
```
public static final IptcEnvelopeRecordDataSet FileFormatVersion
```
-Mandatory, not repeatable, two octets.
+Mandatory, not repeatable, two octets.
+
+
+
+
+
+
+A binary number representing the particular version of the File Format specified in 1:20.
+
+
+
+
+
+
+A list of File Formats, including version cross references, is included as Appendix A.
+
+
- A binary number representing the particular version of the File Format specified in 1:20.
- A list of File Formats, including version cross references, is included as Appendix A.
### ServiceIdentifier {#ServiceIdentifier}
```
@@ -96,9 +160,18 @@ public static final IptcEnvelopeRecordDataSet ServiceIdentifier
```
-Mandatory, not repeatable. Up to 10 octets, consisting of graphic characters.
+Mandatory, not repeatable. Up to 10 octets, consisting of graphic characters.
+
+
+
+
+
+
+Identifies the provider and product.
+
+
+
- Identifies the provider and product.
### EnvelopeNumber {#EnvelopeNumber}
```
@@ -106,13 +179,36 @@ public static final IptcEnvelopeRecordDataSet EnvelopeNumber
```
-Mandatory, not repeatable, eight octets, consisting of numeric characters.
+Mandatory, not repeatable, eight octets, consisting of numeric characters.
+
+
+
+
+
- The characters form a number that will be unique for the date specified in 1:70 and for the Service Identifier specified in 1:30.
+The characters form a number that will be unique for the date
+specified in 1:70 and for the Service Identifier specified in 1:30.
+
+
+
+
+
+
+If identical envelope numbers appear with the same date and
+with the same Service Identifier, records 2-9 must be unchanged
+from the original.
+
+
+
+
+
+
+This is not intended to be a sequential serial
+number reception check.
+
+
- If identical envelope numbers appear with the same date and with the same Service Identifier, records 2-9 must be unchanged from the original.
- This is not intended to be a sequential serial number reception check.
### ProductID {#ProductID}
```
@@ -120,11 +216,25 @@ public static final IptcEnvelopeRecordDataSet ProductID
```
-Optional, repeatable. Up to 32 octets, consisting of graphic characters.
+Optional, repeatable. Up to 32 octets, consisting of graphic characters.
+
+
+
+
+
+
+Allows a provider to identify subsets of its overall service.
+
+
+
+
+
+
+Used to provide receiving organization data on which to select, route, or otherwise handle data.
+
+
- Allows a provider to identify subsets of its overall service.
- Used to provide receiving organization data on which to select, route, or otherwise handle data.
### EnvelopePriority {#EnvelopePriority}
```
@@ -132,9 +242,23 @@ public static final IptcEnvelopeRecordDataSet EnvelopePriority
```
-Optional, not repeatable. A single octet, consisting of a numeric character.
+Optional, not repeatable. A single octet, consisting of a numeric character.
+
+
+
+
+
+
+Specifies the envelope handling priority and not the editorial urgency (see 2:10, Urgency).
+'1' indicates the most urgent,
+'5' the normal urgency,
+and '8' the least urgent copy.
+The numeral '9' indicates a User Defined Priority.
+The numeral '0' is reserved for future use.
+
+
+
- Specifies the envelope handling priority and not the editorial urgency (see 2:10, Urgency). '1' indicates the most urgent, '5' the normal urgency, and '8' the least urgent copy. The numeral '9' indicates a User Defined Priority. The numeral '0' is reserved for future use.
### DateSent {#DateSent}
```
@@ -142,9 +266,18 @@ public static final IptcEnvelopeRecordDataSet DateSent
```
-Mandatory, not repeatable. Eight octets, consisting of numeric characters.
+Mandatory, not repeatable. Eight octets, consisting of numeric characters.
+
+
+
+
+
+
+Uses the format CCYYMMDD (century, year, month, day) as defined in ISO 8601 to indicate year, month and day the service sent the material.
+
+
+
- Uses the format CCYYMMDD (century, year, month, day) as defined in ISO 8601 to indicate year, month and day the service sent the material.
### TimeSent {#TimeSent}
```
@@ -152,7 +285,15 @@ public static final IptcEnvelopeRecordDataSet TimeSent
```
-Uses the format HHMMSS±HHMM where HHMMSS refers to local hour, minute and seconds and HHMM refers to hours and minutes ahead (+) or behind (-) Universal Coordinated Time as described in ISO 8601. This is the time the service sent the material.
+Uses the format HHMMSS±HHMM where HHMMSS refers to
+local hour, minute and seconds and HHMM refers to hours and
+minutes ahead (+) or behind (-) Universal Coordinated Time as
+described in ISO 8601. This is the time the service sent the
+material.
+
+
+
+
### CodedCharacterSet {#CodedCharacterSet}
```
@@ -160,7 +301,16 @@ public static final IptcEnvelopeRecordDataSet CodedCharacterSet
```
-Optional, not repeatable, up to 32 octets, consisting of one or more control functions used for the announcement, invocation or designation of coded character sets. The control functions follow the ISO 2022 standard and may consist of the escape control character and one or more graphic characters. For more details see Appendix C, the IPTC-NAA Code Library.
+Optional, not repeatable, up to 32 octets, consisting of one or
+more control functions used for the announcement, invocation or
+designation of coded character sets. The control functions follow
+the ISO 2022 standard and may consist of the escape control
+character and one or more graphic characters. For more details
+see Appendix C, the IPTC-NAA Code Library.
+
+
+
+
### Uno {#Uno}
```
@@ -170,13 +320,16 @@ public static final IptcEnvelopeRecordDataSet Uno
Invalid (eternal identifier).
+
### ArmIdentifier {#ArmIdentifier}
```
public static final IptcEnvelopeRecordDataSet ArmIdentifier
```
-The DataSet identifies the Abstract Relationship Method (ARM) which is described in a document registered by the originator of the ARM with the IPTC and NAA.
+The DataSet identifies the Abstract Relationship Method (ARM) which is described
+in a document registered by the originator of the ARM with the IPTC and NAA.
+
### ArmVersion {#ArmVersion}
```
@@ -186,6 +339,7 @@ public static final IptcEnvelopeRecordDataSet ArmVersion
Binary number representing the particular version of the ARM specified in DataSet 1:120.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static IptcEnvelopeRecordDataSet getByRawValue(int rawValue)
@@ -219,6 +373,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -229,6 +384,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -244,6 +400,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -259,6 +416,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -269,6 +427,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -279,6 +438,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/iptcrecord/_index.md b/english/java/com.groupdocs.metadata.core/iptcrecord/_index.md
index 528a11d8cd..ad948be3a4 100644
--- a/english/java/com.groupdocs.metadata.core/iptcrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcrecord/_index.md
@@ -14,19 +14,26 @@ public class IptcRecord extends CustomPackage
Represents an IPTC record.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getRecordNumber()](#getRecordNumber--) | Gets the record number. |
-| [toList()](#toList--) | Creates a list from the package. |
-| [get_Item(byte dataSetNumber)](#get-Item-byte-) | Gets the IptcDataSet with the specified dataSet number. |
+| [getRecordNumber()](#getRecordNumber--) | Gets the record number.
+ |
+| [toList()](#toList--) | Creates a list from the package.
+ |
+| [get_Item(byte dataSetNumber)](#get-Item-byte-) | Gets the
+IptcDataSet
+ with the specified dataSet number.
+ |
### getRecordNumber() {#getRecordNumber--}
```
public final byte getRecordNumber()
@@ -35,8 +42,10 @@ public final byte getRecordNumber()
Gets the record number.
+
**Returns:**
byte - The record number.
+
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -45,20 +54,27 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains all IPTC dataSets from the package.
+
### get_Item(byte dataSetNumber) {#get-Item-byte-}
```
public final IptcDataSet get_Item(byte dataSetNumber)
```
-Gets the IptcDataSet with the specified dataSet number.
+Gets the
+IptcDataSet
+ with the specified dataSet number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dataSetNumber | byte | The IPTC dataSet number. |
+| dataSetNumber | byte | The IPTC dataSet number.
+ |
**Returns:**
[IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) - The IptcDataSet with the specified dataSet number, if found; otherwise null.
+
diff --git a/english/java/com.groupdocs.metadata.core/iptcrecordset/_index.md b/english/java/com.groupdocs.metadata.core/iptcrecordset/_index.md
index 2e2d7bada7..dde4aaf2ff 100644
--- a/english/java/com.groupdocs.metadata.core/iptcrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcrecordset/_index.md
@@ -14,15 +14,18 @@ public final class IptcRecordSet extends CustomPackage
Represents a collection of IPTC records.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
-This code sample shows hot to update basic IPTC metadata properties.
+
+This code sample shows hot to update basic IPTC metadata properties.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputJpeg)) {
> IIptc root = (IIptc) metadata.getRootPackage();
> // Set the IPTC package if it's missing
@@ -47,40 +50,65 @@ This code sample shows hot to update basic IPTC metadata properties.
> }
>
> ```
-> ```
+> ````
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [IptcRecordSet()](#IptcRecordSet--) | Initializes a new instance of the IptcRecordSet class. |
-| [IptcRecordSet(IptcDataSet[] dataSets)](#IptcRecordSet-com.groupdocs.metadata.core.IptcDataSet---) | Initializes a new instance of the IptcRecordSet class. |
+| [IptcRecordSet()](#IptcRecordSet--) | Initializes a new instance of the
+IptcRecordSet
+ class.
+ |
+| [IptcRecordSet(IptcDataSet[] dataSets)](#IptcRecordSet-com.groupdocs.metadata.core.IptcDataSet---) | Initializes a new instance of the
+IptcRecordSet
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getEnvelopeRecord()](#getEnvelopeRecord--) | Gets the Envelope Record. |
-| [setEnvelopeRecord(IptcEnvelopeRecord value)](#setEnvelopeRecord-com.groupdocs.metadata.core.IptcEnvelopeRecord-) | Sets the Envelope Record. |
-| [getApplicationRecord()](#getApplicationRecord--) | Gets the Application Record. |
-| [setApplicationRecord(IptcApplicationRecord value)](#setApplicationRecord-com.groupdocs.metadata.core.IptcApplicationRecord-) | Sets the Application Record. |
-| [get_Item(byte recordNumber)](#get-Item-byte-) | Gets the IptcRecord with the specified number. |
-| [get_Item(byte recordNumber, byte dataSetNumber)](#get-Item-byte-byte-) | Gets the IptcDataSet with the specified record and dataSet number. |
-| [set(IptcDataSet dataSet)](#set-com.groupdocs.metadata.core.IptcDataSet-) | Adds or updates the specified dataSet in the appropriate record. |
-| [add(IptcDataSet dataSet)](#add-com.groupdocs.metadata.core.IptcDataSet-) | Adds the specified dataSet to the appropriate record. |
-| [remove(byte recordNumber, byte dataSetNumber)](#remove-byte-byte-) | Removes the dataSet with the specified record and dataSet number. |
-| [clear()](#clear--) | Removes all records from the collection. |
-| [remove(byte recordNumber)](#remove-byte-) | Removes the record with the specified record number. |
-| [toDataSetList()](#toDataSetList--) | Creates a list of dataSets from the package. |
-| [toList()](#toList--) | Creates a list from the package. |
+| [getEnvelopeRecord()](#getEnvelopeRecord--) | Gets the Envelope Record.
+ |
+| [setEnvelopeRecord(IptcEnvelopeRecord value)](#setEnvelopeRecord-com.groupdocs.metadata.core.IptcEnvelopeRecord-) | Sets the Envelope Record.
+ |
+| [getApplicationRecord()](#getApplicationRecord--) | Gets the Application Record.
+ |
+| [setApplicationRecord(IptcApplicationRecord value)](#setApplicationRecord-com.groupdocs.metadata.core.IptcApplicationRecord-) | Sets the Application Record.
+ |
+| [get_Item(byte recordNumber)](#get-Item-byte-) | Gets the
+IptcRecord
+ with the specified number.
+ |
+| [get_Item(byte recordNumber, byte dataSetNumber)](#get-Item-byte-byte-) | Gets the
+IptcDataSet
+ with the specified record and dataSet number.
+ |
+| [set(IptcDataSet dataSet)](#set-com.groupdocs.metadata.core.IptcDataSet-) | Adds or updates the specified dataSet in the appropriate record.
+ |
+| [add(IptcDataSet dataSet)](#add-com.groupdocs.metadata.core.IptcDataSet-) | Adds the specified dataSet to the appropriate record.
+ |
+| [remove(byte recordNumber, byte dataSetNumber)](#remove-byte-byte-) | Removes the dataSet with the specified record and dataSet number.
+ |
+| [clear()](#clear--) | Removes all records from the collection.
+ |
+| [remove(byte recordNumber)](#remove-byte-) | Removes the record with the specified record number.
+ |
+| [toDataSetList()](#toDataSetList--) | Creates a list of dataSets from the package.
+ |
+| [toList()](#toList--) | Creates a list from the package.
+ |
### IptcRecordSet() {#IptcRecordSet--}
```
public IptcRecordSet()
```
-Initializes a new instance of the IptcRecordSet class.
+Initializes a new instance of the
+IptcRecordSet
+ class.
+
### IptcRecordSet(IptcDataSet[] dataSets) {#IptcRecordSet-com.groupdocs.metadata.core.IptcDataSet---}
```
@@ -88,12 +116,16 @@ public IptcRecordSet(IptcDataSet[] dataSets)
```
-Initializes a new instance of the IptcRecordSet class.
+Initializes a new instance of the
+IptcRecordSet
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dataSets | [IptcDataSet\[\]](../../com.groupdocs.metadata.core/iptcdataset) | An array of IPTC dataSets. |
+| dataSets | [IptcDataSet\[\]](../../com.groupdocs.metadata.core/iptcdataset) | An array of IPTC dataSets.
+ |
### getEnvelopeRecord() {#getEnvelopeRecord--}
```
@@ -103,8 +135,10 @@ public final IptcEnvelopeRecord getEnvelopeRecord()
Gets the Envelope Record.
+
**Returns:**
[IptcEnvelopeRecord](../../com.groupdocs.metadata.core/iptcenveloperecord) - The Envelope Record.
+
### setEnvelopeRecord(IptcEnvelopeRecord value) {#setEnvelopeRecord-com.groupdocs.metadata.core.IptcEnvelopeRecord-}
```
public final void setEnvelopeRecord(IptcEnvelopeRecord value)
@@ -113,10 +147,12 @@ public final void setEnvelopeRecord(IptcEnvelopeRecord value)
Sets the Envelope Record.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [IptcEnvelopeRecord](../../com.groupdocs.metadata.core/iptcenveloperecord) | The Envelope Record. |
+| value | [IptcEnvelopeRecord](../../com.groupdocs.metadata.core/iptcenveloperecord) | The Envelope Record.
+ |
### getApplicationRecord() {#getApplicationRecord--}
```
@@ -126,8 +162,10 @@ public final IptcApplicationRecord getApplicationRecord()
Gets the Application Record.
+
**Returns:**
[IptcApplicationRecord](../../com.groupdocs.metadata.core/iptcapplicationrecord) - The Application Record.
+
### setApplicationRecord(IptcApplicationRecord value) {#setApplicationRecord-com.groupdocs.metadata.core.IptcApplicationRecord-}
```
public final void setApplicationRecord(IptcApplicationRecord value)
@@ -136,10 +174,12 @@ public final void setApplicationRecord(IptcApplicationRecord value)
Sets the Application Record.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [IptcApplicationRecord](../../com.groupdocs.metadata.core/iptcapplicationrecord) | The Application Record. |
+| value | [IptcApplicationRecord](../../com.groupdocs.metadata.core/iptcapplicationrecord) | The Application Record.
+ |
### get_Item(byte recordNumber) {#get-Item-byte-}
```
@@ -147,31 +187,42 @@ public final IptcRecord get_Item(byte recordNumber)
```
-Gets the IptcRecord with the specified number.
+Gets the
+IptcRecord
+ with the specified number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
+| recordNumber | byte | The record number.
+ |
**Returns:**
[IptcRecord](../../com.groupdocs.metadata.core/iptcrecord) - The IptcRecord with the specified number, if found; otherwise null.
+
### get_Item(byte recordNumber, byte dataSetNumber) {#get-Item-byte-byte-}
```
public final IptcDataSet get_Item(byte recordNumber, byte dataSetNumber)
```
-Gets the IptcDataSet with the specified record and dataSet number.
+Gets the
+IptcDataSet
+ with the specified record and dataSet number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
-| dataSetNumber | byte | The dataSet number. |
+| recordNumber | byte | The record number.
+ |
+| dataSetNumber | byte | The dataSet number.
+ |
**Returns:**
[IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) - The IptcDataSet with the specified record and dataSet number.
+
### set(IptcDataSet dataSet) {#set-com.groupdocs.metadata.core.IptcDataSet-}
```
public final void set(IptcDataSet dataSet)
@@ -180,10 +231,12 @@ public final void set(IptcDataSet dataSet)
Adds or updates the specified dataSet in the appropriate record.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dataSet | [IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) | The IPTC dataSet to add/update. |
+| dataSet | [IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) | The IPTC dataSet to add/update.
+ |
### add(IptcDataSet dataSet) {#add-com.groupdocs.metadata.core.IptcDataSet-}
```
@@ -191,12 +244,15 @@ public final void add(IptcDataSet dataSet)
```
-Adds the specified dataSet to the appropriate record. The dataSet is considered as repeatable if a dataSet with the specified number already exists.
+Adds the specified dataSet to the appropriate record.
+The dataSet is considered as repeatable if a dataSet with the specified number already exists.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dataSet | [IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) | The IPTC dataSet to add. |
+| dataSet | [IptcDataSet](../../com.groupdocs.metadata.core/iptcdataset) | The IPTC dataSet to add.
+ |
### remove(byte recordNumber, byte dataSetNumber) {#remove-byte-byte-}
```
@@ -206,14 +262,18 @@ public final boolean remove(byte recordNumber, byte dataSetNumber)
Removes the dataSet with the specified record and dataSet number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
-| dataSetNumber | byte | The dataSet number. |
+| recordNumber | byte | The record number.
+ |
+| dataSetNumber | byte | The dataSet number.
+ |
**Returns:**
boolean - True if the specified IPTC dataSet is found and removed; otherwise, false.
+
### clear() {#clear--}
```
public final void clear()
@@ -222,6 +282,7 @@ public final void clear()
Removes all records from the collection.
+
### remove(byte recordNumber) {#remove-byte-}
```
public final boolean remove(byte recordNumber)
@@ -230,13 +291,16 @@ public final boolean remove(byte recordNumber)
Removes the record with the specified record number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| recordNumber | byte | The record number. |
+| recordNumber | byte | The record number.
+ |
**Returns:**
boolean - True if the specified IPTC record is found and removed; otherwise, false.
+
### toDataSetList() {#toDataSetList--}
```
public final IReadOnlyList toDataSetList()
@@ -245,8 +309,10 @@ public final IReadOnlyList toDataSetList()
Creates a list of dataSets from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains all IPTC dataSets from the package.
+
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -255,5 +321,7 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains all IPTC records from the package.
+
diff --git a/english/java/com.groupdocs.metadata.core/iptcrecordtype/_index.md b/english/java/com.groupdocs.metadata.core/iptcrecordtype/_index.md
index 4efd215e25..1df0b6d523 100644
--- a/english/java/com.groupdocs.metadata.core/iptcrecordtype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/iptcrecordtype/_index.md
@@ -16,12 +16,15 @@ public final class IptcRecordType implements IEnumValue
```
Defines IPTC record types.
+
## Fields
| Field | Description |
| --- | --- |
-| [EnvelopeRecord](#EnvelopeRecord) | Represents an Envelope Record. |
-| [ApplicationRecord](#ApplicationRecord) | Represents an Application Record. |
+| [EnvelopeRecord](#EnvelopeRecord) | Represents an Envelope Record.
+ |
+| [ApplicationRecord](#ApplicationRecord) | Represents an Application Record.
+ |
## Methods
| Method | Description |
@@ -44,6 +47,7 @@ public static final IptcRecordType EnvelopeRecord
Represents an Envelope Record.
+
### ApplicationRecord {#ApplicationRecord}
```
public static final IptcRecordType ApplicationRecord
@@ -52,6 +56,7 @@ public static final IptcRecordType ApplicationRecord
Represents an Application Record.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static IptcRecordType getByRawValue(int rawValue)
@@ -85,6 +90,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -95,6 +101,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -110,6 +117,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -125,6 +133,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -135,6 +144,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -145,6 +155,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/ireadonlylist/_index.md b/english/java/com.groupdocs.metadata.core/ireadonlylist/_index.md
index 19e4e9eda1..7ee614af2a 100644
--- a/english/java/com.groupdocs.metadata.core/ireadonlylist/_index.md
+++ b/english/java/com.groupdocs.metadata.core/ireadonlylist/_index.md
@@ -14,16 +14,24 @@ public interface IReadOnlyList extends Iterable
Represents a read-only collection of elements that can be accessed by index.
- T : The type of elements in the read-only list.
+
+T
+: The type of elements in the read-only list.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCount()](#getCount--) | Gets the number of elements contained in the collection. |
-| [get_Item(int index)](#get-Item-int-) | Gets the element at the specified index in the read-only list. |
-| [indexOf(T item)](#indexOf-T-) | Determines the index of a specific item in the collection. |
-| [contains(T item)](#contains-T-) | Determines whether the collection contains a specific item. |
-| [contains(TagCategory item)](#contains-com.groupdocs.metadata.tagging.TagCategory-) | Determines whether the collection contains a TagCategory item. |
+| [getCount()](#getCount--) | Gets the number of elements contained in the collection.
+ |
+| [get_Item(int index)](#get-Item-int-) | Gets the element at the specified index in the read-only list.
+ |
+| [indexOf(T item)](#indexOf-T-) | Determines the index of a specific item in the collection.
+ |
+| [contains(T item)](#contains-T-) | Determines whether the collection contains a specific item.
+ |
+| [contains(TagCategory item)](#contains-com.groupdocs.metadata.tagging.TagCategory-) | Determines whether the collection contains a TagCategory item.
+ |
### getCount() {#getCount--}
```
public abstract int getCount()
@@ -32,8 +40,10 @@ public abstract int getCount()
Gets the number of elements contained in the collection.
+
**Returns:**
int - The number of elements contained in the collection.
+
### get_Item(int index) {#get-Item-int-}
```
public abstract T get_Item(int index)
@@ -42,13 +52,16 @@ public abstract T get_Item(int index)
Gets the element at the specified index in the read-only list.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| index | int | The zero-based index of the element to get. |
+| index | int | The zero-based index of the element to get.
+ |
**Returns:**
T - The element at the specified index in the read-only list.
+
### indexOf(T item) {#indexOf-T-}
```
public abstract int indexOf(T item)
@@ -57,13 +70,16 @@ public abstract int indexOf(T item)
Determines the index of a specific item in the collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| item | T | The item to locate in the collection. |
+| item | T | The item to locate in the collection.
+ |
**Returns:**
int - The index of item if found in the collection; otherwise, -1.
+
### contains(T item) {#contains-T-}
```
public abstract boolean contains(T item)
@@ -72,13 +88,16 @@ public abstract boolean contains(T item)
Determines whether the collection contains a specific item.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| item | T | The item to locate in the collection. |
+| item | T | The item to locate in the collection.
+ |
**Returns:**
boolean - True if the item is found in the collection; otherwise, false.
+
### contains(TagCategory item) {#contains-com.groupdocs.metadata.tagging.TagCategory-}
```
public abstract boolean contains(TagCategory item)
@@ -87,10 +106,13 @@ public abstract boolean contains(TagCategory item)
Determines whether the collection contains a TagCategory item.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| item | [TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) | The item to locate in the collection. |
+| item | [TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) | The item to locate in the collection.
+ |
**Returns:**
boolean - True if the item is found in the collection; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.core/ixmp/_index.md b/english/java/com.groupdocs.metadata.core/ixmp/_index.md
index 8f0e939237..ed6b1e8849 100644
--- a/english/java/com.groupdocs.metadata.core/ixmp/_index.md
+++ b/english/java/com.groupdocs.metadata.core/ixmp/_index.md
@@ -11,15 +11,18 @@ public interface IXmp
Defines base operations intended to work with XMP metadata.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This example demonstrates how to extract XMP metadata from a file.
+
+This example demonstrates how to extract XMP metadata from a file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.PngWithXmp)) {
> IXmp root = (IXmp) metadata.getRootPackage();
> if (root.getXmpPackage() != null) {
@@ -51,16 +54,17 @@ This example demonstrates how to extract XMP metadata from a file.
> }
>
> ```
-> ```
+> ````
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public abstract XmpPacketWrapper getXmpPackage()
@@ -69,8 +73,10 @@ public abstract XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public abstract void setXmpPackage(XmpPacketWrapper value)
@@ -79,8 +85,10 @@ public abstract void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package. |
+| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/ixmptype/_index.md b/english/java/com.groupdocs.metadata.core/ixmptype/_index.md
index cf4f950ae5..fa49290217 100644
--- a/english/java/com.groupdocs.metadata.core/ixmptype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/ixmptype/_index.md
@@ -10,11 +10,13 @@ public interface IXmpType
```
Base interface for XMP type.
+
## Methods
| Method | Description |
| --- | --- |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts the XMP value to the XML representation. |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts the XMP value to the XML representation.
+ |
### getXmpRepresentation() {#getXmpRepresentation--}
```
public abstract String getXmpRepresentation()
@@ -23,5 +25,7 @@ public abstract String getXmpRepresentation()
Converts the XMP value to the XML representation.
+
**Returns:**
java.lang.String - A string representation of the XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/jpeg2000package/_index.md b/english/java/com.groupdocs.metadata.core/jpeg2000package/_index.md
index a77cd7923f..a57bda326e 100644
--- a/english/java/com.groupdocs.metadata.core/jpeg2000package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/jpeg2000package/_index.md
@@ -14,17 +14,20 @@ public class Jpeg2000Package extends CustomPackage
Represents native JPEG2000 metadata.
+
**Learn more**
- * [Working with metadata in JPEG2000 images][]
+* [Working with metadata in JPEG2000 images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+JPEG2000+images)
+
+
-[Working with metadata in JPEG2000 images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+JPEG2000+images
## Methods
| Method | Description |
| --- | --- |
-| [getComments()](#getComments--) | Gets the JPEG2000 comments. |
+| [getComments()](#getComments--) | Gets the JPEG2000 comments.
+ |
### getComments() {#getComments--}
```
public final String[] getComments()
@@ -33,5 +36,7 @@ public final String[] getComments()
Gets the JPEG2000 comments.
+
**Returns:**
java.lang.String[] - The JPEG2000 comments.
+
diff --git a/english/java/com.groupdocs.metadata.core/jpeg2000rootpackage/_index.md b/english/java/com.groupdocs.metadata.core/jpeg2000rootpackage/_index.md
index 2f82c2cc36..758691b88b 100644
--- a/english/java/com.groupdocs.metadata.core/jpeg2000rootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/jpeg2000rootpackage/_index.md
@@ -17,16 +17,19 @@ public class Jpeg2000RootPackage extends ImageRootPackage implements IXmp, IExif
Represents the root package intended to work with metadata in a JPEG2000 image.
+
**Learn more**
- * [Working with metadata in JPEG2000 images][]
- * [Working with XMP metadata][]
+* [Working with metadata in JPEG2000 images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+JPEG2000+images)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This code snippet demonstrates how to read JPEG2000 image comments.
+
+This code snippet demonstrates how to read JPEG2000 image comments.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputJpeg2000)) {
> Jpeg2000RootPackage root = metadata.getRootPackageGeneric();
> if (root.getJpeg2000Package().getComments() != null) {
@@ -37,20 +40,23 @@ This code snippet demonstrates how to read JPEG2000 image comments.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in JPEG2000 images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+JPEG2000+images
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
-| [getJpeg2000Package()](#getJpeg2000Package--) | Gets the JPEG2000 native metadata package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
+| [getJpeg2000Package()](#getJpeg2000Package--) | Gets the JPEG2000 native metadata package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -59,15 +65,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -76,17 +85,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -96,15 +108,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -113,17 +128,20 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
### getJpeg2000Package() {#getJpeg2000Package--}
```
@@ -133,5 +151,7 @@ public final Jpeg2000Package getJpeg2000Package()
Gets the JPEG2000 native metadata package.
+
**Returns:**
[Jpeg2000Package](../../com.groupdocs.metadata.core/jpeg2000package) - The JPEG2000 native metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/jpegrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/jpegrootpackage/_index.md
index a721bbd777..e9e310db14 100644
--- a/english/java/com.groupdocs.metadata.core/jpegrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/jpegrootpackage/_index.md
@@ -17,33 +17,43 @@ public class JpegRootPackage extends ImageRootPackage implements IXmp, IExif, II
Represents the root package allowing working with metadata in a JPEG image.
+
**Learn more**
- * [Working with metadata in JPEG images][]
- * [Working with EXIF metadata][]
- * [Working with XMP metadata][]
- * [Working with IPTC IIM metadata][]
+* [Working with metadata in JPEG images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+JPEG+images)
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with metadata in JPEG images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+JPEG+images
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
-| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package. |
-| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package. |
-| [getImageResourcePackage()](#getImageResourcePackage--) | Gets the Photoshop Image Resource metadata package. |
-| [getMakerNotePackage()](#getMakerNotePackage--) | Gets the MakerNote metadata package. |
-| [removeImageResourcePackage()](#removeImageResourcePackage--) | Removes Photoshop Image Resource metadata package. |
-| [detectBarcodeTypes()](#detectBarcodeTypes--) | Extracts the types of the barcodes presented in the image. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
+| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package.
+ |
+| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package.
+ |
+| [getImageResourcePackage()](#getImageResourcePackage--) | Gets the Photoshop Image Resource metadata package.
+ |
+| [getMakerNotePackage()](#getMakerNotePackage--) | Gets the MakerNote metadata package.
+ |
+| [removeImageResourcePackage()](#removeImageResourcePackage--) | Removes Photoshop Image Resource metadata package.
+ |
+| [detectBarcodeTypes()](#detectBarcodeTypes--) | Extracts the types of the barcodes presented in the image.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -52,15 +62,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -69,17 +82,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -89,15 +105,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -106,17 +125,20 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
### getIptcPackage() {#getIptcPackage--}
```
@@ -126,15 +148,18 @@ public final IptcRecordSet getIptcPackage()
Gets the IPTC metadata package.
+
**Returns:**
[IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) - The IPTC metadata package.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
### setIptcPackage(IptcRecordSet value) {#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-}
```
public final void setIptcPackage(IptcRecordSet value)
@@ -143,17 +168,20 @@ public final void setIptcPackage(IptcRecordSet value)
Sets the IPTC metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) | The IPTC metadata package.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata |
+ |
### getImageResourcePackage() {#getImageResourcePackage--}
```
@@ -161,10 +189,13 @@ public final ImageResourcePackage getImageResourcePackage()
```
-Gets the Photoshop Image Resource metadata package. Image resource blocks are the basic building unit of Photoshop native file format.
+Gets the Photoshop Image Resource metadata package.
+Image resource blocks are the basic building unit of Photoshop native file format.
+
**Returns:**
[ImageResourcePackage](../../com.groupdocs.metadata.core/imageresourcepackage) - The Image Resource metadata package.
+
### getMakerNotePackage() {#getMakerNotePackage--}
```
public final MakerNotePackage getMakerNotePackage()
@@ -173,8 +204,10 @@ public final MakerNotePackage getMakerNotePackage()
Gets the MakerNote metadata package.
+
**Returns:**
[MakerNotePackage](../../com.groupdocs.metadata.core/makernotepackage) - The MakerNote metadata package.
+
### removeImageResourcePackage() {#removeImageResourcePackage--}
```
public final void removeImageResourcePackage()
@@ -183,6 +216,7 @@ public final void removeImageResourcePackage()
Removes Photoshop Image Resource metadata package.
+
### detectBarcodeTypes() {#detectBarcodeTypes--}
```
public final String[] detectBarcodeTypes()
@@ -191,15 +225,20 @@ public final String[] detectBarcodeTypes()
Extracts the types of the barcodes presented in the image.
+
**Returns:**
java.lang.String[] - An array of barcode types.
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/lyricsfield/_index.md b/english/java/com.groupdocs.metadata.core/lyricsfield/_index.md
index 86ea9fabf5..1034877dbe 100644
--- a/english/java/com.groupdocs.metadata.core/lyricsfield/_index.md
+++ b/english/java/com.groupdocs.metadata.core/lyricsfield/_index.md
@@ -12,39 +12,54 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataProperty](../../com.group
public final class LyricsField extends MetadataProperty
```
-Represents a LyricsTag field.
+Represents a
+LyricsTag
+ field.
+
**Learn more**
- * [Handling the Lyrics tag][]
+* [Handling the Lyrics tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+Lyrics+tag)
+
+
-[Handling the Lyrics tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+Lyrics+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [LyricsField(String id, String data)](#LyricsField-java.lang.String-java.lang.String-) | Initializes a new instance of the LyricsField class. |
+| [LyricsField(String id, String data)](#LyricsField-java.lang.String-java.lang.String-) | Initializes a new instance of the
+LyricsField
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getID()](#getID--) | Gets the id of the field (it's always three characters long). |
-| [getSize()](#getSize--) | Gets the string representation of the field size. |
-| [getData()](#getData--) | Gets the field data. |
+| [getID()](#getID--) | Gets the id of the field (it's always three characters long).
+ |
+| [getSize()](#getSize--) | Gets the string representation of the field size.
+ |
+| [getData()](#getData--) | Gets the field data.
+ |
### LyricsField(String id, String data) {#LyricsField-java.lang.String-java.lang.String-}
```
public LyricsField(String id, String data)
```
-Initializes a new instance of the LyricsField class.
+Initializes a new instance of the
+LyricsField
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| id | java.lang.String | The three character field id. |
-| data | java.lang.String | The field data. |
+| id | java.lang.String | The three character field id.
+ |
+| data | java.lang.String | The field data.
+ |
### getID() {#getID--}
```
@@ -54,8 +69,10 @@ public final String getID()
Gets the id of the field (it's always three characters long).
+
**Returns:**
java.lang.String - The id of the field (it's always three characters long).
+
### getSize() {#getSize--}
```
public final String getSize()
@@ -64,8 +81,10 @@ public final String getSize()
Gets the string representation of the field size.
+
**Returns:**
java.lang.String - The string representation of the field size.
+
### getData() {#getData--}
```
public final String getData()
@@ -74,5 +93,7 @@ public final String getData()
Gets the field data.
+
**Returns:**
java.lang.String - The field data.
+
diff --git a/english/java/com.groupdocs.metadata.core/lyricstag/_index.md b/english/java/com.groupdocs.metadata.core/lyricstag/_index.md
index e4fd87e216..c152f279d0 100644
--- a/english/java/com.groupdocs.metadata.core/lyricstag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/lyricstag/_index.md
@@ -12,21 +12,31 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class LyricsTag extends CustomPackage
```
-Represents Lyrics3 v2.00 metadata. Please find more information at http://id3.org/Lyrics3v2 .
+Represents Lyrics3 v2.00 metadata.
+Please find more information at
+http://id3.org/Lyrics3v2
+.
---------------------
+
+
+*** ** * ** ***
Lyrics3 v2.00 uses fields to represent information. The data in a field can consist of ASCII characters in the range 01 to 254 according to the standard. As the ASCII character map is only defined from 00 to 128 ISO-8859-1 might be assumed. Numerical fields are 5 or 6 characters long, depending on location, and are padded with zeroes.
+
+
+
**Learn more**
- * [Handling the Lyrics tag][]
+* [Handling the Lyrics tag](../https://docs.groupdocs.com/display/metadatajava/Handling+the+Lyrics+tag)
-This code sample shows how to read the Lyrics tag from an MP3 file.
+
+This code sample shows how to read the Lyrics tag from an MP3 file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.MP3WithLyrics)) {
> MP3RootPackage root = metadata.getRootPackageGeneric();
> if (root.getLyrics3V2() != null) {
@@ -43,42 +53,63 @@ This code sample shows how to read the Lyrics tag from an MP3 file.
> }
>
> ```
-> ```
+> ````
-[Handling the Lyrics tag]: https://docs.groupdocs.com/display/metadatajava/Handling+the+Lyrics+tag
## Constructors
| Constructor | Description |
| --- | --- |
-| [LyricsTag()](#LyricsTag--) | Initializes a new instance of the LyricsTag class. |
+| [LyricsTag()](#LyricsTag--) | Initializes a new instance of the
+LyricsTag
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getLyrics()](#getLyrics--) | Gets the lyrics. |
-| [setLyrics(String value)](#setLyrics-java.lang.String-) | Sets the lyrics. |
-| [getAdditionalInfo()](#getAdditionalInfo--) | Gets the additional information. |
-| [setAdditionalInfo(String value)](#setAdditionalInfo-java.lang.String-) | Sets the additional information. |
-| [getAuthor()](#getAuthor--) | Gets the author. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the author. |
-| [getAlbum()](#getAlbum--) | Gets the album name. |
-| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the album name. |
-| [getArtist()](#getArtist--) | Gets the artist name. |
-| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the artist name. |
-| [getTrack()](#getTrack--) | Gets the track title. |
-| [setTrack(String value)](#setTrack-java.lang.String-) | Sets the track title. |
-| [set(LyricsField field)](#set-com.groupdocs.metadata.core.LyricsField-) | Adds or replaces the specified Lyrics3 field. |
-| [remove(String id)](#remove-java.lang.String-) | Removes the field with the specified id. |
-| [get(String id)](#get-java.lang.String-) | Gets the value of the field with the specified id. |
-| [toList()](#toList--) | Creates a list from the package. |
+| [getLyrics()](#getLyrics--) | Gets the lyrics.
+ |
+| [setLyrics(String value)](#setLyrics-java.lang.String-) | Sets the lyrics.
+ |
+| [getAdditionalInfo()](#getAdditionalInfo--) | Gets the additional information.
+ |
+| [setAdditionalInfo(String value)](#setAdditionalInfo-java.lang.String-) | Sets the additional information.
+ |
+| [getAuthor()](#getAuthor--) | Gets the author.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the author.
+ |
+| [getAlbum()](#getAlbum--) | Gets the album name.
+ |
+| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the album name.
+ |
+| [getArtist()](#getArtist--) | Gets the artist name.
+ |
+| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the artist name.
+ |
+| [getTrack()](#getTrack--) | Gets the track title.
+ |
+| [setTrack(String value)](#setTrack-java.lang.String-) | Sets the track title.
+ |
+| [set(LyricsField field)](#set-com.groupdocs.metadata.core.LyricsField-) | Adds or replaces the specified Lyrics3 field.
+ |
+| [remove(String id)](#remove-java.lang.String-) | Removes the field with the specified id.
+ |
+| [get(String id)](#get-java.lang.String-) | Gets the value of the field with the specified id.
+ |
+| [toList()](#toList--) | Creates a list from the package.
+ |
### LyricsTag() {#LyricsTag--}
```
public LyricsTag()
```
-Initializes a new instance of the LyricsTag class.
+Initializes a new instance of the
+LyricsTag
+ class.
+
### getLyrics() {#getLyrics--}
```
@@ -86,22 +117,28 @@ public final String getLyrics()
```
-Gets the lyrics. This value is represented by the LYR field.
+Gets the lyrics.
+This value is represented by the LYR field.
+
**Returns:**
java.lang.String - The lyrics.
+
### setLyrics(String value) {#setLyrics-java.lang.String-}
```
public final void setLyrics(String value)
```
-Sets the lyrics. This value is represented by the LYR field.
+Sets the lyrics.
+This value is represented by the LYR field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The lyrics. |
+| value | java.lang.String | The lyrics.
+ |
### getAdditionalInfo() {#getAdditionalInfo--}
```
@@ -109,30 +146,46 @@ public final String getAdditionalInfo()
```
-Gets the additional information. This value is represented by the INF field.
+Gets the additional information.
+This value is represented by the INF field.
+
**Returns:**
java.lang.String - The additional information.
---------------------
+
+
+*** ** * ** ***
This is always three (3) characters long in v2.00, but might be longer in a future standard. The first byte indicates weather or not a lyrics field is present. "1" for present and "0" for otherwise. The second character indicates if there is a timestamp in the lyrics. Again "1" for yes and "0" for no. The third character inhibits tracks for random selection - "1" if inhibited and "0" if not.
+
+
+
+
### setAdditionalInfo(String value) {#setAdditionalInfo-java.lang.String-}
```
public final void setAdditionalInfo(String value)
```
-Sets the additional information. This value is represented by the INF field.
+Sets the additional information.
+This value is represented by the INF field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The additional information.
---------------------
+
+
+*** ** * ** ***
+
+This is always three (3) characters long in v2.00, but might be longer in a future standard. The first byte indicates weather or not a lyrics field is present. "1" for present and "0" for otherwise. The second character indicates if there is a timestamp in the lyrics. Again "1" for yes and "0" for no. The third character inhibits tracks for random selection - "1" if inhibited and "0" if not.
-This is always three (3) characters long in v2.00, but might be longer in a future standard. The first byte indicates weather or not a lyrics field is present. "1" for present and "0" for otherwise. The second character indicates if there is a timestamp in the lyrics. Again "1" for yes and "0" for no. The third character inhibits tracks for random selection - "1" if inhibited and "0" if not. |
+
+
+ |
### getAuthor() {#getAuthor--}
```
@@ -140,22 +193,28 @@ public final String getAuthor()
```
-Gets the author. This value is represented by the AUT field.
+Gets the author.
+This value is represented by the AUT field.
+
**Returns:**
java.lang.String - The author.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
```
-Sets the author. This value is represented by the AUT field.
+Sets the author.
+This value is represented by the AUT field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author. |
+| value | java.lang.String | The author.
+ |
### getAlbum() {#getAlbum--}
```
@@ -163,22 +222,28 @@ public final String getAlbum()
```
-Gets the album name. This value is represented by the EAL field.
+Gets the album name.
+This value is represented by the EAL field.
+
**Returns:**
java.lang.String - The album.
+
### setAlbum(String value) {#setAlbum-java.lang.String-}
```
public final void setAlbum(String value)
```
-Sets the album name. This value is represented by the EAL field.
+Sets the album name.
+This value is represented by the EAL field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The album. |
+| value | java.lang.String | The album.
+ |
### getArtist() {#getArtist--}
```
@@ -186,22 +251,28 @@ public final String getArtist()
```
-Gets the artist name. This value is represented by the EAR field.
+Gets the artist name.
+This value is represented by the EAR field.
+
**Returns:**
java.lang.String - The artist.
+
### setArtist(String value) {#setArtist-java.lang.String-}
```
public final void setArtist(String value)
```
-Sets the artist name. This value is represented by the EAR field.
+Sets the artist name.
+This value is represented by the EAR field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The artist. |
+| value | java.lang.String | The artist.
+ |
### getTrack() {#getTrack--}
```
@@ -209,22 +280,28 @@ public final String getTrack()
```
-Gets the track title. This value is represented by the ETT field.
+Gets the track title.
+This value is represented by the ETT field.
+
**Returns:**
java.lang.String - The track.
+
### setTrack(String value) {#setTrack-java.lang.String-}
```
public final void setTrack(String value)
```
-Sets the track title. This value is represented by the ETT field.
+Sets the track title.
+This value is represented by the ETT field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The track. |
+| value | java.lang.String | The track.
+ |
### set(LyricsField field) {#set-com.groupdocs.metadata.core.LyricsField-}
```
@@ -234,10 +311,12 @@ public final void set(LyricsField field)
Adds or replaces the specified Lyrics3 field.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| field | [LyricsField](../../com.groupdocs.metadata.core/lyricsfield) | The field to be set. |
+| field | [LyricsField](../../com.groupdocs.metadata.core/lyricsfield) | The field to be set.
+ |
### remove(String id) {#remove-java.lang.String-}
```
@@ -247,10 +326,12 @@ public final void remove(String id)
Removes the field with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| id | java.lang.String | The field identifier. |
+| id | java.lang.String | The field identifier.
+ |
### get(String id) {#get-java.lang.String-}
```
@@ -260,13 +341,16 @@ public final String get(String id)
Gets the value of the field with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| id | java.lang.String | The id of the field. |
+| id | java.lang.String | The id of the field.
+ |
**Returns:**
java.lang.String - The value if the tag contains a field with the specified id; otherwise, null.
+
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -275,5 +359,7 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list of all fields contained in the Lyrics3 tag.
+
diff --git a/english/java/com.groupdocs.metadata.core/makernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/makernotepackage/_index.md
index fa97b9e8e9..a60feb58ee 100644
--- a/english/java/com.groupdocs.metadata.core/makernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/makernotepackage/_index.md
@@ -13,3 +13,4 @@ public abstract class MakerNotePackage extends ExifDictionaryBasePackage
```
Provides an abstract base class for MakerNote metadata packages.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskaaudiotrack/_index.md b/english/java/com.groupdocs.metadata.core/matroskaaudiotrack/_index.md
index 7ab4128082..5a36271451 100644
--- a/english/java/com.groupdocs.metadata.core/matroskaaudiotrack/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskaaudiotrack/_index.md
@@ -14,20 +14,26 @@ public class MatroskaAudioTrack extends MatroskaTrack
Represents audio metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getSamplingFrequency()](#getSamplingFrequency--) | Gets the sampling frequency in Hz. |
-| [getOutputSamplingFrequency()](#getOutputSamplingFrequency--) | Gets the real output sampling frequency in Hz (used for SBR techniques). |
-| [getChannels()](#getChannels--) | Gets the numbers of channels in the track. |
-| [getBitDepth()](#getBitDepth--) | Gets the bits per sample, mostly used for PCM. |
+| [getSamplingFrequency()](#getSamplingFrequency--) | Gets the sampling frequency in Hz.
+ |
+| [getOutputSamplingFrequency()](#getOutputSamplingFrequency--) | Gets the real output sampling frequency in Hz (used for SBR techniques).
+ |
+| [getChannels()](#getChannels--) | Gets the numbers of channels in the track.
+ |
+| [getBitDepth()](#getBitDepth--) | Gets the bits per sample, mostly used for PCM.
+ |
### getSamplingFrequency() {#getSamplingFrequency--}
```
public final double getSamplingFrequency()
@@ -36,8 +42,10 @@ public final double getSamplingFrequency()
Gets the sampling frequency in Hz.
+
**Returns:**
double - The sampling frequency in Hz.
+
### getOutputSamplingFrequency() {#getOutputSamplingFrequency--}
```
public final double getOutputSamplingFrequency()
@@ -46,8 +54,10 @@ public final double getOutputSamplingFrequency()
Gets the real output sampling frequency in Hz (used for SBR techniques).
+
**Returns:**
double - The real output sampling frequency in Hz (used for SBR techniques).
+
### getChannels() {#getChannels--}
```
public final long getChannels()
@@ -56,8 +66,10 @@ public final long getChannels()
Gets the numbers of channels in the track.
+
**Returns:**
long - The numbers of channels in the track.
+
### getBitDepth() {#getBitDepth--}
```
public final Long getBitDepth()
@@ -66,5 +78,7 @@ public final Long getBitDepth()
Gets the bits per sample, mostly used for PCM.
+
**Returns:**
java.lang.Long - The bits per sample, mostly used for PCM.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskabasepackage/_index.md b/english/java/com.groupdocs.metadata.core/matroskabasepackage/_index.md
index 0049d9a02d..512baa7c01 100644
--- a/english/java/com.groupdocs.metadata.core/matroskabasepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskabasepackage/_index.md
@@ -14,9 +14,11 @@ public abstract class MatroskaBasePackage extends CustomPackage
Provides a base metadata class for all packages extracted from a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
diff --git a/english/java/com.groupdocs.metadata.core/matroskacontenttype/_index.md b/english/java/com.groupdocs.metadata.core/matroskacontenttype/_index.md
index 98025adf90..dba59de39d 100644
--- a/english/java/com.groupdocs.metadata.core/matroskacontenttype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskacontenttype/_index.md
@@ -16,14 +16,19 @@ public enum MatroskaContentType extends Enum implements IEn
```
Represents a Matroska content type.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | Undefined content. |
-| [Audio](#Audio) | Defines the Matroska audio type. |
-| [Video](#Video) | Defines the Matroska video type. |
-| [Video3D](#Video3D) | Defines the Matroska 3D video type. |
+| [Undefined](#Undefined) | Undefined content.
+ |
+| [Audio](#Audio) | Defines the Matroska audio type.
+ |
+| [Video](#Video) | Defines the Matroska video type.
+ |
+| [Video3D](#Video3D) | Defines the Matroska 3D video type.
+ |
## Methods
| Method | Description |
@@ -45,6 +50,7 @@ public static final MatroskaContentType Undefined
Undefined content.
+
### Audio {#Audio}
```
public static final MatroskaContentType Audio
@@ -53,6 +59,7 @@ public static final MatroskaContentType Audio
Defines the Matroska audio type.
+
### Video {#Video}
```
public static final MatroskaContentType Video
@@ -61,6 +68,7 @@ public static final MatroskaContentType Video
Defines the Matroska video type.
+
### Video3D {#Video3D}
```
public static final MatroskaContentType Video3D
@@ -69,6 +77,7 @@ public static final MatroskaContentType Video3D
Defines the Matroska 3D video type.
+
### values() {#values--}
```
public static MatroskaContentType[] values()
@@ -127,6 +136,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +147,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +163,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +179,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +190,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskaebmlheader/_index.md b/english/java/com.groupdocs.metadata.core/matroskaebmlheader/_index.md
index 92666df821..691ea3c858 100644
--- a/english/java/com.groupdocs.metadata.core/matroskaebmlheader/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskaebmlheader/_index.md
@@ -14,21 +14,32 @@ public class MatroskaEbmlHeader extends MatroskaBasePackage
Represents EBML header metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the version of the EBML Writer that has been used to create the file. |
-| [getReadVersion()](#getReadVersion--) | Gets the minimum version an EBML parser needs to be compliant with to be able to read the file. |
-| [getDocType()](#getDocType--) | Gets the contents of the file. |
-| [getDocTypeVersion()](#getDocTypeVersion--) | Gets the version of the DocType writer used to create the file. |
-| [getDocTypeReadVersion()](#getDocTypeReadVersion--) | Gets the minimum version number a DocType parser must be compliant with to read the file. |
+| [getVersion()](#getVersion--) | Gets the version of the EBML Writer that has been used to create the file.
+ |
+| [getReadVersion()](#getReadVersion--) | Gets the minimum version an EBML parser needs to be compliant with to be able to read the file.
+ |
+| [getDocType()](#getDocType--) | Gets the contents of the file.
+ |
+| [getDocTypeVersion()](#getDocTypeVersion--) | Gets the version of the
+DocType
+ writer used to create the file.
+ |
+| [getDocTypeReadVersion()](#getDocTypeReadVersion--) | Gets the minimum version number a
+DocType
+ parser must be compliant with to read the file.
+ |
### getVersion() {#getVersion--}
```
public final byte getVersion()
@@ -37,8 +48,10 @@ public final byte getVersion()
Gets the version of the EBML Writer that has been used to create the file.
+
**Returns:**
byte - The version of the EBML Writer that has been used to create the file.
+
### getReadVersion() {#getReadVersion--}
```
public final byte getReadVersion()
@@ -47,8 +60,10 @@ public final byte getReadVersion()
Gets the minimum version an EBML parser needs to be compliant with to be able to read the file.
+
**Returns:**
byte - The minimum version an EBML parser needs to be compliant with to be able to read the file.
+
### getDocType() {#getDocType--}
```
public final String getDocType()
@@ -57,25 +72,35 @@ public final String getDocType()
Gets the contents of the file. In the case of a MATROSKA file, its value is 'matroska'.
+
**Returns:**
java.lang.String - The contents of the file.
+
### getDocTypeVersion() {#getDocTypeVersion--}
```
public final byte getDocTypeVersion()
```
-Gets the version of the DocType writer used to create the file.
+Gets the version of the
+DocType
+ writer used to create the file.
+
**Returns:**
byte - The version of the DocType writer used to create the file.
+
### getDocTypeReadVersion() {#getDocTypeReadVersion--}
```
public final byte getDocTypeReadVersion()
```
-Gets the minimum version number a DocType parser must be compliant with to read the file.
+Gets the minimum version number a
+DocType
+ parser must be compliant with to read the file.
+
**Returns:**
byte - The minimum version number a DocType parser must be compliant with to read the file.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskapackage/_index.md b/english/java/com.groupdocs.metadata.core/matroskapackage/_index.md
index 71e138569a..4afb4b884d 100644
--- a/english/java/com.groupdocs.metadata.core/matroskapackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskapackage/_index.md
@@ -14,22 +14,30 @@ public class MatroskaPackage extends MatroskaBasePackage
Represents a metadata container in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getEbmlHeader()](#getEbmlHeader--) | Gets the EBML header metadata. |
-| [getSegments()](#getSegments--) | Gets the segment information metadata. |
-| [getTracks()](#getTracks--) | Gets the track metadata entries. |
-| [getTags()](#getTags--) | Gets the tagging metadata. |
-| [getContentType()](#getContentType--) | Gets the Matroska content type. |
-| [getSubtitleTracks()](#getSubtitleTracks--) | Gets the subtitle metadata entries. |
+| [getEbmlHeader()](#getEbmlHeader--) | Gets the EBML header metadata.
+ |
+| [getSegments()](#getSegments--) | Gets the segment information metadata.
+ |
+| [getTracks()](#getTracks--) | Gets the track metadata entries.
+ |
+| [getTags()](#getTags--) | Gets the tagging metadata.
+ |
+| [getContentType()](#getContentType--) | Gets the Matroska content type.
+ |
+| [getSubtitleTracks()](#getSubtitleTracks--) | Gets the subtitle metadata entries.
+ |
### getEbmlHeader() {#getEbmlHeader--}
```
public final MatroskaEbmlHeader getEbmlHeader()
@@ -38,8 +46,10 @@ public final MatroskaEbmlHeader getEbmlHeader()
Gets the EBML header metadata.
+
**Returns:**
[MatroskaEbmlHeader](../../com.groupdocs.metadata.core/matroskaebmlheader) - The EBML header metadata.
+
### getSegments() {#getSegments--}
```
public final MatroskaSegment[] getSegments()
@@ -48,8 +58,10 @@ public final MatroskaSegment[] getSegments()
Gets the segment information metadata.
+
**Returns:**
com.groupdocs.metadata.core.MatroskaSegment[] - The segment information metadata.
+
### getTracks() {#getTracks--}
```
public final MatroskaTrack[] getTracks()
@@ -58,8 +70,10 @@ public final MatroskaTrack[] getTracks()
Gets the track metadata entries.
+
**Returns:**
com.groupdocs.metadata.core.MatroskaTrack[] - The track metadata entries.
+
### getTags() {#getTags--}
```
public final MatroskaTag[] getTags()
@@ -68,8 +82,10 @@ public final MatroskaTag[] getTags()
Gets the tagging metadata.
+
**Returns:**
com.groupdocs.metadata.core.MatroskaTag[] - The tagging metadata.
+
### getContentType() {#getContentType--}
```
public final MatroskaContentType getContentType()
@@ -78,8 +94,10 @@ public final MatroskaContentType getContentType()
Gets the Matroska content type.
+
**Returns:**
[MatroskaContentType](../../com.groupdocs.metadata.core/matroskacontenttype) - The Matroska content type.
+
### getSubtitleTracks() {#getSubtitleTracks--}
```
public final MatroskaSubtitleTrack[] getSubtitleTracks()
@@ -88,5 +106,7 @@ public final MatroskaSubtitleTrack[] getSubtitleTracks()
Gets the subtitle metadata entries.
+
**Returns:**
com.groupdocs.metadata.core.MatroskaSubtitleTrack[] - The subtitle metadata entries.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskarootpackage/_index.md b/english/java/com.groupdocs.metadata.core/matroskarootpackage/_index.md
index 0039f0985e..89850267a3 100644
--- a/english/java/com.groupdocs.metadata.core/matroskarootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskarootpackage/_index.md
@@ -14,15 +14,18 @@ public class MatroskaRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
-This example demonstrates how to extract subtitles from an MKV video.
+
+This example demonstrates how to extract subtitles from an MKV video.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.MkvWithSubtitles)) {
> MatroskaRootPackage root = metadata.getRootPackageGeneric();
> for (MatroskaSubtitleTrack subtitleTrack : root.getMatroskaPackage().getSubtitleTracks()) {
@@ -35,15 +38,15 @@ This example demonstrates how to extract subtitles from an MKV video.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getMatroskaPackage()](#getMatroskaPackage--) | Gets the Matroska metadata package. |
+| [getMatroskaPackage()](#getMatroskaPackage--) | Gets the Matroska metadata package.
+ |
### getMatroskaPackage() {#getMatroskaPackage--}
```
public final MatroskaPackage getMatroskaPackage()
@@ -52,5 +55,7 @@ public final MatroskaPackage getMatroskaPackage()
Gets the Matroska metadata package.
+
**Returns:**
[MatroskaPackage](../../com.groupdocs.metadata.core/matroskapackage) - The Matroska metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskasegment/_index.md b/english/java/com.groupdocs.metadata.core/matroskasegment/_index.md
index f9681f4fb6..1874ce7e2e 100644
--- a/english/java/com.groupdocs.metadata.core/matroskasegment/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskasegment/_index.md
@@ -14,35 +14,49 @@ public class MatroskaSegment extends MatroskaBasePackage
Represents a SEGMENTINFO element containing general information about the SEGMENT in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getSegmentUid()](#getSegmentUid--) | Gets the unique 128 bit number identifying a SEGMENT. |
-| [getSegmentFilename()](#getSegmentFilename--) | Gets the filename corresponding to this Segment. |
-| [getTimecodeScale()](#getTimecodeScale--) | Gets the timecode scale value. |
-| [getDuration()](#getDuration--) | Gets the duration of the SEGMENT. |
-| [getDateUtc()](#getDateUtc--) | Gets the date and time that the Segment was created by the muxing application or library. |
-| [getTitle()](#getTitle--) | Gets the general name of the Segment. |
-| [getMuxingApp()](#getMuxingApp--) | Gets the full name of the application or library followed by the version number. |
-| [getWritingApp()](#getWritingApp--) | Gets the full name of the application followed by the version number. |
-| [getScaledDuration()](#getScaledDuration--) | Gets the scaled duration of the SEGMENT in milliseconds. |
+| [getSegmentUid()](#getSegmentUid--) | Gets the unique 128 bit number identifying a SEGMENT.
+ |
+| [getSegmentFilename()](#getSegmentFilename--) | Gets the filename corresponding to this Segment.
+ |
+| [getTimecodeScale()](#getTimecodeScale--) | Gets the timecode scale value.
+ |
+| [getDuration()](#getDuration--) | Gets the duration of the SEGMENT.
+ |
+| [getDateUtc()](#getDateUtc--) | Gets the date and time that the Segment was created by the muxing application or library.
+ |
+| [getTitle()](#getTitle--) | Gets the general name of the Segment.
+ |
+| [getMuxingApp()](#getMuxingApp--) | Gets the full name of the application or library followed by the version number.
+ |
+| [getWritingApp()](#getWritingApp--) | Gets the full name of the application followed by the version number.
+ |
+| [getScaledDuration()](#getScaledDuration--) | Gets the scaled duration of the SEGMENT in milliseconds.
+ |
### getSegmentUid() {#getSegmentUid--}
```
public final byte[] getSegmentUid()
```
-Gets the unique 128 bit number identifying a SEGMENT. Obviously, a file can only be referred to by another file if a SEGMENTUID is present, however, playback is possible without that UID.
+Gets the unique 128 bit number identifying a SEGMENT.
+Obviously, a file can only be referred to by another file if a SEGMENTUID is present, however, playback is possible without that UID.
+
**Returns:**
byte[] - The unique 128 bit number identifying a SEGMENT.
+
### getSegmentFilename() {#getSegmentFilename--}
```
public final String getSegmentFilename()
@@ -51,28 +65,38 @@ public final String getSegmentFilename()
Gets the filename corresponding to this Segment.
+
**Returns:**
java.lang.String - The filename corresponding to this Segment.
+
### getTimecodeScale() {#getTimecodeScale--}
```
public final long getTimecodeScale()
```
-Gets the timecode scale value. Each scaled timecode in a MATROSKA file is multiplied by TIMECODESCALE to obtain the timecode in nanoseconds. Note that not all timecodes are scaled!
+Gets the timecode scale value.
+Each scaled timecode in a MATROSKA file is multiplied by TIMECODESCALE to obtain the timecode in nanoseconds. Note that not all timecodes are scaled!
+
**Returns:**
long - The timecode scale value.
+
### getDuration() {#getDuration--}
```
public final Double getDuration()
```
-Gets the duration of the SEGMENT. Please see TimecodeScale for more information.
+Gets the duration of the SEGMENT.
+Please see
+TimecodeScale
+ for more information.
+
**Returns:**
java.lang.Double - The duration of the SEGMENT.
+
### getDateUtc() {#getDateUtc--}
```
public final Date getDateUtc()
@@ -81,8 +105,10 @@ public final Date getDateUtc()
Gets the date and time that the Segment was created by the muxing application or library.
+
**Returns:**
java.util.Date - The date and time that the Segment was created by the muxing application or library.
+
### getTitle() {#getTitle--}
```
public final String getTitle()
@@ -91,8 +117,10 @@ public final String getTitle()
Gets the general name of the Segment.
+
**Returns:**
java.lang.String - The general name of the Segment.
+
### getMuxingApp() {#getMuxingApp--}
```
public final String getMuxingApp()
@@ -101,8 +129,10 @@ public final String getMuxingApp()
Gets the full name of the application or library followed by the version number.
+
**Returns:**
java.lang.String - The full name of the application or library followed by the version number.
+
### getWritingApp() {#getWritingApp--}
```
public final String getWritingApp()
@@ -111,8 +141,10 @@ public final String getWritingApp()
Gets the full name of the application followed by the version number.
+
**Returns:**
java.lang.String - The full name of the application followed by the version number.
+
### getScaledDuration() {#getScaledDuration--}
```
public final Double getScaledDuration()
@@ -121,5 +153,7 @@ public final Double getScaledDuration()
Gets the scaled duration of the SEGMENT in milliseconds.
+
**Returns:**
java.lang.Double - The scaled duration of the SEGMENT in milliseconds.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskasimpletag/_index.md b/english/java/com.groupdocs.metadata.core/matroskasimpletag/_index.md
index 5c9fffba65..3c9a8cbf93 100644
--- a/english/java/com.groupdocs.metadata.core/matroskasimpletag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskasimpletag/_index.md
@@ -14,9 +14,11 @@ public class MatroskaSimpleTag extends MatroskaBasePackage
Represents general information about the target in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
diff --git a/english/java/com.groupdocs.metadata.core/matroskasubtitle/_index.md b/english/java/com.groupdocs.metadata.core/matroskasubtitle/_index.md
index 3da9d831d6..9dc49ed8a3 100644
--- a/english/java/com.groupdocs.metadata.core/matroskasubtitle/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskasubtitle/_index.md
@@ -14,19 +14,24 @@ public class MatroskaSubtitle extends MatroskaBasePackage
Represents subtitle metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getTimecode()](#getTimecode--) | Gets the time code. |
-| [getDuration()](#getDuration--) | Gets the duration. |
-| [getText()](#getText--) | Gets the subtitle text. |
+| [getTimecode()](#getTimecode--) | Gets the time code.
+ |
+| [getDuration()](#getDuration--) | Gets the duration.
+ |
+| [getText()](#getText--) | Gets the subtitle text.
+ |
### getTimecode() {#getTimecode--}
```
public final double getTimecode()
@@ -35,8 +40,10 @@ public final double getTimecode()
Gets the time code.
+
**Returns:**
double - The time code.
+
### getDuration() {#getDuration--}
```
public final double getDuration()
@@ -45,8 +52,10 @@ public final double getDuration()
Gets the duration.
+
**Returns:**
double - The duration.
+
### getText() {#getText--}
```
public final String getText()
@@ -55,5 +64,7 @@ public final String getText()
Gets the subtitle text.
+
**Returns:**
java.lang.String - The subtitle text.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskasubtitletrack/_index.md b/english/java/com.groupdocs.metadata.core/matroskasubtitletrack/_index.md
index 41082f12e2..807f19f2bb 100644
--- a/english/java/com.groupdocs.metadata.core/matroskasubtitletrack/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskasubtitletrack/_index.md
@@ -14,17 +14,20 @@ public class MatroskaSubtitleTrack extends MatroskaTrack
Represents subtitle metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getSubtitles()](#getSubtitles--) | Gets the subtitles. |
+| [getSubtitles()](#getSubtitles--) | Gets the subtitles.
+ |
### getSubtitles() {#getSubtitles--}
```
public final MatroskaSubtitle[] getSubtitles()
@@ -33,5 +36,7 @@ public final MatroskaSubtitle[] getSubtitles()
Gets the subtitles.
+
**Returns:**
com.groupdocs.metadata.core.MatroskaSubtitle[] - The subtitles.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskatag/_index.md b/english/java/com.groupdocs.metadata.core/matroskatag/_index.md
index 0f17b2597b..b4606c23d8 100644
--- a/english/java/com.groupdocs.metadata.core/matroskatag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskatag/_index.md
@@ -14,20 +14,26 @@ public class MatroskaTag extends MatroskaBasePackage
Represents metadata describing Tracks, Editions, Chapters, Attachments, or the Segment as a whole in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getTargetTypeValue()](#getTargetTypeValue--) | Gets the number to indicate the logical level of the target. |
-| [getTargetType()](#getTargetType--) | Gets an informational string that can be used to display the logical level of the target. |
-| [getTagTrackUid()](#getTagTrackUid--) | Gets a unique ID to identify the Track(s) the tags belong to. |
-| [getSimpleTags()](#getSimpleTags--) | Gets the general information about the target. |
+| [getTargetTypeValue()](#getTargetTypeValue--) | Gets the number to indicate the logical level of the target.
+ |
+| [getTargetType()](#getTargetType--) | Gets an informational string that can be used to display the logical level of the target.
+ |
+| [getTagTrackUid()](#getTagTrackUid--) | Gets a unique ID to identify the Track(s) the tags belong to.
+ |
+| [getSimpleTags()](#getSimpleTags--) | Gets the general information about the target.
+ |
### getTargetTypeValue() {#getTargetTypeValue--}
```
public final MatroskaTargetTypeValue getTargetTypeValue()
@@ -36,28 +42,36 @@ public final MatroskaTargetTypeValue getTargetTypeValue()
Gets the number to indicate the logical level of the target.
+
**Returns:**
[MatroskaTargetTypeValue](../../com.groupdocs.metadata.core/matroskatargettypevalue) - The number to indicate the logical level of the target.
+
### getTargetType() {#getTargetType--}
```
public final String getTargetType()
```
-Gets an informational string that can be used to display the logical level of the target. Like "ALBUM", "TRACK", "MOVIE", "CHAPTER", etc.
+Gets an informational string that can be used to display the logical level of the target.
+Like "ALBUM", "TRACK", "MOVIE", "CHAPTER", etc.
+
**Returns:**
java.lang.String - An informational string that can be used to display the logical level of the target.
+
### getTagTrackUid() {#getTagTrackUid--}
```
public final long getTagTrackUid()
```
-Gets a unique ID to identify the Track(s) the tags belong to. If the value is 0 at this level, the tags apply to all tracks in the Segment.
+Gets a unique ID to identify the Track(s) the tags belong to.
+If the value is 0 at this level, the tags apply to all tracks in the Segment.
+
**Returns:**
long - A unique ID to identify the Track(s) the tags belong to.
+
### getSimpleTags() {#getSimpleTags--}
```
public final MatroskaSimpleTag getSimpleTags()
@@ -66,5 +80,7 @@ public final MatroskaSimpleTag getSimpleTags()
Gets the general information about the target.
+
**Returns:**
[MatroskaSimpleTag](../../com.groupdocs.metadata.core/matroskasimpletag) - The general information about the target.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskatargettypevalue/_index.md b/english/java/com.groupdocs.metadata.core/matroskatargettypevalue/_index.md
index 1bfc176ff0..0a2b25b136 100644
--- a/english/java/com.groupdocs.metadata.core/matroskatargettypevalue/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskatargettypevalue/_index.md
@@ -16,18 +16,27 @@ public enum MatroskaTargetTypeValue extends Enum implem
```
Represents a number to indicate the logical level of the Matroska tag target.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | Undefined level. |
-| [Collection](#Collection) | COLLECTION level. |
-| [Edition](#Edition) | EDITION / ISSUE / VOLUME / OPUS / SEASON / SEQUEL level. |
-| [Album](#Album) | ALBUM / OPERA / CONCERT / MOVIE / EPISODE / CONCERT level. |
-| [Part](#Part) | PART / SESSION level. |
-| [Track](#Track) | TRACK / SONG / CHAPTER level. |
-| [Subtrack](#Subtrack) | SUBTRACK / PART / MOVEMENT / SCENE level. |
-| [Shot](#Shot) | SHOT level. |
+| [Undefined](#Undefined) | Undefined level.
+ |
+| [Collection](#Collection) | COLLECTION level.
+ |
+| [Edition](#Edition) | EDITION / ISSUE / VOLUME / OPUS / SEASON / SEQUEL level.
+ |
+| [Album](#Album) | ALBUM / OPERA / CONCERT / MOVIE / EPISODE / CONCERT level.
+ |
+| [Part](#Part) | PART / SESSION level.
+ |
+| [Track](#Track) | TRACK / SONG / CHAPTER level.
+ |
+| [Subtrack](#Subtrack) | SUBTRACK / PART / MOVEMENT / SCENE level.
+ |
+| [Shot](#Shot) | SHOT level.
+ |
## Methods
| Method | Description |
@@ -49,6 +58,7 @@ public static final MatroskaTargetTypeValue Undefined
Undefined level.
+
### Collection {#Collection}
```
public static final MatroskaTargetTypeValue Collection
@@ -57,6 +67,7 @@ public static final MatroskaTargetTypeValue Collection
COLLECTION level.
+
### Edition {#Edition}
```
public static final MatroskaTargetTypeValue Edition
@@ -65,6 +76,7 @@ public static final MatroskaTargetTypeValue Edition
EDITION / ISSUE / VOLUME / OPUS / SEASON / SEQUEL level.
+
### Album {#Album}
```
public static final MatroskaTargetTypeValue Album
@@ -73,6 +85,7 @@ public static final MatroskaTargetTypeValue Album
ALBUM / OPERA / CONCERT / MOVIE / EPISODE / CONCERT level.
+
### Part {#Part}
```
public static final MatroskaTargetTypeValue Part
@@ -81,6 +94,7 @@ public static final MatroskaTargetTypeValue Part
PART / SESSION level.
+
### Track {#Track}
```
public static final MatroskaTargetTypeValue Track
@@ -89,6 +103,7 @@ public static final MatroskaTargetTypeValue Track
TRACK / SONG / CHAPTER level.
+
### Subtrack {#Subtrack}
```
public static final MatroskaTargetTypeValue Subtrack
@@ -97,6 +112,7 @@ public static final MatroskaTargetTypeValue Subtrack
SUBTRACK / PART / MOVEMENT / SCENE level.
+
### Shot {#Shot}
```
public static final MatroskaTargetTypeValue Shot
@@ -105,6 +121,7 @@ public static final MatroskaTargetTypeValue Shot
SHOT level.
+
### values() {#values--}
```
public static MatroskaTargetTypeValue[] values()
@@ -163,6 +180,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -173,6 +191,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -188,6 +207,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -203,6 +223,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -213,5 +234,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskatrack/_index.md b/english/java/com.groupdocs.metadata.core/matroskatrack/_index.md
index f8935a8311..3a32f8f198 100644
--- a/english/java/com.groupdocs.metadata.core/matroskatrack/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskatrack/_index.md
@@ -14,46 +14,66 @@ public class MatroskaTrack extends MatroskaBasePackage
Represents track metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getTrackNumber()](#getTrackNumber--) | Gets the track number as used in the Block Header. |
-| [getTrackUid()](#getTrackUid--) | Gets the unique ID to identify the Track. |
-| [getTrackType()](#getTrackType--) | Gets the type of the track. |
-| [getFlagEnabled()](#getFlagEnabled--) | Gets the enabled flag, true if the track is usable. |
-| [getDefaultDuration()](#getDefaultDuration--) | Gets the number of nanoseconds (not scaled via MatroskaSegment.TimecodeScale ) per frame. |
-| [getName()](#getName--) | Gets the human-readable track name. |
-| [getLanguage()](#getLanguage--) | Gets the language of the track in the Matroska languages form. |
-| [getLanguageIetf()](#getLanguageIetf--) | Gets the language of the track according to BCP 47 and using the IANA Language Subtag Registry. |
-| [getCodecID()](#getCodecID--) | Gets an ID corresponding to the codec. |
-| [getCodecName()](#getCodecName--) | Gets a human-readable string specifying the codec. |
+| [getTrackNumber()](#getTrackNumber--) | Gets the track number as used in the Block Header.
+ |
+| [getTrackUid()](#getTrackUid--) | Gets the unique ID to identify the Track.
+ |
+| [getTrackType()](#getTrackType--) | Gets the type of the track.
+ |
+| [getFlagEnabled()](#getFlagEnabled--) | Gets the enabled flag, true if the track is usable.
+ |
+| [getDefaultDuration()](#getDefaultDuration--) | Gets the number of nanoseconds (not scaled via
+MatroskaSegment.TimecodeScale
+) per frame.
+ |
+| [getName()](#getName--) | Gets the human-readable track name.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language of the track in the Matroska languages form.
+ |
+| [getLanguageIetf()](#getLanguageIetf--) | Gets the language of the track according to BCP 47 and using the IANA Language Subtag Registry.
+ |
+| [getCodecID()](#getCodecID--) | Gets an ID corresponding to the codec.
+ |
+| [getCodecName()](#getCodecName--) | Gets a human-readable string specifying the codec.
+ |
### getTrackNumber() {#getTrackNumber--}
```
public final long getTrackNumber()
```
-Gets the track number as used in the Block Header. Using more than 127 tracks is not encouraged, though the design allows an unlimited number.
+Gets the track number as used in the Block Header.
+Using more than 127 tracks is not encouraged, though the design allows an unlimited number.
+
**Returns:**
long - The track number as used in the Block Header.
+
### getTrackUid() {#getTrackUid--}
```
public final long getTrackUid()
```
-Gets the unique ID to identify the Track. This SHOULD be kept the same when making a direct stream copy of the Track to another file.
+Gets the unique ID to identify the Track.
+This SHOULD be kept the same when making a direct stream copy of the Track to another file.
+
**Returns:**
long - The unique ID to identify the Track.
+
### getTrackType() {#getTrackType--}
```
public final MatroskaTrackType getTrackType()
@@ -62,8 +82,10 @@ public final MatroskaTrackType getTrackType()
Gets the type of the track.
+
**Returns:**
[MatroskaTrackType](../../com.groupdocs.metadata.core/matroskatracktype) - The type of the track.
+
### getFlagEnabled() {#getFlagEnabled--}
```
public final boolean getFlagEnabled()
@@ -72,22 +94,33 @@ public final boolean getFlagEnabled()
Gets the enabled flag, true if the track is usable.
+
**Returns:**
boolean - The enabled flag.
+
### getDefaultDuration() {#getDefaultDuration--}
```
public final Long getDefaultDuration()
```
-Gets the number of nanoseconds (not scaled via MatroskaSegment.TimecodeScale ) per frame.
+Gets the number of nanoseconds (not scaled via
+MatroskaSegment.TimecodeScale
+) per frame.
+
**Returns:**
java.lang.Long - The number of nanoseconds (not scaled via MatroskaSegment.TimecodeScale ) per frame.
---------------------
+
+
+*** ** * ** ***
Note: 'frame' in the Matroska sense -- one Element put into a (Simple)Block.
+
+
+
+
### getName() {#getName--}
```
public final String getName()
@@ -96,32 +129,49 @@ public final String getName()
Gets the human-readable track name.
+
**Returns:**
java.lang.String - The human-readable track name.
+
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
```
-Gets the language of the track in the Matroska languages form. This Element MUST be ignored if the LanguageIetf Element is used in the same TrackEntry.
+Gets the language of the track in the Matroska languages form.
+This Element MUST be ignored if the
+LanguageIetf
+ Element is used in the same TrackEntry.
+
**Returns:**
java.lang.String - The language of the track in the Matroska languages form.
---------------------
+
+
+*** ** * ** ***
Language codes can be either the 3 letters bibliographic ISO-639-2 form (like "fre" for french), or such a language code followed by a dash and a country code for specialities in languages(like "fre-ca" for Canadian French). Country codes are the same as used for internet domains.
+
+
+
+
### getLanguageIetf() {#getLanguageIetf--}
```
public final String getLanguageIetf()
```
-Gets the language of the track according to BCP 47 and using the IANA Language Subtag Registry. If this Element is used, then any Language Elements used in the same TrackEntry MUST be ignored.
+Gets the language of the track according to BCP 47 and using the IANA Language Subtag Registry.
+If this Element is used, then any
+Language
+ Elements used in the same TrackEntry MUST be ignored.
+
**Returns:**
java.lang.String - The language of the track according to BCP 47 and using the IANA Language Subtag Registry.
+
### getCodecID() {#getCodecID--}
```
public final String getCodecID()
@@ -130,12 +180,19 @@ public final String getCodecID()
Gets an ID corresponding to the codec.
+
**Returns:**
java.lang.String - An ID corresponding to the codec.
---------------------
+
+
+*** ** * ** ***
See the http://www.matroska.org/technical/specs/codecid/index.html codec page for more info.
+
+
+
+
### getCodecName() {#getCodecName--}
```
public final String getCodecName()
@@ -144,5 +201,7 @@ public final String getCodecName()
Gets a human-readable string specifying the codec.
+
**Returns:**
java.lang.String - A human-readable string specifying the codec.
+
diff --git a/english/java/com.groupdocs.metadata.core/matroskatracktype/_index.md b/english/java/com.groupdocs.metadata.core/matroskatracktype/_index.md
index eade8507f3..3878584672 100644
--- a/english/java/com.groupdocs.metadata.core/matroskatracktype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskatracktype/_index.md
@@ -16,18 +16,27 @@ public enum MatroskaTrackType extends Enum implements IEnumVa
```
Represents Matroska track types coded in 8 bits.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | The undefined track type. |
-| [Video](#Video) | Track is a video track. |
-| [Audio](#Audio) | Track is an audio track. |
-| [Complex](#Complex) | Track is a complex track, i.e. |
-| [Logo](#Logo) | Track is a logo track. |
-| [Subtitle](#Subtitle) | Track is a subtitle track. |
-| [Button](#Button) | Track is a button track. |
-| [Control](#Control) | Track is a control track. |
+| [Undefined](#Undefined) | The undefined track type.
+ |
+| [Video](#Video) | Track is a video track.
+ |
+| [Audio](#Audio) | Track is an audio track.
+ |
+| [Complex](#Complex) | Track is a complex track, i.e.
+ |
+| [Logo](#Logo) | Track is a logo track.
+ |
+| [Subtitle](#Subtitle) | Track is a subtitle track.
+ |
+| [Button](#Button) | Track is a button track.
+ |
+| [Control](#Control) | Track is a control track.
+ |
## Methods
| Method | Description |
@@ -49,6 +58,7 @@ public static final MatroskaTrackType Undefined
The undefined track type.
+
### Video {#Video}
```
public static final MatroskaTrackType Video
@@ -57,6 +67,7 @@ public static final MatroskaTrackType Video
Track is a video track.
+
### Audio {#Audio}
```
public static final MatroskaTrackType Audio
@@ -65,6 +76,7 @@ public static final MatroskaTrackType Audio
Track is an audio track.
+
### Complex {#Complex}
```
public static final MatroskaTrackType Complex
@@ -73,6 +85,7 @@ public static final MatroskaTrackType Complex
Track is a complex track, i.e. a combined video and audio track.
+
### Logo {#Logo}
```
public static final MatroskaTrackType Logo
@@ -81,6 +94,7 @@ public static final MatroskaTrackType Logo
Track is a logo track.
+
### Subtitle {#Subtitle}
```
public static final MatroskaTrackType Subtitle
@@ -89,6 +103,7 @@ public static final MatroskaTrackType Subtitle
Track is a subtitle track.
+
### Button {#Button}
```
public static final MatroskaTrackType Button
@@ -97,6 +112,7 @@ public static final MatroskaTrackType Button
Track is a button track.
+
### Control {#Control}
```
public static final MatroskaTrackType Control
@@ -105,6 +121,7 @@ public static final MatroskaTrackType Control
Track is a control track.
+
### values() {#values--}
```
public static MatroskaTrackType[] values()
@@ -163,6 +180,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -173,6 +191,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -188,6 +207,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -203,6 +223,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -213,5 +234,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskavideodisplayunit/_index.md b/english/java/com.groupdocs.metadata.core/matroskavideodisplayunit/_index.md
index 1aada7ff30..4083bbb4c5 100644
--- a/english/java/com.groupdocs.metadata.core/matroskavideodisplayunit/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskavideodisplayunit/_index.md
@@ -16,15 +16,21 @@ public enum MatroskaVideoDisplayUnit extends Enum impl
```
Defines how Matroska DisplayWidth and DisplayHeight are interpreted.
+
## Fields
| Field | Description |
| --- | --- |
-| [Pixels](#Pixels) | Pixels unit. |
-| [Centimeters](#Centimeters) | Centimeters unit. |
-| [Inches](#Inches) | Inches unit. |
-| [AspectRatio](#AspectRatio) | Display aspect ratio unit. |
-| [Unknown](#Unknown) | Unknown unit. |
+| [Pixels](#Pixels) | Pixels unit.
+ |
+| [Centimeters](#Centimeters) | Centimeters unit.
+ |
+| [Inches](#Inches) | Inches unit.
+ |
+| [AspectRatio](#AspectRatio) | Display aspect ratio unit.
+ |
+| [Unknown](#Unknown) | Unknown unit.
+ |
## Methods
| Method | Description |
@@ -46,6 +52,7 @@ public static final MatroskaVideoDisplayUnit Pixels
Pixels unit.
+
### Centimeters {#Centimeters}
```
public static final MatroskaVideoDisplayUnit Centimeters
@@ -54,6 +61,7 @@ public static final MatroskaVideoDisplayUnit Centimeters
Centimeters unit.
+
### Inches {#Inches}
```
public static final MatroskaVideoDisplayUnit Inches
@@ -62,6 +70,7 @@ public static final MatroskaVideoDisplayUnit Inches
Inches unit.
+
### AspectRatio {#AspectRatio}
```
public static final MatroskaVideoDisplayUnit AspectRatio
@@ -70,6 +79,7 @@ public static final MatroskaVideoDisplayUnit AspectRatio
Display aspect ratio unit.
+
### Unknown {#Unknown}
```
public static final MatroskaVideoDisplayUnit Unknown
@@ -78,6 +88,7 @@ public static final MatroskaVideoDisplayUnit Unknown
Unknown unit.
+
### values() {#values--}
```
public static MatroskaVideoDisplayUnit[] values()
@@ -136,6 +147,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -146,6 +158,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +174,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -176,6 +190,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -186,5 +201,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskavideofieldorder/_index.md b/english/java/com.groupdocs.metadata.core/matroskavideofieldorder/_index.md
index 0b725c58c0..6cbcb4d72d 100644
--- a/english/java/com.groupdocs.metadata.core/matroskavideofieldorder/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskavideofieldorder/_index.md
@@ -15,17 +15,25 @@ java.lang.Object, java.lang.Enum
public enum MatroskaVideoFieldOrder extends Enum implements IEnumValue
```
-Represents the field ordering of the Matroska video. If FlagInterlaced is not set to 1, this Element MUST be ignored.
+Represents the field ordering of the Matroska video.
+If FlagInterlaced is not set to 1, this Element MUST be ignored.
+
## Fields
| Field | Description |
| --- | --- |
-| [Progressive](#Progressive) | Progressive ordering. |
-| [Tff](#Tff) | Tiff ordering. |
-| [Undetermined](#Undetermined) | Undetermined ordering. |
-| [Bff](#Bff) | Biff ordering. |
-| [BffSwapped](#BffSwapped) | Bff (swapped) ordering. |
-| [TffSwapped](#TffSwapped) | Tff (swapped) ordering. |
+| [Progressive](#Progressive) | Progressive ordering.
+ |
+| [Tff](#Tff) | Tiff ordering.
+ |
+| [Undetermined](#Undetermined) | Undetermined ordering.
+ |
+| [Bff](#Bff) | Biff ordering.
+ |
+| [BffSwapped](#BffSwapped) | Bff (swapped) ordering.
+ |
+| [TffSwapped](#TffSwapped) | Tff (swapped) ordering.
+ |
## Methods
| Method | Description |
@@ -47,6 +55,7 @@ public static final MatroskaVideoFieldOrder Progressive
Progressive ordering.
+
### Tff {#Tff}
```
public static final MatroskaVideoFieldOrder Tff
@@ -55,6 +64,7 @@ public static final MatroskaVideoFieldOrder Tff
Tiff ordering.
+
### Undetermined {#Undetermined}
```
public static final MatroskaVideoFieldOrder Undetermined
@@ -63,6 +73,7 @@ public static final MatroskaVideoFieldOrder Undetermined
Undetermined ordering.
+
### Bff {#Bff}
```
public static final MatroskaVideoFieldOrder Bff
@@ -71,6 +82,7 @@ public static final MatroskaVideoFieldOrder Bff
Biff ordering.
+
### BffSwapped {#BffSwapped}
```
public static final MatroskaVideoFieldOrder BffSwapped
@@ -79,6 +91,7 @@ public static final MatroskaVideoFieldOrder BffSwapped
Bff (swapped) ordering.
+
### TffSwapped {#TffSwapped}
```
public static final MatroskaVideoFieldOrder TffSwapped
@@ -87,6 +100,7 @@ public static final MatroskaVideoFieldOrder TffSwapped
Tff (swapped) ordering.
+
### values() {#values--}
```
public static MatroskaVideoFieldOrder[] values()
@@ -145,6 +159,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -155,6 +170,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -170,6 +186,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -185,6 +202,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -195,5 +213,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskavideoflaginterlaced/_index.md b/english/java/com.groupdocs.metadata.core/matroskavideoflaginterlaced/_index.md
index 9bb8b56cf6..c809574b52 100644
--- a/english/java/com.groupdocs.metadata.core/matroskavideoflaginterlaced/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskavideoflaginterlaced/_index.md
@@ -15,14 +15,19 @@ java.lang.Object, java.lang.Enum
public enum MatroskaVideoFlagInterlaced extends Enum implements IEnumValue
```
-Represents a flag to declare if the Matroska video is known to be progressive or interlaced and if applicable to declare details about the interlacement.
+Represents a flag to declare if the Matroska video is known to be progressive or interlaced
+and if applicable to declare details about the interlacement.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undetermined](#Undetermined) | Undetermined flag. |
-| [Interlaced](#Interlaced) | Interlaced flag. |
-| [Progressive](#Progressive) | Progressive flag. |
+| [Undetermined](#Undetermined) | Undetermined flag.
+ |
+| [Interlaced](#Interlaced) | Interlaced flag.
+ |
+| [Progressive](#Progressive) | Progressive flag.
+ |
## Methods
| Method | Description |
@@ -44,6 +49,7 @@ public static final MatroskaVideoFlagInterlaced Undetermined
Undetermined flag.
+
### Interlaced {#Interlaced}
```
public static final MatroskaVideoFlagInterlaced Interlaced
@@ -52,6 +58,7 @@ public static final MatroskaVideoFlagInterlaced Interlaced
Interlaced flag.
+
### Progressive {#Progressive}
```
public static final MatroskaVideoFlagInterlaced Progressive
@@ -60,6 +67,7 @@ public static final MatroskaVideoFlagInterlaced Progressive
Progressive flag.
+
### values() {#values--}
```
public static MatroskaVideoFlagInterlaced[] values()
@@ -118,6 +126,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +137,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +153,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +169,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +180,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskavideostereomode/_index.md b/english/java/com.groupdocs.metadata.core/matroskavideostereomode/_index.md
index 104e9c9e3f..b1b3a4be27 100644
--- a/english/java/com.groupdocs.metadata.core/matroskavideostereomode/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskavideostereomode/_index.md
@@ -16,25 +16,41 @@ public enum MatroskaVideoStereoMode extends Enum implem
```
Represents Matroska Stereo-3D video modes.
+
## Fields
| Field | Description |
| --- | --- |
-| [Mono](#Mono) | Mono mode. |
-| [SideBySideLeft](#SideBySideLeft) | Side by side (left eye first) video mode. |
-| [TopBottomRight](#TopBottomRight) | Top - bottom (right eye is first) video mode. |
-| [TopBottomLeft](#TopBottomLeft) | Top - bottom (left eye is first) video mode. |
-| [CheckboardRight](#CheckboardRight) | Checkboard (right eye is first) video mode. |
-| [CheckboardLleft](#CheckboardLleft) | Checkboard (left eye is first) video mode. |
-| [RowInterleavedRight](#RowInterleavedRight) | Row interleaved (right eye is first) video mode. |
-| [RowInterleavedLeft](#RowInterleavedLeft) | Row interleaved (left eye is first) video mode. |
-| [ColumnInterleavedRight](#ColumnInterleavedRight) | Column interleaved (right eye is first) video mode. |
-| [ColumnInterleavedLeft](#ColumnInterleavedLeft) | Column interleaved (left eye is first) video mode. |
-| [AnaglyphCyanRed](#AnaglyphCyanRed) | Anaglyph (cyan/red) video mode. |
-| [SideBySideRight](#SideBySideRight) | Side by side (right eye first) video mode. |
-| [AnaglyphGreenMagenta](#AnaglyphGreenMagenta) | Anaglyph (green/magenta) video mode. |
-| [BothEyesLacedLeft](#BothEyesLacedLeft) | Both eyes laced in one Block (left eye is first) video mode. |
-| [BothEyesLacedRight](#BothEyesLacedRight) | Both eyes laced in one Block (right eye is first) video mode. |
+| [Mono](#Mono) | Mono mode.
+ |
+| [SideBySideLeft](#SideBySideLeft) | Side by side (left eye first) video mode.
+ |
+| [TopBottomRight](#TopBottomRight) | Top - bottom (right eye is first) video mode.
+ |
+| [TopBottomLeft](#TopBottomLeft) | Top - bottom (left eye is first) video mode.
+ |
+| [CheckboardRight](#CheckboardRight) | Checkboard (right eye is first) video mode.
+ |
+| [CheckboardLleft](#CheckboardLleft) | Checkboard (left eye is first) video mode.
+ |
+| [RowInterleavedRight](#RowInterleavedRight) | Row interleaved (right eye is first) video mode.
+ |
+| [RowInterleavedLeft](#RowInterleavedLeft) | Row interleaved (left eye is first) video mode.
+ |
+| [ColumnInterleavedRight](#ColumnInterleavedRight) | Column interleaved (right eye is first) video mode.
+ |
+| [ColumnInterleavedLeft](#ColumnInterleavedLeft) | Column interleaved (left eye is first) video mode.
+ |
+| [AnaglyphCyanRed](#AnaglyphCyanRed) | Anaglyph (cyan/red) video mode.
+ |
+| [SideBySideRight](#SideBySideRight) | Side by side (right eye first) video mode.
+ |
+| [AnaglyphGreenMagenta](#AnaglyphGreenMagenta) | Anaglyph (green/magenta) video mode.
+ |
+| [BothEyesLacedLeft](#BothEyesLacedLeft) | Both eyes laced in one Block (left eye is first) video mode.
+ |
+| [BothEyesLacedRight](#BothEyesLacedRight) | Both eyes laced in one Block (right eye is first) video mode.
+ |
## Methods
| Method | Description |
@@ -56,6 +72,7 @@ public static final MatroskaVideoStereoMode Mono
Mono mode.
+
### SideBySideLeft {#SideBySideLeft}
```
public static final MatroskaVideoStereoMode SideBySideLeft
@@ -64,6 +81,7 @@ public static final MatroskaVideoStereoMode SideBySideLeft
Side by side (left eye first) video mode.
+
### TopBottomRight {#TopBottomRight}
```
public static final MatroskaVideoStereoMode TopBottomRight
@@ -72,6 +90,7 @@ public static final MatroskaVideoStereoMode TopBottomRight
Top - bottom (right eye is first) video mode.
+
### TopBottomLeft {#TopBottomLeft}
```
public static final MatroskaVideoStereoMode TopBottomLeft
@@ -80,6 +99,7 @@ public static final MatroskaVideoStereoMode TopBottomLeft
Top - bottom (left eye is first) video mode.
+
### CheckboardRight {#CheckboardRight}
```
public static final MatroskaVideoStereoMode CheckboardRight
@@ -88,6 +108,7 @@ public static final MatroskaVideoStereoMode CheckboardRight
Checkboard (right eye is first) video mode.
+
### CheckboardLleft {#CheckboardLleft}
```
public static final MatroskaVideoStereoMode CheckboardLleft
@@ -96,6 +117,7 @@ public static final MatroskaVideoStereoMode CheckboardLleft
Checkboard (left eye is first) video mode.
+
### RowInterleavedRight {#RowInterleavedRight}
```
public static final MatroskaVideoStereoMode RowInterleavedRight
@@ -104,6 +126,7 @@ public static final MatroskaVideoStereoMode RowInterleavedRight
Row interleaved (right eye is first) video mode.
+
### RowInterleavedLeft {#RowInterleavedLeft}
```
public static final MatroskaVideoStereoMode RowInterleavedLeft
@@ -112,6 +135,7 @@ public static final MatroskaVideoStereoMode RowInterleavedLeft
Row interleaved (left eye is first) video mode.
+
### ColumnInterleavedRight {#ColumnInterleavedRight}
```
public static final MatroskaVideoStereoMode ColumnInterleavedRight
@@ -120,6 +144,7 @@ public static final MatroskaVideoStereoMode ColumnInterleavedRight
Column interleaved (right eye is first) video mode.
+
### ColumnInterleavedLeft {#ColumnInterleavedLeft}
```
public static final MatroskaVideoStereoMode ColumnInterleavedLeft
@@ -128,6 +153,7 @@ public static final MatroskaVideoStereoMode ColumnInterleavedLeft
Column interleaved (left eye is first) video mode.
+
### AnaglyphCyanRed {#AnaglyphCyanRed}
```
public static final MatroskaVideoStereoMode AnaglyphCyanRed
@@ -136,6 +162,7 @@ public static final MatroskaVideoStereoMode AnaglyphCyanRed
Anaglyph (cyan/red) video mode.
+
### SideBySideRight {#SideBySideRight}
```
public static final MatroskaVideoStereoMode SideBySideRight
@@ -144,6 +171,7 @@ public static final MatroskaVideoStereoMode SideBySideRight
Side by side (right eye first) video mode.
+
### AnaglyphGreenMagenta {#AnaglyphGreenMagenta}
```
public static final MatroskaVideoStereoMode AnaglyphGreenMagenta
@@ -152,6 +180,7 @@ public static final MatroskaVideoStereoMode AnaglyphGreenMagenta
Anaglyph (green/magenta) video mode.
+
### BothEyesLacedLeft {#BothEyesLacedLeft}
```
public static final MatroskaVideoStereoMode BothEyesLacedLeft
@@ -160,6 +189,7 @@ public static final MatroskaVideoStereoMode BothEyesLacedLeft
Both eyes laced in one Block (left eye is first) video mode.
+
### BothEyesLacedRight {#BothEyesLacedRight}
```
public static final MatroskaVideoStereoMode BothEyesLacedRight
@@ -168,6 +198,7 @@ public static final MatroskaVideoStereoMode BothEyesLacedRight
Both eyes laced in one Block (right eye is first) video mode.
+
### values() {#values--}
```
public static MatroskaVideoStereoMode[] values()
@@ -226,6 +257,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -236,6 +268,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -251,6 +284,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -266,6 +300,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -276,5 +311,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/matroskavideotrack/_index.md b/english/java/com.groupdocs.metadata.core/matroskavideotrack/_index.md
index e9ec5a3460..fb8d6ec64c 100644
--- a/english/java/com.groupdocs.metadata.core/matroskavideotrack/_index.md
+++ b/english/java/com.groupdocs.metadata.core/matroskavideotrack/_index.md
@@ -14,29 +14,48 @@ public class MatroskaVideoTrack extends MatroskaTrack
Represents video metadata in a Matroska video.
+
**Learn more**
- * [Working with metadata in Matroska (MKV) files][Working with metadata in Matroska _MKV_ files]
+* [Working with metadata in Matroska (MKV) files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files)
+
+
-[Working with metadata in Matroska _MKV_ files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Matroska+%28MKV%29+files
## Methods
| Method | Description |
| --- | --- |
-| [getFlagInterlaced()](#getFlagInterlaced--) | Gets a flag to declare if the video is known to be progressive or interlaced and if applicable to declare details about the interlacement. |
-| [getFieldOrder()](#getFieldOrder--) | Gets declare the field ordering of the video. |
-| [getStereoMode()](#getStereoMode--) | Gets the stereo-3D video mode. |
-| [getAlphaMode()](#getAlphaMode--) | Gets the alpha Video Mode. |
-| [getPixelWidth()](#getPixelWidth--) | Gets the width of the encoded video frames in pixels. |
-| [getPixelHeight()](#getPixelHeight--) | Gets the height of the encoded video frames in pixels. |
-| [getPixelCropBottom()](#getPixelCropBottom--) | Gets the number of video pixels to remove at the bottom of the image. |
-| [getPixelCropTop()](#getPixelCropTop--) | Gets the number of video pixels to remove at the top of the image. |
-| [getPixelCropLeft()](#getPixelCropLeft--) | Gets the number of video pixels to remove on the left of the image. |
-| [getPixelCropRight()](#getPixelCropRight--) | Gets the number of video pixels to remove on the right of the image. |
-| [getDisplayWidth()](#getDisplayWidth--) | Gets the width of the video frames to display. |
-| [getDisplayHeight()](#getDisplayHeight--) | Gets the height of the video frames to display. |
-| [getDisplayUnit()](#getDisplayUnit--) | Gets the how DisplayWidth and DisplayHeight are interpreted. |
+| [getFlagInterlaced()](#getFlagInterlaced--) | Gets a flag to declare if the video is known to be progressive or interlaced and if applicable to declare details about the interlacement.
+ |
+| [getFieldOrder()](#getFieldOrder--) | Gets declare the field ordering of the video.
+ |
+| [getStereoMode()](#getStereoMode--) | Gets the stereo-3D video mode.
+ |
+| [getAlphaMode()](#getAlphaMode--) | Gets the alpha Video Mode.
+ |
+| [getPixelWidth()](#getPixelWidth--) | Gets the width of the encoded video frames in pixels.
+ |
+| [getPixelHeight()](#getPixelHeight--) | Gets the height of the encoded video frames in pixels.
+ |
+| [getPixelCropBottom()](#getPixelCropBottom--) | Gets the number of video pixels to remove at the bottom of the image.
+ |
+| [getPixelCropTop()](#getPixelCropTop--) | Gets the number of video pixels to remove at the top of the image.
+ |
+| [getPixelCropLeft()](#getPixelCropLeft--) | Gets the number of video pixels to remove on the left of the image.
+ |
+| [getPixelCropRight()](#getPixelCropRight--) | Gets the number of video pixels to remove on the right of the image.
+ |
+| [getDisplayWidth()](#getDisplayWidth--) | Gets the width of the video frames to display.
+ |
+| [getDisplayHeight()](#getDisplayHeight--) | Gets the height of the video frames to display.
+ |
+| [getDisplayUnit()](#getDisplayUnit--) | Gets the how
+DisplayWidth
+and
+DisplayHeight
+ are interpreted.
+ |
### getFlagInterlaced() {#getFlagInterlaced--}
```
public final MatroskaVideoFlagInterlaced getFlagInterlaced()
@@ -45,18 +64,23 @@ public final MatroskaVideoFlagInterlaced getFlagInterlaced()
Gets a flag to declare if the video is known to be progressive or interlaced and if applicable to declare details about the interlacement.
+
**Returns:**
[MatroskaVideoFlagInterlaced](../../com.groupdocs.metadata.core/matroskavideoflaginterlaced) - A flag to declare if the video is known to be progressive or interlaced and if applicable to declare details about the interlacement.
+
### getFieldOrder() {#getFieldOrder--}
```
public final MatroskaVideoFieldOrder getFieldOrder()
```
-Gets declare the field ordering of the video. If FlagInterlaced is not set to 1, this Element MUST be ignored.
+Gets declare the field ordering of the video.
+If FlagInterlaced is not set to 1, this Element MUST be ignored.
+
**Returns:**
[MatroskaVideoFieldOrder](../../com.groupdocs.metadata.core/matroskavideofieldorder) - Declare the field ordering of the video.
+
### getStereoMode() {#getStereoMode--}
```
public final MatroskaVideoStereoMode getStereoMode()
@@ -65,18 +89,21 @@ public final MatroskaVideoStereoMode getStereoMode()
Gets the stereo-3D video mode.
+
**Returns:**
[MatroskaVideoStereoMode](../../com.groupdocs.metadata.core/matroskavideostereomode) - The stereo-3D video mode.
+
### getAlphaMode() {#getAlphaMode--}
```
public final Long getAlphaMode()
```
-Gets the alpha Video Mode. Presence of this Element indicates that the BlockAdditional Element could contain Alpha data.
-
+Gets the alpha Video Mode.
+Presence of this Element indicates that the BlockAdditional Element could contain Alpha data.
Value: The alpha Video Mode.
+
**Returns:**
java.lang.Long
### getPixelWidth() {#getPixelWidth--}
@@ -87,8 +114,10 @@ public final long getPixelWidth()
Gets the width of the encoded video frames in pixels.
+
**Returns:**
long - The width of the encoded video frames in pixels.
+
### getPixelHeight() {#getPixelHeight--}
```
public final long getPixelHeight()
@@ -97,8 +126,10 @@ public final long getPixelHeight()
Gets the height of the encoded video frames in pixels.
+
**Returns:**
long - The height of the encoded video frames in pixels.
+
### getPixelCropBottom() {#getPixelCropBottom--}
```
public final long getPixelCropBottom()
@@ -107,8 +138,10 @@ public final long getPixelCropBottom()
Gets the number of video pixels to remove at the bottom of the image.
+
**Returns:**
long - The number of video pixels to remove at the bottom of the image.
+
### getPixelCropTop() {#getPixelCropTop--}
```
public final long getPixelCropTop()
@@ -117,8 +150,10 @@ public final long getPixelCropTop()
Gets the number of video pixels to remove at the top of the image.
+
**Returns:**
long - The number of video pixels to remove at the top of the image.
+
### getPixelCropLeft() {#getPixelCropLeft--}
```
public final long getPixelCropLeft()
@@ -127,8 +162,10 @@ public final long getPixelCropLeft()
Gets the number of video pixels to remove on the left of the image.
+
**Returns:**
long - The number of video pixels to remove on the left of the image.
+
### getPixelCropRight() {#getPixelCropRight--}
```
public final long getPixelCropRight()
@@ -137,35 +174,49 @@ public final long getPixelCropRight()
Gets the number of video pixels to remove on the right of the image.
+
**Returns:**
long - The number of video pixels to remove on the right of the image.
+
### getDisplayWidth() {#getDisplayWidth--}
```
public final Long getDisplayWidth()
```
-Gets the width of the video frames to display. Applies to the video frame after cropping (PixelCrop\* Elements).
+Gets the width of the video frames to display.
+Applies to the video frame after cropping (PixelCrop\* Elements).
+
**Returns:**
java.lang.Long - The width of the video frames to display.
+
### getDisplayHeight() {#getDisplayHeight--}
```
public final Long getDisplayHeight()
```
-Gets the height of the video frames to display. Applies to the video frame after cropping (PixelCrop\* Elements).
+Gets the height of the video frames to display.
+Applies to the video frame after cropping (PixelCrop\* Elements).
+
**Returns:**
java.lang.Long - The height of the video frames to display.
+
### getDisplayUnit() {#getDisplayUnit--}
```
public final MatroskaVideoDisplayUnit getDisplayUnit()
```
-Gets the how DisplayWidth and DisplayHeight are interpreted.
+Gets the how
+DisplayWidth
+and
+DisplayHeight
+ are interpreted.
+
**Returns:**
[MatroskaVideoDisplayUnit](../../com.groupdocs.metadata.core/matroskavideodisplayunit) - The how DisplayWidth and DisplayHeight are interpreted.
+
diff --git a/english/java/com.groupdocs.metadata.core/metadatapackage/_index.md b/english/java/com.groupdocs.metadata.core/metadatapackage/_index.md
index 5ed91b2bbf..742ad687d3 100644
--- a/english/java/com.groupdocs.metadata.core/metadatapackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/metadatapackage/_index.md
@@ -16,23 +16,39 @@ public abstract class MetadataPackage implements Iterable
```
Represents base abstraction for a metadata package.
+
## Methods
| Method | Description |
| --- | --- |
-| [getMetadataType()](#getMetadataType--) | Gets the metadata type. |
-| [getKeys()](#getKeys--) | Gets a collection of the metadata property names. |
-| [get_Item(String propertyName)](#get-Item-java.lang.String-) | Gets the MetadataProperty with the specified name. |
-| [getPropertyDescriptors()](#getPropertyDescriptors--) | Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine. |
-| [iterator()](#iterator--) | Returns an enumerator that iterates through the collection. |
-| [contains(String propertyName)](#contains-java.lang.String-) | Determines whether the package contains a metadata property with the specified name. |
-| [getCount()](#getCount--) | Gets the number of metadata properties. |
-| [findProperties(Specification specification)](#findProperties-com.groupdocs.metadata.search.Specification-) | Finds the metadata properties satisfying a specification. |
-| [updateProperties(Specification specification, PropertyValue value)](#updateProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Updates known metadata properties satisfying a specification. |
-| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification. |
-| [addProperties(Specification specification, PropertyValue value)](#addProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Adds known metadata properties satisfying the specification. |
-| [setProperties(Specification specification, PropertyValue value)](#setProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Sets known metadata properties satisfying the specification. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [getMetadataType()](#getMetadataType--) | Gets the metadata type.
+ |
+| [getKeys()](#getKeys--) | Gets a collection of the metadata property names.
+ |
+| [get_Item(String propertyName)](#get-Item-java.lang.String-) | Gets the
+MetadataProperty
+ with the specified name.
+ |
+| [getPropertyDescriptors()](#getPropertyDescriptors--) | Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
+ |
+| [iterator()](#iterator--) | Returns an enumerator that iterates through the collection.
+ |
+| [contains(String propertyName)](#contains-java.lang.String-) | Determines whether the package contains a metadata property with the specified name.
+ |
+| [getCount()](#getCount--) | Gets the number of metadata properties.
+ |
+| [findProperties(Specification specification)](#findProperties-com.groupdocs.metadata.search.Specification-) | Finds the metadata properties satisfying a specification.
+ |
+| [updateProperties(Specification specification, PropertyValue value)](#updateProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Updates known metadata properties satisfying a specification.
+ |
+| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification.
+ |
+| [addProperties(Specification specification, PropertyValue value)](#addProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Adds known metadata properties satisfying the specification.
+ |
+| [setProperties(Specification specification, PropertyValue value)](#setProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Sets known metadata properties satisfying the specification.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
### getMetadataType() {#getMetadataType--}
```
public final MetadataType getMetadataType()
@@ -41,8 +57,10 @@ public final MetadataType getMetadataType()
Gets the metadata type.
+
**Returns:**
[MetadataType](../../com.groupdocs.metadata.core/metadatatype) - The type of the metadata package.
+
### getKeys() {#getKeys--}
```
public final IReadOnlyList getKeys()
@@ -51,23 +69,30 @@ public final IReadOnlyList getKeys()
Gets a collection of the metadata property names.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection of the metadata property names.
+
### get_Item(String propertyName) {#get-Item-java.lang.String-}
```
public final MetadataProperty get_Item(String propertyName)
```
-Gets the MetadataProperty with the specified name.
+Gets the
+MetadataProperty
+ with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The name of the metadata property to be found. Value: The appropriate MetadataProperty . |
+| propertyName | java.lang.String | The name of the metadata property to be found. Value: The appropriate MetadataProperty .
+ |
**Returns:**
[MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) - The MetadataProperty if found; otherwise, null.
+
### getPropertyDescriptors() {#getPropertyDescriptors--}
```
public final IReadOnlyList getPropertyDescriptors()
@@ -76,8 +101,10 @@ public final IReadOnlyList getPropertyDescriptors()
Gets a collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection of descriptors that contain information about properties accessible through the GroupDocs.Metadata search engine.
+
### iterator() {#iterator--}
```
public final Iterator iterator()
@@ -86,8 +113,10 @@ public final Iterator iterator()
Returns an enumerator that iterates through the collection.
+
**Returns:**
java.util.Iterator - An enumerator that can be used to iterate through the collection.
+
### contains(String propertyName) {#contains-java.lang.String-}
```
public final boolean contains(String propertyName)
@@ -96,13 +125,16 @@ public final boolean contains(String propertyName)
Determines whether the package contains a metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The name of the property to locate in the package. |
+| propertyName | java.lang.String | The name of the property to locate in the package.
+ |
**Returns:**
boolean - True if the package contains a property with the specified name; otherwise, false.
+
### getCount() {#getCount--}
```
public final int getCount()
@@ -111,30 +143,37 @@ public final int getCount()
Gets the number of metadata properties.
+
**Returns:**
int - The number or metadata properties.
+
### findProperties(Specification specification) {#findProperties-com.groupdocs.metadata.search.Specification-}
```
public IReadOnlyList findProperties(Specification specification)
```
-Finds the metadata properties satisfying a specification. The search is recursive so it affects all nested packages as well.
+Finds the metadata properties satisfying a specification.
+The search is recursive so it affects all nested packages as well.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A function to test each metadata property for a condition.
+
**Learn more**
- * More examples demonstrating usages of this method: [Extracting metadata][]
+* More examples demonstrating usages of this method: [Extracting metadata](../https://docs.groupdocs.com/display/metadatajava/Extracting+metadata)
-This example demonstrates how to search for specific metadata properties using tags.
+
+This example demonstrates how to search for specific metadata properties using tags.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputPptx is an absolute or relative path to your document. Ex: @"C:\Docs\source.pptx"
> try (Metadata metadata = new Metadata(Constants.InputPptx)) {
> // Fetch all the properties satisfying the predicate:
@@ -147,40 +186,50 @@ This example demonstrates how to search for specific metadata properties using t
> }
>
> ```
-> ```
-
+> ````
-[Extracting metadata]: https://docs.groupdocs.com/display/metadatajava/Extracting+metadata |
+ |
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection that contains properties from the package that satisfy the condition.
+
### updateProperties(Specification specification, PropertyValue value) {#updateProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-}
```
public int updateProperties(Specification specification, PropertyValue value)
```
-Updates known metadata properties satisfying a specification. The operation is recursive so it affects all nested packages as well.
+Updates known metadata properties satisfying a specification.
+The operation is recursive so it affects all nested packages as well.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | A new value for the filtered properties.
---------------------
+
+
+*** ** * ** ***
Please note that GroupDocs.Metadata implicitly checks the type of each filtered property. It's impossible to update a property with a value having an inappropriate type.
+
+
+
**Learn more**
- * More examples demonstrating usages of this method: [Updating metadata][]
+* More examples demonstrating usages of this method: [Updating metadata](../https://docs.groupdocs.com/display/metadatajava/Updating+metadata)
-This example demonstrates how to update existing metadata properties by various criteria regardless of the file format.
+
+This example demonstrates how to update existing metadata properties by various criteria regardless of the file format.
+>
+> ````
> ```
-> ```
->
+>
> public class UpdatingMetadata {
> public static void run() {
> Date threeDaysAgo = new Date(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(3));
@@ -205,17 +254,17 @@ This example demonstrates how to update existing metadata properties by various
> public DateBeforeSpecification(Date date) {
> setValue(date);
> }
->
+>
> public final Date getValue() {
> return auto_Value;
> }
->
+>
> private void setValue(Date value) {
> auto_Value = value;
> }
->
+>
> private Date auto_Value;
->
+>
> public boolean isSatisfiedBy(MetadataProperty candidate) {
> Date date = candidate.getValue().toClass(Date.class);
> if (date != null) {
@@ -227,13 +276,13 @@ This example demonstrates how to update existing metadata properties by various
> }
>
> ```
-> ```
+> ````
-
-[Updating metadata]: https://docs.groupdocs.com/display/metadatajava/Updating+metadata |
+ |
**Returns:**
int - The number of affected properties.
+
### removeProperties(Specification specification) {#removeProperties-com.groupdocs.metadata.search.Specification-}
```
public int removeProperties(Specification specification)
@@ -242,25 +291,29 @@ public int removeProperties(Specification specification)
Removes metadata properties satisfying a specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+
**Learn more**
- * More examples demonstrating usages of this method: [Removing metadata][]
+* More examples demonstrating usages of this method: [Removing metadata](../https://docs.groupdocs.com/display/metadatajava/Removing+metadata)
-This example demonstrates how to remove specific metadata properties using various criteria.
+
+This example demonstrates how to remove specific metadata properties using various criteria.
+>
+> ````
> ```
-> ```
->
+>
> public class RemoveMetadataProperties {
> public static void run() {
> // Constants.InputDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx"
> try (Metadata metadata = new Metadata(Constants.InputDocx)) {
->
+>
> // Remove all the properties satisfying the predicate:
> // property contains the name of the document author OR
> // it refers to the last editor OR
@@ -269,29 +322,29 @@ This example demonstrates how to remove specific metadata properties using vario
> new ContainsTagSpecification(Tags.getPerson().getCreator()).or(
> new ContainsTagSpecification(Tags.getPerson().getEditor())).or(
> new OfTypeSpecification(MetadataPropertyType.String).and(new RemoveMetadataProperties().new WithValueSpecification("John"))));
->
+>
> System.out.println(String.format("Properties removed: %s", affected));
->
+>
> metadata.save(Constants.OutputDocx);
> }
> }
->
+>
> // Define your own specifications to filter metadata properties
> public class WithValueSpecification extends Specification {
> public WithValueSpecification(Object value) {
> setValue(value);
> }
->
+>
> public final Object getValue() {
> return auto_Value;
> }
->
+>
> private void setValue(Object value) {
> auto_Value = value;
> }
->
+>
> private Object auto_Value;
->
+>
> public boolean isSatisfiedBy(MetadataProperty candidate) {
> return candidate.getValue().getRawValue().equals(getValue());
> }
@@ -299,36 +352,42 @@ This example demonstrates how to remove specific metadata properties using vario
> }
>
> ```
-> ```
-
+> ````
-[Removing metadata]: https://docs.groupdocs.com/display/metadatajava/Removing+metadata |
+ |
**Returns:**
int - The number of affected properties.
+
### addProperties(Specification specification, PropertyValue value) {#addProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-}
```
public int addProperties(Specification specification, PropertyValue value)
```
-Adds known metadata properties satisfying the specification. The operation is recursive so it affects all nested packages as well.
+Adds known metadata properties satisfying the specification.
+The operation is recursive so it affects all nested packages as well.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | A value for the picked properties.
+
**Learn more**
- * More examples demonstrating usages of this method: [Adding metadata][]
+* More examples demonstrating usages of this method: [Adding metadata](../https://docs.groupdocs.com/display/metadatajava/Adding+metadata)
-This example demonstrates how to add some missing metadata properties to a file regardless of its format.
+
+This example demonstrates how to add some missing metadata properties to a file regardless of its format.
+>
+> ````
> ```
-> ```
->
+>
> File folder = new File(Constants.InputPath);
> for (File file : folder.listFiles()) {
> try (Metadata metadata = new Metadata(file.getAbsolutePath())) {
@@ -348,40 +407,57 @@ This example demonstrates how to add some missing metadata properties to a file
> }
>
> ```
-> ```
+> ````
-
-[Adding metadata]: https://docs.groupdocs.com/display/metadatajava/Adding+metadata |
+ |
**Returns:**
int - The number of affected properties.
+
### setProperties(Specification specification, PropertyValue value) {#setProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-}
```
public int setProperties(Specification specification, PropertyValue value)
```
-Sets known metadata properties satisfying the specification. The operation is recursive so it affects all nested packages as well. This method is a combination of AddProperties and UpdateProperties . If an existing property satisfies the specification its value is updated. If there is a known property missing in the package that satisfies the specification it is added to the package.
+Sets known metadata properties satisfying the specification.
+The operation is recursive so it affects all nested packages as well.
+This method is a combination of
+AddProperties
+ and
+UpdateProperties
+.
+If an existing property satisfies the specification its value is updated.
+If there is a known property missing in the package that satisfies the specification it is added to the package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | A new value for the filtered properties.
---------------------
+
+
+*** ** * ** ***
Please note that GroupDocs.Metadata implicitly checks the type of each filtered property. It's impossible to set a property with a value having inappropriate type.
+
+
+
**Learn more**
- * More examples demonstrating usages of this method: [Set metadata properties][]
+* More examples demonstrating usages of this method: [Set metadata properties](../https://docs.groupdocs.com/display/metadatajava/Set+metadata+properties)
-This example demonstrates how to set specific metadata properties using different criteria.
+
+This example demonstrates how to set specific metadata properties using different criteria.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputVsdx is an absolute or relative path to your document. Ex: @"C:\Docs\source.vsdx"
> try (Metadata metadata = new Metadata(Constants.InputVsdx)) {
> // Set the value of each property that satisfies the predicate:
@@ -394,33 +470,38 @@ This example demonstrates how to set specific metadata properties using differen
> }
>
> ```
-> ```
+> ````
-
-[Set metadata properties]: https://docs.groupdocs.com/display/metadatajava/Set+metadata+properties |
+ |
**Returns:**
int - The number of affected properties.
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
**Learn more**
- * More examples demonstrating usages of this method: [Clean metadata][]
+* More examples demonstrating usages of this method: [Clean metadata](../https://docs.groupdocs.com/display/metadatajava/Clean+metadata)
-This example demonstrates how to remove all detected metadata packages/properties from a file.
+
+This example demonstrates how to remove all detected metadata packages/properties from a file.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputPdf is an absolute or relative path to your document. Ex: @"C:\Docs\source.pdf"
> try (Metadata metadata = new Metadata(Constants.InputPdf)) {
> // Remove detected metadata packages
@@ -430,7 +511,6 @@ This example demonstrates how to remove all detected metadata packages/propertie
> }
>
> ```
-> ```
+> ````
-[Clean metadata]: https://docs.groupdocs.com/display/metadatajava/Clean+metadata
diff --git a/english/java/com.groupdocs.metadata.core/metadataproperty/_index.md b/english/java/com.groupdocs.metadata.core/metadataproperty/_index.md
index 4391d20b8a..9c541a6070 100644
--- a/english/java/com.groupdocs.metadata.core/metadataproperty/_index.md
+++ b/english/java/com.groupdocs.metadata.core/metadataproperty/_index.md
@@ -13,33 +13,47 @@ public class MetadataProperty
```
Represents a metadata property.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [MetadataProperty(String name, PropertyValue value)](#MetadataProperty-java.lang.String-com.groupdocs.metadata.core.PropertyValue-) | Initializes a new instance of the MetadataProperty class. |
+| [MetadataProperty(String name, PropertyValue value)](#MetadataProperty-java.lang.String-com.groupdocs.metadata.core.PropertyValue-) | Initializes a new instance of the
+MetadataProperty
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the property name. |
-| [getValue()](#getValue--) | Gets the property value. |
-| [getInterpretedValue()](#getInterpretedValue--) | Gets the interpreted property value, if available. |
-| [getDescriptor()](#getDescriptor--) | Gets the descriptor associated with the metadata property. |
-| [getTags()](#getTags--) | Gets a collection of tags associated with the property. |
+| [getName()](#getName--) | Gets the property name.
+ |
+| [getValue()](#getValue--) | Gets the property value.
+ |
+| [getInterpretedValue()](#getInterpretedValue--) | Gets the interpreted property value, if available.
+ |
+| [getDescriptor()](#getDescriptor--) | Gets the descriptor associated with the metadata property.
+ |
+| [getTags()](#getTags--) | Gets a collection of tags associated with the property.
+ |
### MetadataProperty(String name, PropertyValue value) {#MetadataProperty-java.lang.String-com.groupdocs.metadata.core.PropertyValue-}
```
public MetadataProperty(String name, PropertyValue value)
```
-Initializes a new instance of the MetadataProperty class.
+Initializes a new instance of the
+MetadataProperty
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | The name of the metadata property. |
-| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | The value of the metadata property. |
+| name | java.lang.String | The name of the metadata property.
+ |
+| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | The value of the metadata property.
+ |
### getName() {#getName--}
```
@@ -49,8 +63,10 @@ public final String getName()
Gets the property name.
+
**Returns:**
java.lang.String - The property name.
+
### getValue() {#getValue--}
```
public final PropertyValue getValue()
@@ -59,18 +75,25 @@ public final PropertyValue getValue()
Gets the property value.
+
**Returns:**
[PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) - The property value.
+
### getInterpretedValue() {#getInterpretedValue--}
```
public final PropertyValue getInterpretedValue()
```
-Gets the interpreted property value, if available. The interpreted value is a user-friendly form of the original property value. For example, it returns a human-readable string instead of numeric flags and ids, if necessary, translates byte arrays to text, etc.
+Gets the interpreted property value, if available.
+The interpreted value is a user-friendly form of the original property value.
+For example, it returns a human-readable string instead of numeric flags and ids,
+if necessary, translates byte arrays to text, etc.
+
**Returns:**
[PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) - The interpreted property value, if available.
+
### getDescriptor() {#getDescriptor--}
```
public final PropertyDescriptor getDescriptor()
@@ -79,8 +102,10 @@ public final PropertyDescriptor getDescriptor()
Gets the descriptor associated with the metadata property.
+
**Returns:**
[PropertyDescriptor](../../com.groupdocs.metadata.core/propertydescriptor) - The descriptor associated with the metadata property.
+
### getTags() {#getTags--}
```
public final IReadOnlyList getTags()
@@ -89,5 +114,7 @@ public final IReadOnlyList getTags()
Gets a collection of tags associated with the property.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection of tags associated with the property.
+
diff --git a/english/java/com.groupdocs.metadata.core/metadatapropertytype/_index.md b/english/java/com.groupdocs.metadata.core/metadatapropertytype/_index.md
index 4d6be31552..f258814c52 100644
--- a/english/java/com.groupdocs.metadata.core/metadatapropertytype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/metadatapropertytype/_index.md
@@ -16,28 +16,47 @@ public enum MetadataPropertyType extends Enum implements I
```
Defines metadata property types.
+
## Fields
| Field | Description |
| --- | --- |
-| [Empty](#Empty) | Represents an empty (null) property. |
-| [String](#String) | Represents a string property. |
-| [Boolean](#Boolean) | Represents a boolean property. |
-| [DateTime](#DateTime) | Represents a date property. |
-| [TimeSpan](#TimeSpan) | Represents a time property. |
-| [Integer](#Integer) | Represents an integer property. |
-| [Long](#Long) | Represents a long integer property. |
-| [Double](#Double) | Represents a property with a double or float value. |
-| [StringArray](#StringArray) | Represents a string array property. |
-| [ByteArray](#ByteArray) | Represents a byte array property. |
-| [DoubleArray](#DoubleArray) | Represents an array of double values. |
-| [IntegerArray](#IntegerArray) | Represents an array of integer values. |
-| [LongArray](#LongArray) | Represents an array of long values. |
-| [Metadata](#Metadata) | Represents a nested metadata block. |
-| [MetadataArray](#MetadataArray) | Represents an array of nested metadata blocks. |
-| [Guid](#Guid) | Represents a global unique identifier value. |
-| [PropertyValueArray](#PropertyValueArray) | Represents a metadata property value array. |
-| [Object](#Object) | Represents a generic object property. |
+| [Empty](#Empty) | Represents an empty (null) property.
+ |
+| [String](#String) | Represents a string property.
+ |
+| [Boolean](#Boolean) | Represents a boolean property.
+ |
+| [DateTime](#DateTime) | Represents a date property.
+ |
+| [TimeSpan](#TimeSpan) | Represents a time property.
+ |
+| [Integer](#Integer) | Represents an integer property.
+ |
+| [Long](#Long) | Represents a long integer property.
+ |
+| [Double](#Double) | Represents a property with a double or float value.
+ |
+| [StringArray](#StringArray) | Represents a string array property.
+ |
+| [ByteArray](#ByteArray) | Represents a byte array property.
+ |
+| [DoubleArray](#DoubleArray) | Represents an array of double values.
+ |
+| [IntegerArray](#IntegerArray) | Represents an array of integer values.
+ |
+| [LongArray](#LongArray) | Represents an array of long values.
+ |
+| [Metadata](#Metadata) | Represents a nested metadata block.
+ |
+| [MetadataArray](#MetadataArray) | Represents an array of nested metadata blocks.
+ |
+| [Guid](#Guid) | Represents a global unique identifier value.
+ |
+| [PropertyValueArray](#PropertyValueArray) | Represents a metadata property value array.
+ |
+| [Object](#Object) | Represents a generic object property.
+ |
## Methods
| Method | Description |
@@ -59,6 +78,7 @@ public static final MetadataPropertyType Empty
Represents an empty (null) property.
+
### String {#String}
```
public static final MetadataPropertyType String
@@ -67,6 +87,7 @@ public static final MetadataPropertyType String
Represents a string property.
+
### Boolean {#Boolean}
```
public static final MetadataPropertyType Boolean
@@ -75,6 +96,7 @@ public static final MetadataPropertyType Boolean
Represents a boolean property.
+
### DateTime {#DateTime}
```
public static final MetadataPropertyType DateTime
@@ -83,6 +105,7 @@ public static final MetadataPropertyType DateTime
Represents a date property.
+
### TimeSpan {#TimeSpan}
```
public static final MetadataPropertyType TimeSpan
@@ -91,6 +114,7 @@ public static final MetadataPropertyType TimeSpan
Represents a time property.
+
### Integer {#Integer}
```
public static final MetadataPropertyType Integer
@@ -99,6 +123,7 @@ public static final MetadataPropertyType Integer
Represents an integer property.
+
### Long {#Long}
```
public static final MetadataPropertyType Long
@@ -107,6 +132,7 @@ public static final MetadataPropertyType Long
Represents a long integer property.
+
### Double {#Double}
```
public static final MetadataPropertyType Double
@@ -115,6 +141,7 @@ public static final MetadataPropertyType Double
Represents a property with a double or float value.
+
### StringArray {#StringArray}
```
public static final MetadataPropertyType StringArray
@@ -123,6 +150,7 @@ public static final MetadataPropertyType StringArray
Represents a string array property.
+
### ByteArray {#ByteArray}
```
public static final MetadataPropertyType ByteArray
@@ -131,6 +159,7 @@ public static final MetadataPropertyType ByteArray
Represents a byte array property.
+
### DoubleArray {#DoubleArray}
```
public static final MetadataPropertyType DoubleArray
@@ -139,6 +168,7 @@ public static final MetadataPropertyType DoubleArray
Represents an array of double values.
+
### IntegerArray {#IntegerArray}
```
public static final MetadataPropertyType IntegerArray
@@ -147,6 +177,7 @@ public static final MetadataPropertyType IntegerArray
Represents an array of integer values.
+
### LongArray {#LongArray}
```
public static final MetadataPropertyType LongArray
@@ -155,6 +186,7 @@ public static final MetadataPropertyType LongArray
Represents an array of long values.
+
### Metadata {#Metadata}
```
public static final MetadataPropertyType Metadata
@@ -163,6 +195,7 @@ public static final MetadataPropertyType Metadata
Represents a nested metadata block.
+
### MetadataArray {#MetadataArray}
```
public static final MetadataPropertyType MetadataArray
@@ -171,6 +204,7 @@ public static final MetadataPropertyType MetadataArray
Represents an array of nested metadata blocks.
+
### Guid {#Guid}
```
public static final MetadataPropertyType Guid
@@ -179,6 +213,7 @@ public static final MetadataPropertyType Guid
Represents a global unique identifier value.
+
### PropertyValueArray {#PropertyValueArray}
```
public static final MetadataPropertyType PropertyValueArray
@@ -187,6 +222,7 @@ public static final MetadataPropertyType PropertyValueArray
Represents a metadata property value array.
+
### Object {#Object}
```
public static final MetadataPropertyType Object
@@ -195,6 +231,7 @@ public static final MetadataPropertyType Object
Represents a generic object property.
+
### values() {#values--}
```
public static MetadataPropertyType[] values()
@@ -253,6 +290,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -263,6 +301,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -278,6 +317,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -293,6 +333,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -303,5 +344,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/metadatatype/_index.md b/english/java/com.groupdocs.metadata.core/metadatatype/_index.md
index 1ae0b4c6e2..9c664727ed 100644
--- a/english/java/com.groupdocs.metadata.core/metadatatype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/metadatatype/_index.md
@@ -16,63 +16,117 @@ public enum MetadataType extends Enum implements IEnumValue
```
Specifies the type of a metadata package.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | The type of a metadata package is undefined. |
-| [Root](#Root) | A root metadata package containing other format-specific packages. |
-| [Xmp](#Xmp) | An XMP metadata package. |
-| [Exif](#Exif) | An EXIF metadata package, |
-| [Iptc](#Iptc) | An IPTC metadata package, |
-| [DublinCore](#DublinCore) | A Dublin Core metadata package. |
-| [ImageResourceBlock](#ImageResourceBlock) | A Photoshop's native metadata package. |
-| [FileFormat](#FileFormat) | A package containing information about the format of a loaded file. |
-| [DigitalSignature](#DigitalSignature) | A package containing digital signature metadata. |
-| [Presentation](#Presentation) | A presentation metadata package. |
-| [Spreadsheet](#Spreadsheet) | A spreadsheet metadata package. |
-| [WordProcessing](#WordProcessing) | A word processing metadata package. |
-| [Diagram](#Diagram) | A diagram metadata package. |
-| [Note](#Note) | A metadata package containing information about an electronic note file. |
-| [ProjectManagement](#ProjectManagement) | A metadata package containing information about a project management file. |
-| [Pdf](#Pdf) | A PDF metadata package. |
-| [DocumentStatistics](#DocumentStatistics) | A package containing document statistics. |
-| [Psd](#Psd) | A metadata package containing information about a Photoshop document. |
-| [Jpeg2000](#Jpeg2000) | A JPEG2000 native metadata package. |
-| [Dicom](#Dicom) | A DICOM native metadata package. |
-| [Bmp](#Bmp) | A BMP native metadata package. |
-| [Wav](#Wav) | A WAV native metadata package. |
-| [ID3V1](#ID3V1) | An ID3V1 tag. |
-| [ID3V2](#ID3V2) | An ID3V2 tag. |
-| [MpegAudio](#MpegAudio) | An MPEG audio native metadata package. |
-| [Lyrics3](#Lyrics3) | A Lyrics3 metadata package. |
-| [ApeV2](#ApeV2) | An APEv2 metadata package. |
-| [Avi](#Avi) | An AVI video native metadata package. |
-| [Flv](#Flv) | An FLV video native metadata package. |
-| [Asf](#Asf) | An ASF video native metadata package. |
-| [Mov](#Mov) | A QuickTime video. |
-| [Matroska](#Matroska) | A native metadata package extracted from a video encoded with the Matroska multimedia container. |
-| [Zip](#Zip) | A native metadata package of a ZIP archive. |
-| [SevenZip](#SevenZip) | A native metadata package of a SevenZip archive. |
-| [VCard](#VCard) | A native metadata package of a VCard. |
-| [Epub](#Epub) | A native metadata package of a EPUB e-book. |
-| [OpenType](#OpenType) | An OpenType font metadata package. |
-| [Cad](#Cad) | A metadata package extracted from a CAD drawing. |
-| [Eml](#Eml) | An EML message metadata package. |
-| [Msg](#Msg) | An MSG message metadata package. |
-| [Torrent](#Torrent) | A torrent file metadata package. |
-| [Png](#Png) | A PNG image metadata package. |
-| [Dng](#Dng) | A DNG image metadata package. |
-| [Cr2](#Cr2) | A CR2 image metadata package. |
-| [Rar](#Rar) | RAR is a proprietary archive file format that supports data compression, error correction and file spanning. |
-| [Tar](#Tar) | In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes. |
-| [ThreeDS](#ThreeDS) | 3DS is one of the file formats used by the Autodesk 3ds Max 3D modeling, animation and rendering software. |
-| [Dae](#Dae) | A DAE file is a Digital Asset Exchange file format that is used for exchanging data between interactive 3D applications. |
-| [Fbx](#Fbx) | FBX (Filmbox) is a proprietary file format (.fbx) developed by Kaydara and owned by Autodesk since 2006. |
-| [Stl](#Stl) | STL is a file format native to the stereolithography CAD software created by 3D Systems.[3][4][5] Chuck Hull, the inventor of stereolithography and 3D Systems\\u2019 founder, reports that the file extension is an abbreviation for stereolithography. |
-| [Gltf](#Gltf) | A glTF (GL Transmission Format) metadata package. |
-| [Svg](#Svg) | An SVG image metadata package. |
-| [Gis](#Gis) | Gis format |
+| [Undefined](#Undefined) | The type of a metadata package is undefined.
+ |
+| [Root](#Root) | A root metadata package containing other format-specific packages.
+ |
+| [Xmp](#Xmp) | An XMP metadata package.
+ |
+| [Exif](#Exif) | An EXIF metadata package,
+ |
+| [Iptc](#Iptc) | An IPTC metadata package,
+ |
+| [DublinCore](#DublinCore) | A Dublin Core metadata package.
+ |
+| [ImageResourceBlock](#ImageResourceBlock) | A Photoshop's native metadata package.
+ |
+| [FileFormat](#FileFormat) | A package containing information about the format of a loaded file.
+ |
+| [DigitalSignature](#DigitalSignature) | A package containing digital signature metadata.
+ |
+| [Presentation](#Presentation) | A presentation metadata package.
+ |
+| [Spreadsheet](#Spreadsheet) | A spreadsheet metadata package.
+ |
+| [WordProcessing](#WordProcessing) | A word processing metadata package.
+ |
+| [Diagram](#Diagram) | A diagram metadata package.
+ |
+| [Note](#Note) | A metadata package containing information about an electronic note file.
+ |
+| [ProjectManagement](#ProjectManagement) | A metadata package containing information about a project management file.
+ |
+| [Pdf](#Pdf) | A PDF metadata package.
+ |
+| [DocumentStatistics](#DocumentStatistics) | A package containing document statistics.
+ |
+| [Psd](#Psd) | A metadata package containing information about a Photoshop document.
+ |
+| [Jpeg2000](#Jpeg2000) | A JPEG2000 native metadata package.
+ |
+| [Dicom](#Dicom) | A DICOM native metadata package.
+ |
+| [Bmp](#Bmp) | A BMP native metadata package.
+ |
+| [Wav](#Wav) | A WAV native metadata package.
+ |
+| [ID3V1](#ID3V1) | An ID3V1 tag.
+ |
+| [ID3V2](#ID3V2) | An ID3V2 tag.
+ |
+| [MpegAudio](#MpegAudio) | An MPEG audio native metadata package.
+ |
+| [Lyrics3](#Lyrics3) | A Lyrics3 metadata package.
+ |
+| [ApeV2](#ApeV2) | An APEv2 metadata package.
+ |
+| [Avi](#Avi) | An AVI video native metadata package.
+ |
+| [Flv](#Flv) | An FLV video native metadata package.
+ |
+| [Asf](#Asf) | An ASF video native metadata package.
+ |
+| [Mov](#Mov) | A QuickTime video.
+ |
+| [Matroska](#Matroska) | A native metadata package extracted from a video encoded with the Matroska multimedia container.
+ |
+| [Zip](#Zip) | A native metadata package of a ZIP archive.
+ |
+| [SevenZip](#SevenZip) | A native metadata package of a SevenZip archive.
+ |
+| [VCard](#VCard) | A native metadata package of a VCard.
+ |
+| [Epub](#Epub) | A native metadata package of a EPUB e-book.
+ |
+| [OpenType](#OpenType) | An OpenType font metadata package.
+ |
+| [Cad](#Cad) | A metadata package extracted from a CAD drawing.
+ |
+| [Eml](#Eml) | An EML message metadata package.
+ |
+| [Msg](#Msg) | An MSG message metadata package.
+ |
+| [Torrent](#Torrent) | A torrent file metadata package.
+ |
+| [Png](#Png) | A PNG image metadata package.
+ |
+| [Dng](#Dng) | A DNG image metadata package.
+ |
+| [Cr2](#Cr2) | A CR2 image metadata package.
+ |
+| [Rar](#Rar) | RAR is a proprietary archive file format that supports data compression, error correction and file spanning.
+ |
+| [Tar](#Tar) | In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
+ |
+| [ThreeDS](#ThreeDS) | 3DS is one of the file formats used by the Autodesk 3ds Max 3D modeling, animation and rendering software.
+ |
+| [Dae](#Dae) | A DAE file is a Digital Asset Exchange file format that is used for exchanging data between interactive 3D applications.
+ |
+| [Fbx](#Fbx) | FBX (Filmbox) is a proprietary file format (.fbx) developed by Kaydara and owned by Autodesk since 2006.
+ |
+| [Stl](#Stl) | STL is a file format native to the stereolithography CAD software created by 3D Systems.[3][4][5] Chuck Hull, the inventor of stereolithography and 3D Systems\\u2019 founder, reports that the file extension is an abbreviation for stereolithography.
+ |
+| [Gltf](#Gltf) | A glTF (GL Transmission Format) metadata package.
+ |
+| [Svg](#Svg) | An SVG image metadata package.
+ |
+| [Gis](#Gis) | Gis format
+ |
## Methods
| Method | Description |
@@ -94,6 +148,7 @@ public static final MetadataType Undefined
The type of a metadata package is undefined.
+
### Root {#Root}
```
public static final MetadataType Root
@@ -102,6 +157,7 @@ public static final MetadataType Root
A root metadata package containing other format-specific packages.
+
### Xmp {#Xmp}
```
public static final MetadataType Xmp
@@ -110,6 +166,7 @@ public static final MetadataType Xmp
An XMP metadata package.
+
### Exif {#Exif}
```
public static final MetadataType Exif
@@ -118,6 +175,7 @@ public static final MetadataType Exif
An EXIF metadata package,
+
### Iptc {#Iptc}
```
public static final MetadataType Iptc
@@ -126,6 +184,7 @@ public static final MetadataType Iptc
An IPTC metadata package,
+
### DublinCore {#DublinCore}
```
public static final MetadataType DublinCore
@@ -134,6 +193,7 @@ public static final MetadataType DublinCore
A Dublin Core metadata package.
+
### ImageResourceBlock {#ImageResourceBlock}
```
public static final MetadataType ImageResourceBlock
@@ -142,6 +202,7 @@ public static final MetadataType ImageResourceBlock
A Photoshop's native metadata package.
+
### FileFormat {#FileFormat}
```
public static final MetadataType FileFormat
@@ -150,6 +211,7 @@ public static final MetadataType FileFormat
A package containing information about the format of a loaded file.
+
### DigitalSignature {#DigitalSignature}
```
public static final MetadataType DigitalSignature
@@ -158,6 +220,7 @@ public static final MetadataType DigitalSignature
A package containing digital signature metadata.
+
### Presentation {#Presentation}
```
public static final MetadataType Presentation
@@ -166,6 +229,7 @@ public static final MetadataType Presentation
A presentation metadata package.
+
### Spreadsheet {#Spreadsheet}
```
public static final MetadataType Spreadsheet
@@ -174,6 +238,7 @@ public static final MetadataType Spreadsheet
A spreadsheet metadata package.
+
### WordProcessing {#WordProcessing}
```
public static final MetadataType WordProcessing
@@ -182,6 +247,7 @@ public static final MetadataType WordProcessing
A word processing metadata package.
+
### Diagram {#Diagram}
```
public static final MetadataType Diagram
@@ -190,6 +256,7 @@ public static final MetadataType Diagram
A diagram metadata package.
+
### Note {#Note}
```
public static final MetadataType Note
@@ -198,6 +265,7 @@ public static final MetadataType Note
A metadata package containing information about an electronic note file.
+
### ProjectManagement {#ProjectManagement}
```
public static final MetadataType ProjectManagement
@@ -206,6 +274,7 @@ public static final MetadataType ProjectManagement
A metadata package containing information about a project management file.
+
### Pdf {#Pdf}
```
public static final MetadataType Pdf
@@ -214,6 +283,7 @@ public static final MetadataType Pdf
A PDF metadata package.
+
### DocumentStatistics {#DocumentStatistics}
```
public static final MetadataType DocumentStatistics
@@ -222,6 +292,7 @@ public static final MetadataType DocumentStatistics
A package containing document statistics.
+
### Psd {#Psd}
```
public static final MetadataType Psd
@@ -230,6 +301,7 @@ public static final MetadataType Psd
A metadata package containing information about a Photoshop document.
+
### Jpeg2000 {#Jpeg2000}
```
public static final MetadataType Jpeg2000
@@ -238,6 +310,7 @@ public static final MetadataType Jpeg2000
A JPEG2000 native metadata package.
+
### Dicom {#Dicom}
```
public static final MetadataType Dicom
@@ -246,6 +319,7 @@ public static final MetadataType Dicom
A DICOM native metadata package.
+
### Bmp {#Bmp}
```
public static final MetadataType Bmp
@@ -254,6 +328,7 @@ public static final MetadataType Bmp
A BMP native metadata package.
+
### Wav {#Wav}
```
public static final MetadataType Wav
@@ -262,6 +337,7 @@ public static final MetadataType Wav
A WAV native metadata package.
+
### ID3V1 {#ID3V1}
```
public static final MetadataType ID3V1
@@ -270,6 +346,7 @@ public static final MetadataType ID3V1
An ID3V1 tag.
+
### ID3V2 {#ID3V2}
```
public static final MetadataType ID3V2
@@ -278,6 +355,7 @@ public static final MetadataType ID3V2
An ID3V2 tag.
+
### MpegAudio {#MpegAudio}
```
public static final MetadataType MpegAudio
@@ -286,6 +364,7 @@ public static final MetadataType MpegAudio
An MPEG audio native metadata package.
+
### Lyrics3 {#Lyrics3}
```
public static final MetadataType Lyrics3
@@ -294,6 +373,7 @@ public static final MetadataType Lyrics3
A Lyrics3 metadata package.
+
### ApeV2 {#ApeV2}
```
public static final MetadataType ApeV2
@@ -302,6 +382,7 @@ public static final MetadataType ApeV2
An APEv2 metadata package.
+
### Avi {#Avi}
```
public static final MetadataType Avi
@@ -310,6 +391,7 @@ public static final MetadataType Avi
An AVI video native metadata package.
+
### Flv {#Flv}
```
public static final MetadataType Flv
@@ -318,6 +400,7 @@ public static final MetadataType Flv
An FLV video native metadata package.
+
### Asf {#Asf}
```
public static final MetadataType Asf
@@ -326,6 +409,7 @@ public static final MetadataType Asf
An ASF video native metadata package.
+
### Mov {#Mov}
```
public static final MetadataType Mov
@@ -334,6 +418,7 @@ public static final MetadataType Mov
A QuickTime video.
+
### Matroska {#Matroska}
```
public static final MetadataType Matroska
@@ -342,6 +427,7 @@ public static final MetadataType Matroska
A native metadata package extracted from a video encoded with the Matroska multimedia container.
+
### Zip {#Zip}
```
public static final MetadataType Zip
@@ -350,6 +436,7 @@ public static final MetadataType Zip
A native metadata package of a ZIP archive.
+
### SevenZip {#SevenZip}
```
public static final MetadataType SevenZip
@@ -358,6 +445,7 @@ public static final MetadataType SevenZip
A native metadata package of a SevenZip archive.
+
### VCard {#VCard}
```
public static final MetadataType VCard
@@ -366,6 +454,7 @@ public static final MetadataType VCard
A native metadata package of a VCard.
+
### Epub {#Epub}
```
public static final MetadataType Epub
@@ -374,6 +463,7 @@ public static final MetadataType Epub
A native metadata package of a EPUB e-book.
+
### OpenType {#OpenType}
```
public static final MetadataType OpenType
@@ -382,6 +472,7 @@ public static final MetadataType OpenType
An OpenType font metadata package.
+
### Cad {#Cad}
```
public static final MetadataType Cad
@@ -390,6 +481,7 @@ public static final MetadataType Cad
A metadata package extracted from a CAD drawing.
+
### Eml {#Eml}
```
public static final MetadataType Eml
@@ -398,6 +490,7 @@ public static final MetadataType Eml
An EML message metadata package.
+
### Msg {#Msg}
```
public static final MetadataType Msg
@@ -406,16 +499,18 @@ public static final MetadataType Msg
An MSG message metadata package.
+
### Torrent {#Torrent}
```
public static final MetadataType Torrent
```
-A torrent file metadata package. Please find more information at [https://en.wikipedia.org/wiki/Torrent\_file/][https_en.wikipedia.org_wiki_Torrent_file] .
-
+A torrent file metadata package.
+Please find more information at
+
+.
-[https_en.wikipedia.org_wiki_Torrent_file]: https://en.wikipedia.org/wiki/Torrent_file/
### Png {#Png}
```
@@ -425,6 +520,7 @@ public static final MetadataType Png
A PNG image metadata package.
+
### Dng {#Dng}
```
public static final MetadataType Dng
@@ -433,6 +529,7 @@ public static final MetadataType Dng
A DNG image metadata package.
+
### Cr2 {#Cr2}
```
public static final MetadataType Cr2
@@ -441,6 +538,7 @@ public static final MetadataType Cr2
A CR2 image metadata package.
+
### Rar {#Rar}
```
public static final MetadataType Rar
@@ -449,6 +547,7 @@ public static final MetadataType Rar
RAR is a proprietary archive file format that supports data compression, error correction and file spanning.
+
### Tar {#Tar}
```
public static final MetadataType Tar
@@ -457,6 +556,7 @@ public static final MetadataType Tar
In computing, tar is a computer software utility for collecting many files into one archive file, often referred to as a tarball, for distribution or backup purposes.
+
### ThreeDS {#ThreeDS}
```
public static final MetadataType ThreeDS
@@ -465,6 +565,7 @@ public static final MetadataType ThreeDS
3DS is one of the file formats used by the Autodesk 3ds Max 3D modeling, animation and rendering software.
+
### Dae {#Dae}
```
public static final MetadataType Dae
@@ -473,6 +574,7 @@ public static final MetadataType Dae
A DAE file is a Digital Asset Exchange file format that is used for exchanging data between interactive 3D applications.
+
### Fbx {#Fbx}
```
public static final MetadataType Fbx
@@ -481,6 +583,7 @@ public static final MetadataType Fbx
FBX (Filmbox) is a proprietary file format (.fbx) developed by Kaydara and owned by Autodesk since 2006. It is used to provide interoperability between digital content creation applications. FBX is also part of Autodesk Gameware, a series of video game middleware.
+
### Stl {#Stl}
```
public static final MetadataType Stl
@@ -489,6 +592,7 @@ public static final MetadataType Stl
STL is a file format native to the stereolithography CAD software created by 3D Systems.[3][4][5] Chuck Hull, the inventor of stereolithography and 3D Systems\\u2019 founder, reports that the file extension is an abbreviation for stereolithography.
+
### Gltf {#Gltf}
```
public static final MetadataType Gltf
@@ -497,6 +601,7 @@ public static final MetadataType Gltf
A glTF (GL Transmission Format) metadata package.
+
### Svg {#Svg}
```
public static final MetadataType Svg
@@ -505,6 +610,7 @@ public static final MetadataType Svg
An SVG image metadata package.
+
### Gis {#Gis}
```
public static final MetadataType Gis
@@ -513,6 +619,7 @@ public static final MetadataType Gis
Gis format
+
### values() {#values--}
```
public static MetadataType[] values()
@@ -571,6 +678,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -581,6 +689,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -596,6 +705,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -611,6 +721,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -621,5 +732,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/metadatavalidationexception/_index.md b/english/java/com.groupdocs.metadata.core/metadatavalidationexception/_index.md
index d7c56ab542..ad4d94790f 100644
--- a/english/java/com.groupdocs.metadata.core/metadatavalidationexception/_index.md
+++ b/english/java/com.groupdocs.metadata.core/metadatavalidationexception/_index.md
@@ -13,11 +13,13 @@ public final class MetadataValidationException extends GroupDocsMetadataExceptio
```
The exception that is thrown when validation errors encountered during metadata saving.
+
## Methods
| Method | Description |
| --- | --- |
-| [getErrors()](#getErrors--) | Gets an array of the validation errors that were encountered during the last metadata saving. |
+| [getErrors()](#getErrors--) | Gets an array of the validation errors that were encountered during the last metadata saving.
+ |
### getErrors() {#getErrors--}
```
public final String[] getErrors()
@@ -26,5 +28,7 @@ public final String[] getErrors()
Gets an array of the validation errors that were encountered during the last metadata saving.
+
**Returns:**
java.lang.String[] - An array of the validation errors that were encountered during the last metadata saving.
+
diff --git a/english/java/com.groupdocs.metadata.core/movatom/_index.md b/english/java/com.groupdocs.metadata.core/movatom/_index.md
index 78d1222547..86b249f0f5 100644
--- a/english/java/com.groupdocs.metadata.core/movatom/_index.md
+++ b/english/java/com.groupdocs.metadata.core/movatom/_index.md
@@ -17,24 +17,34 @@ public final class MovAtom extends CustomPackage implements IIsoMediaBox
Represents a QuickTime atom.
+
**Learn more**
- * [Working with metadata in MOV Files][]
+* [Working with metadata in MOV Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+MOV+Files)
+
+
-[Working with metadata in MOV Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+MOV+Files
## Methods
| Method | Description |
| --- | --- |
-| [getOffset()](#getOffset--) | Gets the atom offset. |
-| [getSize()](#getSize--) | Gets the atom size in bytes. |
-| [getLongSize()](#getLongSize--) | Gets the atom size in bytes. |
-| [getType()](#getType--) | Gets the 4-characters type. |
-| [getDataOffset()](#getDataOffset--) | Gets the data offset. |
-| [getDataSize()](#getDataSize--) | Gets the data size in bytes. |
-| [hasExtendedSize()](#hasExtendedSize--) | Gets a value indicating whether the extended size field was used to store the atom data. |
-| [getAtoms()](#getAtoms--) | Gets an array of [MovAtom](../../com.groupdocs.metadata.core/movatom) atoms. |
+| [getOffset()](#getOffset--) | Gets the atom offset.
+ |
+| [getSize()](#getSize--) | Gets the atom size in bytes.
+ |
+| [getLongSize()](#getLongSize--) | Gets the atom size in bytes.
+ |
+| [getType()](#getType--) | Gets the 4-characters type.
+ |
+| [getDataOffset()](#getDataOffset--) | Gets the data offset.
+ |
+| [getDataSize()](#getDataSize--) | Gets the data size in bytes.
+ |
+| [hasExtendedSize()](#hasExtendedSize--) | Gets a value indicating whether the extended size field was used to store the atom data.
+ |
+| [getAtoms()](#getAtoms--) | Gets an array of [MovAtom](../../com.groupdocs.metadata.core/movatom) atoms.
+ |
### getOffset() {#getOffset--}
```
public final long getOffset()
@@ -43,8 +53,10 @@ public final long getOffset()
Gets the atom offset.
+
**Returns:**
long - The atom offset.
+
### getSize() {#getSize--}
```
public final int getSize()
@@ -53,8 +65,10 @@ public final int getSize()
Gets the atom size in bytes.
+
**Returns:**
int - The atom size.
+
### getLongSize() {#getLongSize--}
```
public final long getLongSize()
@@ -63,8 +77,10 @@ public final long getLongSize()
Gets the atom size in bytes.
+
**Returns:**
long - The atom size.
+
### getType() {#getType--}
```
public final String getType()
@@ -73,8 +89,10 @@ public final String getType()
Gets the 4-characters type.
+
**Returns:**
java.lang.String - The type.
+
### getDataOffset() {#getDataOffset--}
```
public final long getDataOffset()
@@ -83,8 +101,10 @@ public final long getDataOffset()
Gets the data offset.
+
**Returns:**
long - The data offset.
+
### getDataSize() {#getDataSize--}
```
public final int getDataSize()
@@ -93,8 +113,10 @@ public final int getDataSize()
Gets the data size in bytes.
+
**Returns:**
int - The data size.
+
### hasExtendedSize() {#hasExtendedSize--}
```
public final boolean hasExtendedSize()
@@ -103,8 +125,10 @@ public final boolean hasExtendedSize()
Gets a value indicating whether the extended size field was used to store the atom data.
+
**Returns:**
boolean - True, if the extended size field was used to store the atom data; otherwise, false.
+
### getAtoms() {#getAtoms--}
```
public final MovAtom[] getAtoms()
@@ -112,8 +136,8 @@ public final MovAtom[] getAtoms()
Gets an array of [MovAtom](../../com.groupdocs.metadata.core/movatom) atoms.
-
Value: The QuickTime atoms.
+
**Returns:**
com.groupdocs.metadata.core.MovAtom[]
diff --git a/english/java/com.groupdocs.metadata.core/movpackage/_index.md b/english/java/com.groupdocs.metadata.core/movpackage/_index.md
index a4e3d4db87..69ad6dc66d 100644
--- a/english/java/com.groupdocs.metadata.core/movpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/movpackage/_index.md
@@ -14,48 +14,82 @@ public final class MovPackage extends CustomPackage
Represents QuickTime metadata.
+
**Learn more**
- * [Working with metadata in MOV Files][]
+* [Working with metadata in MOV Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+MOV+Files)
+
+
-[Working with metadata in MOV Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+MOV+Files
## Methods
| Method | Description |
| --- | --- |
-| [getDirector()](#getDirector--) | Name of the director of the movie content. |
-| [getDescription()](#getDescription--) | Description of the movie file content. |
-| [getLocationMotion()](#getLocationMotion--) | An indication of the direction the camera is moving during the shot. |
-| [getLocationFacing()](#getLocationFacing--) | An indication of the direction the camera is facing during the shot. |
-| [getLocationDate()](#getLocationDate--) | A date and time, stored using the extended format defined in ISO 8601:2004- Data elements and interchange format. |
-| [getLocationRole()](#getLocationRole--) | A single byte, binary value containing a value from the set: 0 indicates \\u201cshooting location\\u201d, 1 indicates \\u201creal location\\u201d, 2 indicates \\u201cfictional location\\u201d. |
-| [getLocationNote()](#getLocationNote--) | Descriptive comment. |
-| [getLocationBody()](#getLocationBody--) | The astronomical body, for compatibility with the 3GPP format |
-| [getLocationName()](#getLocationName--) | Name of the location. |
-| [getUserRatings()](#getUserRatings--) | A number, assigned by the user, that indicates the rating or relative value of the movie. |
-| [getUsers()](#getUsers--) | A name indicating a user-defined collection that includes this movie. |
-| [getYear()](#getYear--) | Year when the movie file or the original content was created or recorded. |
-| [getSoftware()](#getSoftware--) | Name of software used to create the movie file content. |
-| [getProducer()](#getProducer--) | Name of producer of movie file content. |
-| [getAlbum()](#getAlbum--) | Album or collection name of which the movie content forms a part |
-| [getKeywords()](#getKeywords--) | Keywords associated with the movie file content. |
-| [getInformation()](#getInformation--) | Information about the movie file content. |
-| [getGenre()](#getGenre--) | Text describing the genre or genres to which the movie content conforms. |
-| [getTitle()](#getTitle--) | The title of the movie file content. |
-| [getCreationDate()](#getCreationDate--) | The date the movie file content was created. |
-| [getCopyright()](#getCopyright--) | Copyright statement for the movie file content. |
-| [getComment()](#getComment--) | User entered comment regarding the movie file content. |
-| [getAuthor()](#getAuthor--) | Name of the author of the movie file content. |
-| [getArtwork()](#getArtwork--) | A single image that can represent the movie file content. |
-| [getArtist()](#getArtist--) | Name of the artist who created the movie file content. |
-| [getPublisher()](#getPublisher--) | Name of publisher of movie file content. |
-| [getMovieCreationTime()](#getMovieCreationTime--) | A 32-bit integer that specifies the creation calendar date and time for the movie atom. |
-| [setMovieCreationTime(System.DateTime value)](#setMovieCreationTime-com.aspose.ms.System.DateTime-) | A 32-bit integer that specifies the creation calendar date and time for the movie atom. |
-| [getMovieModificationTime()](#getMovieModificationTime--) | A 32-bit integer that specifies the calendar date and time of the last change to the movie atom. |
-| [setMovieModificationTime(System.DateTime value)](#setMovieModificationTime-com.aspose.ms.System.DateTime-) | A 32-bit integer that specifies the calendar date and time of the last change to the movie atom. |
-| [getMovieDuration()](#getMovieDuration--) | A time value that indicates the duration of the movie in seconds. |
-| [getAtoms()](#getAtoms--) | Gets an array of [MovAtom](../../com.groupdocs.metadata.core/movatom) atoms. |
+| [getDirector()](#getDirector--) | Name of the director of the movie content.
+ |
+| [getDescription()](#getDescription--) | Description of the movie file content.
+ |
+| [getLocationMotion()](#getLocationMotion--) | An indication of the direction the camera is moving during the shot.
+ |
+| [getLocationFacing()](#getLocationFacing--) | An indication of the direction the camera is facing during the shot.
+ |
+| [getLocationDate()](#getLocationDate--) | A date and time, stored using the extended format defined in ISO 8601:2004- Data elements and interchange format.
+ |
+| [getLocationRole()](#getLocationRole--) | A single byte, binary value containing a value from the set: 0 indicates \\u201cshooting location\\u201d, 1 indicates \\u201creal location\\u201d, 2 indicates \\u201cfictional location\\u201d.
+ |
+| [getLocationNote()](#getLocationNote--) | Descriptive comment.
+ |
+| [getLocationBody()](#getLocationBody--) | The astronomical body, for compatibility with the 3GPP format
+ |
+| [getLocationName()](#getLocationName--) | Name of the location.
+ |
+| [getUserRatings()](#getUserRatings--) | A number, assigned by the user, that indicates the rating or relative value of the movie.
+ |
+| [getUsers()](#getUsers--) | A name indicating a user-defined collection that includes this movie.
+ |
+| [getYear()](#getYear--) | Year when the movie file or the original content was created or recorded.
+ |
+| [getSoftware()](#getSoftware--) | Name of software used to create the movie file content.
+ |
+| [getProducer()](#getProducer--) | Name of producer of movie file content.
+ |
+| [getAlbum()](#getAlbum--) | Album or collection name of which the movie content forms a part
+ |
+| [getKeywords()](#getKeywords--) | Keywords associated with the movie file content.
+ |
+| [getInformation()](#getInformation--) | Information about the movie file content.
+ |
+| [getGenre()](#getGenre--) | Text describing the genre or genres to which the movie content conforms.
+ |
+| [getTitle()](#getTitle--) | The title of the movie file content.
+ |
+| [getCreationDate()](#getCreationDate--) | The date the movie file content was created.
+ |
+| [getCopyright()](#getCopyright--) | Copyright statement for the movie file content.
+ |
+| [getComment()](#getComment--) | User entered comment regarding the movie file content.
+ |
+| [getAuthor()](#getAuthor--) | Name of the author of the movie file content.
+ |
+| [getArtwork()](#getArtwork--) | A single image that can represent the movie file content.
+ |
+| [getArtist()](#getArtist--) | Name of the artist who created the movie file content.
+ |
+| [getPublisher()](#getPublisher--) | Name of publisher of movie file content.
+ |
+| [getMovieCreationTime()](#getMovieCreationTime--) | A 32-bit integer that specifies the creation calendar date and time for the movie atom.
+ |
+| [setMovieCreationTime(System.DateTime value)](#setMovieCreationTime-com.aspose.ms.System.DateTime-) | A 32-bit integer that specifies the creation calendar date and time for the movie atom.
+ |
+| [getMovieModificationTime()](#getMovieModificationTime--) | A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
+ |
+| [setMovieModificationTime(System.DateTime value)](#setMovieModificationTime-com.aspose.ms.System.DateTime-) | A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
+ |
+| [getMovieDuration()](#getMovieDuration--) | A time value that indicates the duration of the movie in seconds.
+ |
+| [getAtoms()](#getAtoms--) | Gets an array of [MovAtom](../../com.groupdocs.metadata.core/movatom) atoms.
+ |
### getDirector() {#getDirector--}
```
public final String getDirector()
@@ -63,9 +97,9 @@ public final String getDirector()
Name of the director of the movie content.
-
Value: The Director.
+
**Returns:**
java.lang.String
### getDescription() {#getDescription--}
@@ -75,9 +109,9 @@ public final String getDescription()
Description of the movie file content.
-
Value: The Description.
+
**Returns:**
java.lang.String
### getLocationMotion() {#getLocationMotion--}
@@ -87,9 +121,9 @@ public final String getLocationMotion()
An indication of the direction the camera is moving during the shot.
-
Value: The LocationMotion.
+
**Returns:**
java.lang.String
### getLocationFacing() {#getLocationFacing--}
@@ -99,9 +133,9 @@ public final String getLocationFacing()
An indication of the direction the camera is facing during the shot.
-
Value: The LocationFacing.
+
**Returns:**
java.lang.String
### getLocationDate() {#getLocationDate--}
@@ -111,9 +145,9 @@ public final String getLocationDate()
A date and time, stored using the extended format defined in ISO 8601:2004- Data elements and interchange format.
-
Value: The LocationDate.
+
**Returns:**
java.lang.String
### getLocationRole() {#getLocationRole--}
@@ -122,10 +156,11 @@ public final String getLocationRole()
```
-A single byte, binary value containing a value from the set: 0 indicates \\u201cshooting location\\u201d, 1 indicates \\u201creal location\\u201d, 2 indicates \\u201cfictional location\\u201d. Other values are reserved.
-
+A single byte, binary value containing a value from the set: 0 indicates \\u201cshooting location\\u201d, 1 indicates \\u201creal location\\u201d, 2 indicates \\u201cfictional location\\u201d.
+Other values are reserved.
Value: The LocationRole.
+
**Returns:**
java.lang.String
### getLocationNote() {#getLocationNote--}
@@ -135,9 +170,9 @@ public final String getLocationNote()
Descriptive comment.
-
Value: The LocationNote.
+
**Returns:**
java.lang.String
### getLocationBody() {#getLocationBody--}
@@ -147,9 +182,9 @@ public final String getLocationBody()
The astronomical body, for compatibility with the 3GPP format
-
Value: The LocationBody.
+
**Returns:**
java.lang.String
### getLocationName() {#getLocationName--}
@@ -159,9 +194,9 @@ public final String getLocationName()
Name of the location.
-
Value: The LocationName.
+
**Returns:**
java.lang.String
### getUserRatings() {#getUserRatings--}
@@ -170,10 +205,11 @@ public final String getUserRatings()
```
-A number, assigned by the user, that indicates the rating or relative value of the movie. This number can range from 0.0 to 5.0. A value of 0.0 indicates that the user has not rated the movie.
-
+A number, assigned by the user, that indicates the rating or relative value of the movie.
+This number can range from 0.0 to 5.0. A value of 0.0 indicates that the user has not rated the movie.
Value: The UserRatings.
+
**Returns:**
java.lang.String
### getUsers() {#getUsers--}
@@ -183,9 +219,9 @@ public final String getUsers()
A name indicating a user-defined collection that includes this movie.
-
Value: The Users.
+
**Returns:**
java.lang.String
### getYear() {#getYear--}
@@ -195,9 +231,9 @@ public final String getYear()
Year when the movie file or the original content was created or recorded.
-
Value: The Year.
+
**Returns:**
java.lang.String
### getSoftware() {#getSoftware--}
@@ -207,9 +243,9 @@ public final String getSoftware()
Name of software used to create the movie file content.
-
Value: The Software.
+
**Returns:**
java.lang.String
### getProducer() {#getProducer--}
@@ -219,9 +255,9 @@ public final String getProducer()
Name of producer of movie file content.
-
Value: The Producer.
+
**Returns:**
java.lang.String
### getAlbum() {#getAlbum--}
@@ -231,9 +267,9 @@ public final String getAlbum()
Album or collection name of which the movie content forms a part
-
Value: The Album.
+
**Returns:**
java.lang.String
### getKeywords() {#getKeywords--}
@@ -243,9 +279,9 @@ public final String getKeywords()
Keywords associated with the movie file content.
-
Value: The Keywords.
+
**Returns:**
java.lang.String
### getInformation() {#getInformation--}
@@ -255,9 +291,9 @@ public final String getInformation()
Information about the movie file content.
-
Value: The Information.
+
**Returns:**
java.lang.String
### getGenre() {#getGenre--}
@@ -267,9 +303,9 @@ public final String getGenre()
Text describing the genre or genres to which the movie content conforms.
-
Value: The Genre.
+
**Returns:**
java.lang.String
### getTitle() {#getTitle--}
@@ -279,9 +315,9 @@ public final String getTitle()
The title of the movie file content.
-
Value: The Title.
+
**Returns:**
java.lang.String
### getCreationDate() {#getCreationDate--}
@@ -291,9 +327,9 @@ public final String getCreationDate()
The date the movie file content was created.
-
Value: The CreationDate.
+
**Returns:**
java.lang.String
### getCopyright() {#getCopyright--}
@@ -303,9 +339,9 @@ public final String getCopyright()
Copyright statement for the movie file content.
-
Value: The Copyright.
+
**Returns:**
java.lang.String
### getComment() {#getComment--}
@@ -315,9 +351,9 @@ public final String getComment()
User entered comment regarding the movie file content.
-
Value: The Comment.
+
**Returns:**
java.lang.String
### getAuthor() {#getAuthor--}
@@ -327,9 +363,9 @@ public final String getAuthor()
Name of the author of the movie file content.
-
Value: The Author.
+
**Returns:**
java.lang.String
### getArtwork() {#getArtwork--}
@@ -339,9 +375,9 @@ public final String getArtwork()
A single image that can represent the movie file content.
-
Value: The Artwork.
+
**Returns:**
java.lang.String
### getArtist() {#getArtist--}
@@ -351,9 +387,9 @@ public final String getArtist()
Name of the artist who created the movie file content.
-
Value: The Artist.
+
**Returns:**
java.lang.String
### getPublisher() {#getPublisher--}
@@ -363,9 +399,9 @@ public final String getPublisher()
Name of publisher of movie file content.
-
Value: The Publisher.
+
**Returns:**
java.lang.String
### getMovieCreationTime() {#getMovieCreationTime--}
@@ -375,9 +411,9 @@ public final System.DateTime getMovieCreationTime()
A 32-bit integer that specifies the creation calendar date and time for the movie atom.
-
Value: A 32-bit integer that specifies the creation calendar date and time for the movie atom.
+
**Returns:**
com.aspose.ms.System.DateTime
### setMovieCreationTime(System.DateTime value) {#setMovieCreationTime-com.aspose.ms.System.DateTime-}
@@ -387,9 +423,9 @@ public final void setMovieCreationTime(System.DateTime value)
A 32-bit integer that specifies the creation calendar date and time for the movie atom.
-
Value: A 32-bit integer that specifies the creation calendar date and time for the movie atom.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -402,9 +438,9 @@ public final System.DateTime getMovieModificationTime()
A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
-
Value: A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
+
**Returns:**
com.aspose.ms.System.DateTime
### setMovieModificationTime(System.DateTime value) {#setMovieModificationTime-com.aspose.ms.System.DateTime-}
@@ -414,9 +450,9 @@ public final void setMovieModificationTime(System.DateTime value)
A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
-
Value: A 32-bit integer that specifies the calendar date and time of the last change to the movie atom.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -429,9 +465,9 @@ public final long getMovieDuration()
A time value that indicates the duration of the movie in seconds.
-
Value: A time value that indicates the duration of the movie in seconds.
+
**Returns:**
long
### getAtoms() {#getAtoms--}
@@ -441,8 +477,8 @@ public final MovAtom[] getAtoms()
Gets an array of [MovAtom](../../com.groupdocs.metadata.core/movatom) atoms.
-
Value: The QuickTime atoms.
+
**Returns:**
com.groupdocs.metadata.core.MovAtom[]
diff --git a/english/java/com.groupdocs.metadata.core/movrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/movrootpackage/_index.md
index 0d907f5aea..157784b577 100644
--- a/english/java/com.groupdocs.metadata.core/movrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/movrootpackage/_index.md
@@ -17,16 +17,19 @@ public class MovRootPackage extends RootMetadataPackage implements IXmp
Represents the root package allowing working with metadata in a QuickTime video.
+
**Learn more**
- * [Working with metadata in MOV Files][]
- * [Working with XMP metadata][]
+* [Working with metadata in MOV Files](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+MOV+Files)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This example shows how to read QuickTime atoms in a MOV video.
+
+This example shows how to read QuickTime atoms in a MOV video.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputMov)) {
> MovRootPackage root = metadata.getRootPackageGeneric();
> for (MovAtom atom : root.getMovPackage().getAtoms()) {
@@ -38,18 +41,19 @@ This example shows how to read QuickTime atoms in a MOV video.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in MOV Files]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+MOV+Files
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getMovPackage()](#getMovPackage--) | Gets the QuickTime metadata package. |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
+| [getMovPackage()](#getMovPackage--) | Gets the QuickTime metadata package.
+ |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
### getMovPackage() {#getMovPackage--}
```
public final MovPackage getMovPackage()
@@ -58,8 +62,10 @@ public final MovPackage getMovPackage()
Gets the QuickTime metadata package.
+
**Returns:**
[MovPackage](../../com.groupdocs.metadata.core/movpackage) - The QuickTime metadata package.
+
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -68,15 +74,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -85,15 +94,18 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/mp3rootpackage/_index.md b/english/java/com.groupdocs.metadata.core/mp3rootpackage/_index.md
index 887bcc7716..67bd9fbf10 100644
--- a/english/java/com.groupdocs.metadata.core/mp3rootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/mp3rootpackage/_index.md
@@ -17,30 +17,43 @@ public class MP3RootPackage extends RootMetadataPackage implements IXmp
Represents the root package allowing working with metadata in an MP3 audio.
+
**Learn more**
- * [Working with MP3 metadata][]
- * [Working with XMP metadata][]
+* [Working with MP3 metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+MP3+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with MP3 metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+MP3+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getMpegAudioPackage()](#getMpegAudioPackage--) | Gets the MPEG audio metadata package. |
-| [getID3V1()](#getID3V1--) | Gets the ID3v1 metadata tag. |
-| [setID3V1(ID3V1Tag value)](#setID3V1-com.groupdocs.metadata.core.ID3V1Tag-) | Sets the ID3v1 metadata tag. |
-| [getID3V2()](#getID3V2--) | Gets the ID3v2 metadata tag. |
-| [setID3V2(ID3V2Tag value)](#setID3V2-com.groupdocs.metadata.core.ID3V2Tag-) | Sets the ID3v2 metadata tag. |
-| [getLyrics3V2()](#getLyrics3V2--) | Gets the Lyrics3v2 metadata tag. |
-| [setLyrics3V2(LyricsTag value)](#setLyrics3V2-com.groupdocs.metadata.core.LyricsTag-) | Sets the Lyrics3v2 metadata tag. |
-| [getApeV2()](#getApeV2--) | Gets the APE v2 metadata. |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [removeApeV2()](#removeApeV2--) | Removes the APEv2 audio tag. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [getMpegAudioPackage()](#getMpegAudioPackage--) | Gets the MPEG audio metadata package.
+ |
+| [getID3V1()](#getID3V1--) | Gets the ID3v1 metadata tag.
+ |
+| [setID3V1(ID3V1Tag value)](#setID3V1-com.groupdocs.metadata.core.ID3V1Tag-) | Sets the ID3v1 metadata tag.
+ |
+| [getID3V2()](#getID3V2--) | Gets the ID3v2 metadata tag.
+ |
+| [setID3V2(ID3V2Tag value)](#setID3V2-com.groupdocs.metadata.core.ID3V2Tag-) | Sets the ID3v2 metadata tag.
+ |
+| [getLyrics3V2()](#getLyrics3V2--) | Gets the Lyrics3v2 metadata tag.
+ |
+| [setLyrics3V2(LyricsTag value)](#setLyrics3V2-com.groupdocs.metadata.core.LyricsTag-) | Sets the Lyrics3v2 metadata tag.
+ |
+| [getApeV2()](#getApeV2--) | Gets the APE v2 metadata.
+ |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [removeApeV2()](#removeApeV2--) | Removes the APEv2 audio tag.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
| [copyTo(MetadataPackage metadata)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | |
### getMpegAudioPackage() {#getMpegAudioPackage--}
```
@@ -50,38 +63,60 @@ public final MpegAudioPackage getMpegAudioPackage()
Gets the MPEG audio metadata package.
+
**Returns:**
[MpegAudioPackage](../../com.groupdocs.metadata.core/mpegaudiopackage) - The MPEG audio metadata package.
+
### getID3V1() {#getID3V1--}
```
public final ID3V1Tag getID3V1()
```
-Gets the ID3v1 metadata tag. Please find more information at http://id3.org/ID3v1 .
+Gets the ID3v1 metadata tag.
+Please find more information at
+
+.
+
**Returns:**
[ID3V1Tag](../../com.groupdocs.metadata.core/id3v1tag) - The ID3v1 metadata tag attached to the audio file.
---------------------
+
+
+*** ** * ** ***
The ID3(v1) tag is a small chunk of extra data at the end of an MP3 file.
+
+
+
+
### setID3V1(ID3V1Tag value) {#setID3V1-com.groupdocs.metadata.core.ID3V1Tag-}
```
public final void setID3V1(ID3V1Tag value)
```
-Sets the ID3v1 metadata tag. Please find more information at http://id3.org/ID3v1 .
+Sets the ID3v1 metadata tag.
+Please find more information at
+
+.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ID3V1Tag](../../com.groupdocs.metadata.core/id3v1tag) | The ID3v1 metadata tag attached to the audio file.
---------------------
+
+
+*** ** * ** ***
+
+The ID3(v1) tag is a small chunk of extra data at the end of an MP3 file.
+
+
-The ID3(v1) tag is a small chunk of extra data at the end of an MP3 file. |
+ |
### getID3V2() {#getID3V2--}
```
@@ -91,8 +126,10 @@ public final ID3V2Tag getID3V2()
Gets the ID3v2 metadata tag.
+
**Returns:**
[ID3V2Tag](../../com.groupdocs.metadata.core/id3v2tag) - The ID3v2 metadata tag attached to the audio file.
+
### setID3V2(ID3V2Tag value) {#setID3V2-com.groupdocs.metadata.core.ID3V2Tag-}
```
public final void setID3V2(ID3V2Tag value)
@@ -101,10 +138,12 @@ public final void setID3V2(ID3V2Tag value)
Sets the ID3v2 metadata tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [ID3V2Tag](../../com.groupdocs.metadata.core/id3v2tag) | The ID3v2 metadata tag attached to the audio file. |
+| value | [ID3V2Tag](../../com.groupdocs.metadata.core/id3v2tag) | The ID3v2 metadata tag attached to the audio file.
+ |
### getLyrics3V2() {#getLyrics3V2--}
```
@@ -114,8 +153,10 @@ public final LyricsTag getLyrics3V2()
Gets the Lyrics3v2 metadata tag.
+
**Returns:**
[LyricsTag](../../com.groupdocs.metadata.core/lyricstag) - The Lyrics3v2 metadata tag.
+
### setLyrics3V2(LyricsTag value) {#setLyrics3V2-com.groupdocs.metadata.core.LyricsTag-}
```
public final void setLyrics3V2(LyricsTag value)
@@ -124,10 +165,12 @@ public final void setLyrics3V2(LyricsTag value)
Sets the Lyrics3v2 metadata tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [LyricsTag](../../com.groupdocs.metadata.core/lyricstag) | The Lyrics3v2 metadata tag. |
+| value | [LyricsTag](../../com.groupdocs.metadata.core/lyricstag) | The Lyrics3v2 metadata tag.
+ |
### getApeV2() {#getApeV2--}
```
@@ -137,8 +180,10 @@ public final ApePackage getApeV2()
Gets the APE v2 metadata.
+
**Returns:**
[ApePackage](../../com.groupdocs.metadata.core/apepackage) - The APE v2 metadata.
+
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -147,15 +192,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -164,17 +212,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### removeApeV2() {#removeApeV2--}
```
@@ -184,20 +235,29 @@ public final void removeApeV2()
Removes the APEv2 audio tag.
---------------------
+
+
+*** ** * ** ***
This feature is not available in trial mode.
+
+
+
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
### copyTo(MetadataPackage metadata) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-}
```
public void copyTo(MetadataPackage metadata)
diff --git a/english/java/com.groupdocs.metadata.core/mpegaudiopackage/_index.md b/english/java/com.groupdocs.metadata.core/mpegaudiopackage/_index.md
index 1f0a031a5f..04134b3dd4 100644
--- a/english/java/com.groupdocs.metadata.core/mpegaudiopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/mpegaudiopackage/_index.md
@@ -15,10 +15,10 @@ public final class MpegAudioPackage extends CustomPackage
Represents MPEG audio metadata.
This example demonstrates how to read MPEG audio metadata from an MP3 file.
-
-> ```
+>
+> ````
> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.MP3WithID3V2)) {
> MP3RootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getMpegAudioPackage().getBitrate());
@@ -31,36 +31,59 @@ This example demonstrates how to read MPEG audio metadata from an MP3 file.
> }
>
> ```
-> ```
+> ````
+
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [MpegAudioPackage()](#MpegAudioPackage--) | Initializes a new instance of the MpegAudioPackage class. |
+| [MpegAudioPackage()](#MpegAudioPackage--) | Initializes a new instance of the
+MpegAudioPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getMpegAudioVersion()](#getMpegAudioVersion--) | Gets the MPEG audio version. |
-| [getLayer()](#getLayer--) | Gets the layer description. |
-| [isProtected()](#isProtected--) | Gets true if protected. |
-| [getHeaderPosition()](#getHeaderPosition--) | Gets the header offset. |
-| [getBitrate()](#getBitrate--) | Gets the bitrate. |
-| [getFrequency()](#getFrequency--) | Gets the frequency. |
-| [getPaddingBit()](#getPaddingBit--) | Gets the padding bit. |
-| [getPrivateBit()](#getPrivateBit--) | Gets a value indicating whether [private bit]. |
-| [getChannelMode()](#getChannelMode--) | Gets the channel mode. |
-| [getCopyright()](#getCopyright--) | Gets the copyright bit. |
-| [isOriginal()](#isOriginal--) | Gets the original bit. |
-| [getEmphasis()](#getEmphasis--) | Gets the emphasis. |
-| [getModeExtensionBits()](#getModeExtensionBits--) | Gets the mode extension bits. |
+| [getMpegAudioVersion()](#getMpegAudioVersion--) | Gets the MPEG audio version.
+ |
+| [getLayer()](#getLayer--) | Gets the layer description.
+ |
+| [isProtected()](#isProtected--) | Gets
+true
+ if protected.
+ |
+| [getHeaderPosition()](#getHeaderPosition--) | Gets the header offset.
+ |
+| [getBitrate()](#getBitrate--) | Gets the bitrate.
+ |
+| [getFrequency()](#getFrequency--) | Gets the frequency.
+ |
+| [getPaddingBit()](#getPaddingBit--) | Gets the padding bit.
+ |
+| [getPrivateBit()](#getPrivateBit--) | Gets a value indicating whether [private bit].
+ |
+| [getChannelMode()](#getChannelMode--) | Gets the channel mode.
+ |
+| [getCopyright()](#getCopyright--) | Gets the copyright bit.
+ |
+| [isOriginal()](#isOriginal--) | Gets the original bit.
+ |
+| [getEmphasis()](#getEmphasis--) | Gets the emphasis.
+ |
+| [getModeExtensionBits()](#getModeExtensionBits--) | Gets the mode extension bits.
+ |
### MpegAudioPackage() {#MpegAudioPackage--}
```
public MpegAudioPackage()
```
-Initializes a new instance of the MpegAudioPackage class.
+Initializes a new instance of the
+MpegAudioPackage
+ class.
+
### getMpegAudioVersion() {#getMpegAudioVersion--}
```
@@ -70,8 +93,10 @@ public final MpegAudioVersion getMpegAudioVersion()
Gets the MPEG audio version. Can be MPEG-1, MPEG-2 etc.
+
**Returns:**
[MpegAudioVersion](../../com.groupdocs.metadata.core/mpegaudioversion) - The MPEG audio version.
+
### getLayer() {#getLayer--}
```
public final int getLayer()
@@ -80,18 +105,24 @@ public final int getLayer()
Gets the layer description. For an MP3 audio it is '3'.
+
**Returns:**
int - The layer description.
+
### isProtected() {#isProtected--}
```
public final boolean isProtected()
```
-Gets true if protected.
+Gets
+true
+ if protected.
+
**Returns:**
boolean - true if is protected; otherwise, false .
+
### getHeaderPosition() {#getHeaderPosition--}
```
public final long getHeaderPosition()
@@ -100,8 +131,10 @@ public final long getHeaderPosition()
Gets the header offset.
+
**Returns:**
long - The header offset.
+
### getBitrate() {#getBitrate--}
```
public final int getBitrate()
@@ -110,8 +143,10 @@ public final int getBitrate()
Gets the bitrate.
+
**Returns:**
int - The bitrate.
+
### getFrequency() {#getFrequency--}
```
public final int getFrequency()
@@ -120,8 +155,10 @@ public final int getFrequency()
Gets the frequency.
+
**Returns:**
int - The frequency.
+
### getPaddingBit() {#getPaddingBit--}
```
public final int getPaddingBit()
@@ -130,8 +167,10 @@ public final int getPaddingBit()
Gets the padding bit.
+
**Returns:**
int - The padding bit.
+
### getPrivateBit() {#getPrivateBit--}
```
public final boolean getPrivateBit()
@@ -140,8 +179,10 @@ public final boolean getPrivateBit()
Gets a value indicating whether [private bit].
+
**Returns:**
boolean - true if [private bit]; otherwise, false .
+
### getChannelMode() {#getChannelMode--}
```
public final MpegChannelMode getChannelMode()
@@ -150,8 +191,10 @@ public final MpegChannelMode getChannelMode()
Gets the channel mode.
+
**Returns:**
[MpegChannelMode](../../com.groupdocs.metadata.core/mpegchannelmode) - The channel mode.
+
### getCopyright() {#getCopyright--}
```
public final boolean getCopyright()
@@ -160,8 +203,10 @@ public final boolean getCopyright()
Gets the copyright bit.
+
**Returns:**
boolean - true if copyright; otherwise, false .
+
### isOriginal() {#isOriginal--}
```
public final boolean isOriginal()
@@ -170,8 +215,10 @@ public final boolean isOriginal()
Gets the original bit.
+
**Returns:**
boolean - true if audio is original; otherwise, false .
+
### getEmphasis() {#getEmphasis--}
```
public final MpegEmphasis getEmphasis()
@@ -180,8 +227,10 @@ public final MpegEmphasis getEmphasis()
Gets the emphasis.
+
**Returns:**
[MpegEmphasis](../../com.groupdocs.metadata.core/mpegemphasis) - The emphasis.
+
### getModeExtensionBits() {#getModeExtensionBits--}
```
public final int getModeExtensionBits()
@@ -190,5 +239,7 @@ public final int getModeExtensionBits()
Gets the mode extension bits.
+
**Returns:**
int - The mode extension bits.
+
diff --git a/english/java/com.groupdocs.metadata.core/mpegaudioversion/_index.md b/english/java/com.groupdocs.metadata.core/mpegaudioversion/_index.md
index 4e75cc3f2a..9d6e91a67a 100644
--- a/english/java/com.groupdocs.metadata.core/mpegaudioversion/_index.md
+++ b/english/java/com.groupdocs.metadata.core/mpegaudioversion/_index.md
@@ -16,13 +16,17 @@ public enum MpegAudioVersion extends Enum implements IEnumValu
```
Represents a particular MPEG standard.
+
## Fields
| Field | Description |
| --- | --- |
-| [Mpeg25](#Mpeg25) | The MPEG 2.5 standard. |
-| [Mpeg2](#Mpeg2) | The MPEG 2 standard. |
-| [Mpeg1](#Mpeg1) | The MPEG 1 standard. |
+| [Mpeg25](#Mpeg25) | The MPEG 2.5 standard.
+ |
+| [Mpeg2](#Mpeg2) | The MPEG 2 standard.
+ |
+| [Mpeg1](#Mpeg1) | The MPEG 1 standard.
+ |
## Methods
| Method | Description |
@@ -44,6 +48,7 @@ public static final MpegAudioVersion Mpeg25
The MPEG 2.5 standard.
+
### Mpeg2 {#Mpeg2}
```
public static final MpegAudioVersion Mpeg2
@@ -52,6 +57,7 @@ public static final MpegAudioVersion Mpeg2
The MPEG 2 standard.
+
### Mpeg1 {#Mpeg1}
```
public static final MpegAudioVersion Mpeg1
@@ -60,6 +66,7 @@ public static final MpegAudioVersion Mpeg1
The MPEG 1 standard.
+
### values() {#values--}
```
public static MpegAudioVersion[] values()
@@ -118,6 +125,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +136,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +152,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +168,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +179,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/mpegchannelmode/_index.md b/english/java/com.groupdocs.metadata.core/mpegchannelmode/_index.md
index 76b4a32bb7..2f56db6efb 100644
--- a/english/java/com.groupdocs.metadata.core/mpegchannelmode/_index.md
+++ b/english/java/com.groupdocs.metadata.core/mpegchannelmode/_index.md
@@ -16,14 +16,19 @@ public enum MpegChannelMode extends Enum implements IEnumValue
```
Defines MPEG audio channel modes.
+
## Fields
| Field | Description |
| --- | --- |
-| [Stereo](#Stereo) | Stereo mode. |
-| [JointStereo](#JointStereo) | Joint stereo mode. |
-| [DualChannel](#DualChannel) | Dual channel mode. |
-| [Mono](#Mono) | Mono mode. |
+| [Stereo](#Stereo) | Stereo mode.
+ |
+| [JointStereo](#JointStereo) | Joint stereo mode.
+ |
+| [DualChannel](#DualChannel) | Dual channel mode.
+ |
+| [Mono](#Mono) | Mono mode.
+ |
## Methods
| Method | Description |
@@ -45,6 +50,7 @@ public static final MpegChannelMode Stereo
Stereo mode.
+
### JointStereo {#JointStereo}
```
public static final MpegChannelMode JointStereo
@@ -53,6 +59,7 @@ public static final MpegChannelMode JointStereo
Joint stereo mode.
+
### DualChannel {#DualChannel}
```
public static final MpegChannelMode DualChannel
@@ -61,6 +68,7 @@ public static final MpegChannelMode DualChannel
Dual channel mode.
+
### Mono {#Mono}
```
public static final MpegChannelMode Mono
@@ -69,6 +77,7 @@ public static final MpegChannelMode Mono
Mono mode.
+
### values() {#values--}
```
public static MpegChannelMode[] values()
@@ -127,6 +136,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +147,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +163,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +179,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +190,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/mpegemphasis/_index.md b/english/java/com.groupdocs.metadata.core/mpegemphasis/_index.md
index 10707409f0..6a43ef3afd 100644
--- a/english/java/com.groupdocs.metadata.core/mpegemphasis/_index.md
+++ b/english/java/com.groupdocs.metadata.core/mpegemphasis/_index.md
@@ -16,14 +16,19 @@ public enum MpegEmphasis extends Enum implements IEnumValue
```
Defines MPEG emphasis types.
+
## Fields
| Field | Description |
| --- | --- |
-| [None](#None) | No emphasis indication. |
-| [Ms5015](#Ms5015) | 50/15 ms. |
-| [Reserved](#Reserved) | Reserved. |
-| [CcitJ17](#CcitJ17) | CCIT J.17. |
+| [None](#None) | No emphasis indication.
+ |
+| [Ms5015](#Ms5015) | 50/15 ms.
+ |
+| [Reserved](#Reserved) | Reserved.
+ |
+| [CcitJ17](#CcitJ17) | CCIT J.17.
+ |
## Methods
| Method | Description |
@@ -45,6 +50,7 @@ public static final MpegEmphasis None
No emphasis indication.
+
### Ms5015 {#Ms5015}
```
public static final MpegEmphasis Ms5015
@@ -53,6 +59,7 @@ public static final MpegEmphasis Ms5015
50/15 ms.
+
### Reserved {#Reserved}
```
public static final MpegEmphasis Reserved
@@ -61,6 +68,7 @@ public static final MpegEmphasis Reserved
Reserved.
+
### CcitJ17 {#CcitJ17}
```
public static final MpegEmphasis CcitJ17
@@ -69,6 +77,7 @@ public static final MpegEmphasis CcitJ17
CCIT J.17.
+
### values() {#values--}
```
public static MpegEmphasis[] values()
@@ -127,6 +136,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +147,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +163,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +179,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +190,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/msgpackage/_index.md b/english/java/com.groupdocs.metadata.core/msgpackage/_index.md
index 1b756a4d44..d495980bad 100644
--- a/english/java/com.groupdocs.metadata.core/msgpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/msgpackage/_index.md
@@ -14,20 +14,26 @@ public class MsgPackage extends EmailPackage
Represents MSG message metadata.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
+
+
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
## Methods
| Method | Description |
| --- | --- |
-| [getBody()](#getBody--) | Gets the email message text. |
-| [getCategories()](#getCategories--) | Gets the array of categories or keywords. |
-| [getAttachments()](#getAttachments--) | Gets an array of the attached files. |
-| [getDeliveryTime()](#getDeliveryTime--) | Gets the date and time the message was delivered. |
+| [getBody()](#getBody--) | Gets the email message text.
+ |
+| [getCategories()](#getCategories--) | Gets the array of categories or keywords.
+ |
+| [getAttachments()](#getAttachments--) | Gets an array of the attached files.
+ |
+| [getDeliveryTime()](#getDeliveryTime--) | Gets the date and time the message was delivered.
+ |
### getBody() {#getBody--}
```
public final String getBody()
@@ -36,8 +42,10 @@ public final String getBody()
Gets the email message text.
+
**Returns:**
java.lang.String - The email message text.
+
### getCategories() {#getCategories--}
```
public final String[] getCategories()
@@ -46,8 +54,10 @@ public final String[] getCategories()
Gets the array of categories or keywords.
+
**Returns:**
java.lang.String[] - The array of categories or keywords.
+
### getAttachments() {#getAttachments--}
```
public final MsgAttachmentPackage[] getAttachments()
@@ -56,8 +66,10 @@ public final MsgAttachmentPackage[] getAttachments()
Gets an array of the attached files.
+
**Returns:**
com.groupdocs.metadata.core.MsgAttachmentPackage[] - An array of the attached files.
+
### getDeliveryTime() {#getDeliveryTime--}
```
public final Date getDeliveryTime()
@@ -66,5 +78,7 @@ public final Date getDeliveryTime()
Gets the date and time the message was delivered.
+
**Returns:**
java.util.Date - The delivery time.
+
diff --git a/english/java/com.groupdocs.metadata.core/msgrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/msgrootpackage/_index.md
index 441628bd88..5012cb5d2a 100644
--- a/english/java/com.groupdocs.metadata.core/msgrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/msgrootpackage/_index.md
@@ -14,15 +14,18 @@ public class MsgRootPackage extends EmailRootPackage
Represents the root package allowing working with metadata in an MSG email message.
+
**Learn more**
- * [Working with saved Emails][]
+* [Working with saved Emails](../https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails)
-This code sample shows how to extract metadata from an MSG message.
+
+This code sample shows how to extract metadata from an MSG message.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputMsg)) {
> MsgRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getMsgPackage().getSender());
@@ -42,16 +45,17 @@ This code sample shows how to extract metadata from an MSG message.
> }
>
> ```
-> ```
+> ````
-[Working with saved Emails]: https://docs.groupdocs.com/display/metadatajava/Working+with+saved+Emails
## Methods
| Method | Description |
| --- | --- |
-| [getMsgPackage()](#getMsgPackage--) | Gets the MSG metadata package. |
-| [getString(MsgKnownProperties tag)](#getString-com.groupdocs.metadata.core.MsgKnownProperties-) | Gets the string value of the property specified by tag. |
+| [getMsgPackage()](#getMsgPackage--) | Gets the MSG metadata package.
+ |
+| [getString(MsgKnownProperties tag)](#getString-com.groupdocs.metadata.core.MsgKnownProperties-) | Gets the string value of the property specified by tag.
+ |
### getMsgPackage() {#getMsgPackage--}
```
public final MsgPackage getMsgPackage()
@@ -60,8 +64,10 @@ public final MsgPackage getMsgPackage()
Gets the MSG metadata package.
+
**Returns:**
[MsgPackage](../../com.groupdocs.metadata.core/msgpackage) - The MSG metadata package.
+
### getString(MsgKnownProperties tag) {#getString-com.groupdocs.metadata.core.MsgKnownProperties-}
```
public final String getString(MsgKnownProperties tag)
@@ -70,10 +76,13 @@ public final String getString(MsgKnownProperties tag)
Gets the string value of the property specified by tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tag | [MsgKnownProperties](../../com.groupdocs.metadata.core/msgknownproperties) | The value from MsgKnownProperties enum. |
+| tag | [MsgKnownProperties](../../com.groupdocs.metadata.core/msgknownproperties) | The value from MsgKnownProperties enum.
+ |
**Returns:**
java.lang.String - The value of the property. If the property does not exist, returns null; otherwise, returns the value.
+
diff --git a/english/java/com.groupdocs.metadata.core/nikonmakernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/nikonmakernotepackage/_index.md
index d3a1db23f8..c28888e88a 100644
--- a/english/java/com.groupdocs.metadata.core/nikonmakernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/nikonmakernotepackage/_index.md
@@ -13,36 +13,53 @@ public final class NikonMakerNotePackage extends MakerNotePackage
```
Represents NIKON MakerNote metadata.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [NikonMakerNotePackage(TiffTag[] tags)](#NikonMakerNotePackage-com.groupdocs.metadata.core.TiffTag---) | Initializes a new instance of the NikonMakerNotePackage class. |
+| [NikonMakerNotePackage(TiffTag[] tags)](#NikonMakerNotePackage-com.groupdocs.metadata.core.TiffTag---) | Initializes a new instance of the
+NikonMakerNotePackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getMakerNoteVersion()](#getMakerNoteVersion--) | Gets the MakerNote version. |
-| [getIso()](#getIso--) | Gets the iso. |
-| [getColorMode()](#getColorMode--) | Gets the color mode. |
-| [getQuality()](#getQuality--) | Gets the quality string. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets the white balance. |
-| [getSharpness()](#getSharpness--) | Gets the sharpness. |
-| [getFocusMode()](#getFocusMode--) | Gets the focus mode. |
-| [getFlashSetting()](#getFlashSetting--) | Gets the flash setting. |
-| [getFlashType()](#getFlashType--) | Gets the type of the flash. |
+| [getMakerNoteVersion()](#getMakerNoteVersion--) | Gets the MakerNote version.
+ |
+| [getIso()](#getIso--) | Gets the iso.
+ |
+| [getColorMode()](#getColorMode--) | Gets the color mode.
+ |
+| [getQuality()](#getQuality--) | Gets the quality string.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets the white balance.
+ |
+| [getSharpness()](#getSharpness--) | Gets the sharpness.
+ |
+| [getFocusMode()](#getFocusMode--) | Gets the focus mode.
+ |
+| [getFlashSetting()](#getFlashSetting--) | Gets the flash setting.
+ |
+| [getFlashType()](#getFlashType--) | Gets the type of the flash.
+ |
### NikonMakerNotePackage(TiffTag[] tags) {#NikonMakerNotePackage-com.groupdocs.metadata.core.TiffTag---}
```
public NikonMakerNotePackage(TiffTag[] tags)
```
-Initializes a new instance of the NikonMakerNotePackage class.
+Initializes a new instance of the
+NikonMakerNotePackage
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tags | [TiffTag\[\]](../../com.groupdocs.metadata.core/tifftag) | Array of TIFF tags. |
+| tags | [TiffTag\[\]](../../com.groupdocs.metadata.core/tifftag) | Array of TIFF tags.
+ |
### getMakerNoteVersion() {#getMakerNoteVersion--}
```
@@ -52,8 +69,10 @@ public final byte[] getMakerNoteVersion()
Gets the MakerNote version.
+
**Returns:**
byte[] - The MakerNote version.
+
### getIso() {#getIso--}
```
public final int[] getIso()
@@ -62,8 +81,10 @@ public final int[] getIso()
Gets the iso.
+
**Returns:**
int[] - The iso.
+
### getColorMode() {#getColorMode--}
```
public final String getColorMode()
@@ -72,8 +93,10 @@ public final String getColorMode()
Gets the color mode.
+
**Returns:**
java.lang.String - The color mode.
+
### getQuality() {#getQuality--}
```
public final String getQuality()
@@ -82,8 +105,10 @@ public final String getQuality()
Gets the quality string.
+
**Returns:**
java.lang.String - The quality.
+
### getWhiteBalance() {#getWhiteBalance--}
```
public final String getWhiteBalance()
@@ -92,8 +117,10 @@ public final String getWhiteBalance()
Gets the white balance.
+
**Returns:**
java.lang.String - The white balance.
+
### getSharpness() {#getSharpness--}
```
public final String getSharpness()
@@ -102,8 +129,10 @@ public final String getSharpness()
Gets the sharpness.
+
**Returns:**
java.lang.String - The sharpness.
+
### getFocusMode() {#getFocusMode--}
```
public final String getFocusMode()
@@ -112,8 +141,10 @@ public final String getFocusMode()
Gets the focus mode.
+
**Returns:**
java.lang.String - The focus mode.
+
### getFlashSetting() {#getFlashSetting--}
```
public final String getFlashSetting()
@@ -122,8 +153,10 @@ public final String getFlashSetting()
Gets the flash setting.
+
**Returns:**
java.lang.String - The flash setting.
+
### getFlashType() {#getFlashType--}
```
public final String getFlashType()
@@ -132,5 +165,7 @@ public final String getFlashType()
Gets the type of the flash.
+
**Returns:**
java.lang.String - The type of the flash.
+
diff --git a/english/java/com.groupdocs.metadata.core/noteinspectionpackage/_index.md b/english/java/com.groupdocs.metadata.core/noteinspectionpackage/_index.md
index d5f9c8477b..84769f989d 100644
--- a/english/java/com.groupdocs.metadata.core/noteinspectionpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/noteinspectionpackage/_index.md
@@ -14,17 +14,20 @@ public final class NoteInspectionPackage extends CustomPackage
Represents a metadata package exposing the internal structure of a note section.
+
**Learn more**
- * [Working with metadata in Note formats][]
+* [Working with metadata in Note formats](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Note+formats)
+
+
-[Working with metadata in Note formats]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Note+formats
## Methods
| Method | Description |
| --- | --- |
-| [getPages()](#getPages--) | Gets an array of section pages. |
+| [getPages()](#getPages--) | Gets an array of section pages.
+ |
### getPages() {#getPages--}
```
public final NotePage[] getPages()
@@ -33,5 +36,7 @@ public final NotePage[] getPages()
Gets an array of section pages.
+
**Returns:**
com.groupdocs.metadata.core.NotePage[] - An array of section pages.
+
diff --git a/english/java/com.groupdocs.metadata.core/notepage/_index.md b/english/java/com.groupdocs.metadata.core/notepage/_index.md
index 6a823d96b1..97b4d386ee 100644
--- a/english/java/com.groupdocs.metadata.core/notepage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/notepage/_index.md
@@ -14,20 +14,26 @@ public class NotePage extends CustomPackage
Represents a page in a OneNote section.
+
**Learn more**
- * [Working with metadata in Note formats][]
+* [Working with metadata in Note formats](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Note+formats)
+
+
-[Working with metadata in Note formats]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Note+formats
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the page author. |
-| [getTitle()](#getTitle--) | Gets the page title. |
-| [getCreationTime()](#getCreationTime--) | Gets the creation time. |
-| [getLastModificationTime()](#getLastModificationTime--) | Gets the last modification time. |
+| [getAuthor()](#getAuthor--) | Gets the page author.
+ |
+| [getTitle()](#getTitle--) | Gets the page title.
+ |
+| [getCreationTime()](#getCreationTime--) | Gets the creation time.
+ |
+| [getLastModificationTime()](#getLastModificationTime--) | Gets the last modification time.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -36,8 +42,10 @@ public final String getAuthor()
Gets the page author.
+
**Returns:**
java.lang.String - The page author.
+
### getTitle() {#getTitle--}
```
public final String getTitle()
@@ -46,8 +54,10 @@ public final String getTitle()
Gets the page title.
+
**Returns:**
java.lang.String - The page title.
+
### getCreationTime() {#getCreationTime--}
```
public final Date getCreationTime()
@@ -56,8 +66,10 @@ public final Date getCreationTime()
Gets the creation time.
+
**Returns:**
java.util.Date - The creation time.
+
### getLastModificationTime() {#getLastModificationTime--}
```
public final Date getLastModificationTime()
@@ -66,5 +78,7 @@ public final Date getLastModificationTime()
Gets the last modification time.
+
**Returns:**
java.util.Date - The last modification time.
+
diff --git a/english/java/com.groupdocs.metadata.core/noterootpackage/_index.md b/english/java/com.groupdocs.metadata.core/noterootpackage/_index.md
index 5c138533bb..c6ad3907d1 100644
--- a/english/java/com.groupdocs.metadata.core/noterootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/noterootpackage/_index.md
@@ -14,15 +14,18 @@ public class NoteRootPackage extends RootMetadataPackage
Represents the root package intended to work with metadata in an electronic note file.
+
**Learn more**
- * [Working with metadata in Note formats][]
+* [Working with metadata in Note formats](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Note+formats)
-This code sample demonstrates how to inspect a note document.
+
+This code sample demonstrates how to inspect a note document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputOne)) {
> NoteRootPackage root = metadata.getRootPackageGeneric();
> if (root.getInspectionPackage().getPages() != null) {
@@ -36,16 +39,17 @@ This code sample demonstrates how to inspect a note document.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Note formats]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Note+formats
## Methods
| Method | Description |
| --- | --- |
-| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document. |
-| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package. |
+| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document.
+ |
+| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package.
+ |
| [copyTo(MetadataPackage metadataPackage)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | |
### getInspectionPackage() {#getInspectionPackage--}
```
@@ -53,10 +57,13 @@ public final NoteInspectionPackage getInspectionPackage()
```
-Gets a metadata package containing inspection results for the document. The package contains information about document parts that can be considered as metadata in some cases.
+Gets a metadata package containing inspection results for the document.
+The package contains information about document parts that can be considered as metadata in some cases.
+
**Returns:**
[NoteInspectionPackage](../../com.groupdocs.metadata.core/noteinspectionpackage) - A metadata package containing inspection results for the document.
+
### getDocumentStatistics() {#getDocumentStatistics--}
```
public final DocumentStatistics getDocumentStatistics()
@@ -65,8 +72,10 @@ public final DocumentStatistics getDocumentStatistics()
Gets the document statistics package.
+
**Returns:**
[DocumentStatistics](../../com.groupdocs.metadata.core/documentstatistics) - The document statistics package.
+
### copyTo(MetadataPackage metadataPackage) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-}
```
public void copyTo(MetadataPackage metadataPackage)
diff --git a/english/java/com.groupdocs.metadata.core/oid/_index.md b/english/java/com.groupdocs.metadata.core/oid/_index.md
index 9a7c3f8fe0..752260cf2c 100644
--- a/english/java/com.groupdocs.metadata.core/oid/_index.md
+++ b/english/java/com.groupdocs.metadata.core/oid/_index.md
@@ -12,13 +12,18 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class Oid extends CustomPackage
```
-Represents an object identifier (OID). An identifier mechanism standardized by the International Telecommunications Union (ITU) and ISO/IEC for naming any object, concept, or "thing" with a globally unambiguous persistent name.
+Represents an object identifier (OID).
+An identifier mechanism standardized by the International Telecommunications Union (ITU) and ISO/IEC
+for naming any object, concept, or "thing" with a globally unambiguous persistent name.
+
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the object identifier (OID) value. |
-| [getFriendlyName()](#getFriendlyName--) | Gets the friendly name. |
+| [getValue()](#getValue--) | Gets the object identifier (OID) value.
+ |
+| [getFriendlyName()](#getFriendlyName--) | Gets the friendly name.
+ |
### getValue() {#getValue--}
```
public final String getValue()
@@ -27,8 +32,10 @@ public final String getValue()
Gets the object identifier (OID) value.
+
**Returns:**
java.lang.String - The object identifier (OID) value.
+
### getFriendlyName() {#getFriendlyName--}
```
public final String getFriendlyName()
@@ -37,5 +44,7 @@ public final String getFriendlyName()
Gets the friendly name.
+
**Returns:**
java.lang.String - The friendly name.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypebasenamerecord/_index.md b/english/java/com.groupdocs.metadata.core/opentypebasenamerecord/_index.md
index 20fa748b12..e7c705bdbd 100644
--- a/english/java/com.groupdocs.metadata.core/opentypebasenamerecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypebasenamerecord/_index.md
@@ -14,19 +14,24 @@ public abstract class OpenTypeBaseNameRecord extends CustomPackage
Represents the base OpenType Name table record class.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
+
+
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getNameID()](#getNameID--) | Gets the name identifier. |
-| [getPlatform()](#getPlatform--) | Gets the platform identifier. |
-| [getValue()](#getValue--) | Gets the string value of record. |
+| [getNameID()](#getNameID--) | Gets the name identifier.
+ |
+| [getPlatform()](#getPlatform--) | Gets the platform identifier.
+ |
+| [getValue()](#getValue--) | Gets the string value of record.
+ |
### getNameID() {#getNameID--}
```
public final OpenTypeName getNameID()
@@ -35,8 +40,10 @@ public final OpenTypeName getNameID()
Gets the name identifier.
+
**Returns:**
[OpenTypeName](../../com.groupdocs.metadata.core/opentypename) - The name identifier.
+
### getPlatform() {#getPlatform--}
```
public final OpenTypePlatform getPlatform()
@@ -45,8 +52,10 @@ public final OpenTypePlatform getPlatform()
Gets the platform identifier.
+
**Returns:**
[OpenTypePlatform](../../com.groupdocs.metadata.core/opentypeplatform) - The platform identifier.
+
### getValue() {#getValue--}
```
public final String getValue()
@@ -55,5 +64,7 @@ public final String getValue()
Gets the string value of record.
+
**Returns:**
java.lang.String - The string value of record.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypedigitalsignatureflags/_index.md b/english/java/com.groupdocs.metadata.core/opentypedigitalsignatureflags/_index.md
index 44e93a3fe8..7e0155ff20 100644
--- a/english/java/com.groupdocs.metadata.core/opentypedigitalsignatureflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypedigitalsignatureflags/_index.md
@@ -16,12 +16,15 @@ public enum OpenTypeDigitalSignatureFlags extends Enum implements
```
Represents the OpenType font direction.
+
## Fields
| Field | Description |
| --- | --- |
-| [FullyMixed](#FullyMixed) | Fully mixed directional glyphs. |
-| [OnlyLeftToRight](#OnlyLeftToRight) | Only strongly left to right. |
-| [LeftToRightAndNeutrals](#LeftToRightAndNeutrals) | Like OnlyLeftToRight but also contains neutrals. |
-| [OnlyRightToLeft](#OnlyRightToLeft) | Only strongly right to left. |
-| [RightToLeftAndNeutrals](#RightToLeftAndNeutrals) | Like OnlyRightToLeft but also contains neutrals. |
+| [FullyMixed](#FullyMixed) | Fully mixed directional glyphs.
+ |
+| [OnlyLeftToRight](#OnlyLeftToRight) | Only strongly left to right.
+ |
+| [LeftToRightAndNeutrals](#LeftToRightAndNeutrals) | Like
+OnlyLeftToRight
+ but also contains neutrals.
+ |
+| [OnlyRightToLeft](#OnlyRightToLeft) | Only strongly right to left.
+ |
+| [RightToLeftAndNeutrals](#RightToLeftAndNeutrals) | Like
+OnlyRightToLeft
+ but also contains neutrals.
+ |
## Methods
| Method | Description |
@@ -46,6 +56,7 @@ public static final OpenTypeDirectionHint FullyMixed
Fully mixed directional glyphs.
+
### OnlyLeftToRight {#OnlyLeftToRight}
```
public static final OpenTypeDirectionHint OnlyLeftToRight
@@ -54,13 +65,17 @@ public static final OpenTypeDirectionHint OnlyLeftToRight
Only strongly left to right.
+
### LeftToRightAndNeutrals {#LeftToRightAndNeutrals}
```
public static final OpenTypeDirectionHint LeftToRightAndNeutrals
```
-Like OnlyLeftToRight but also contains neutrals.
+Like
+OnlyLeftToRight
+ but also contains neutrals.
+
### OnlyRightToLeft {#OnlyRightToLeft}
```
@@ -70,13 +85,17 @@ public static final OpenTypeDirectionHint OnlyRightToLeft
Only strongly right to left.
+
### RightToLeftAndNeutrals {#RightToLeftAndNeutrals}
```
public static final OpenTypeDirectionHint RightToLeftAndNeutrals
```
-Like OnlyRightToLeft but also contains neutrals.
+Like
+OnlyRightToLeft
+ but also contains neutrals.
+
### values() {#values--}
```
@@ -136,6 +155,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -146,6 +166,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +182,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -176,6 +198,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -186,5 +209,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypeflags/_index.md b/english/java/com.groupdocs.metadata.core/opentypeflags/_index.md
index d51603648b..14352fdb3d 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeflags/_index.md
@@ -16,20 +16,31 @@ public final class OpenTypeFlags implements IEnumValue
```
Represents OpenType font header flags.
+
## Fields
| Field | Description |
| --- | --- |
-| [None](#None) | Undefined, no flags. |
-| [BaselineAtY0](#BaselineAtY0) | Baseline for font at y=0. |
-| [LeftSidebearingAtX0](#LeftSidebearingAtX0) | Left sidebearing point at x=0 (relevant only for TrueType rasterizers). |
-| [DependOnPointSize](#DependOnPointSize) | Instructions may depend on point size. |
-| [ForceToInteger](#ForceToInteger) | Force ppem to integer values for all internal scaler math; may use fractional ppem sizes if this bit is clear. |
-| [AlterAdvanceWidth](#AlterAdvanceWidth) | Instructions may alter advance width (the advance widths might not scale linearly). |
-| [Lossless](#Lossless) | Font data is \\u201clossless\\u201d as a result of having been subjected to optimizing transformation and/or compression. |
-| [Converted](#Converted) | Font converted (produce compatible metrics). |
-| [Optimized](#Optimized) | Font optimized for ClearType\\u2122. |
-| [Resort](#Resort) | Last Resort font. |
+| [None](#None) | Undefined, no flags.
+ |
+| [BaselineAtY0](#BaselineAtY0) | Baseline for font at y=0.
+ |
+| [LeftSidebearingAtX0](#LeftSidebearingAtX0) | Left sidebearing point at x=0 (relevant only for TrueType rasterizers).
+ |
+| [DependOnPointSize](#DependOnPointSize) | Instructions may depend on point size.
+ |
+| [ForceToInteger](#ForceToInteger) | Force ppem to integer values for all internal scaler math; may use fractional ppem sizes if this bit is clear.
+ |
+| [AlterAdvanceWidth](#AlterAdvanceWidth) | Instructions may alter advance width (the advance widths might not scale linearly).
+ |
+| [Lossless](#Lossless) | Font data is \\u201clossless\\u201d as a result of having been subjected to optimizing transformation and/or compression.
+ |
+| [Converted](#Converted) | Font converted (produce compatible metrics).
+ |
+| [Optimized](#Optimized) | Font optimized for ClearType\\u2122.
+ |
+| [Resort](#Resort) | Last Resort font.
+ |
## Methods
| Method | Description |
@@ -52,6 +63,7 @@ public static final OpenTypeFlags None
Undefined, no flags.
+
### BaselineAtY0 {#BaselineAtY0}
```
public static final OpenTypeFlags BaselineAtY0
@@ -60,6 +72,7 @@ public static final OpenTypeFlags BaselineAtY0
Baseline for font at y=0.
+
### LeftSidebearingAtX0 {#LeftSidebearingAtX0}
```
public static final OpenTypeFlags LeftSidebearingAtX0
@@ -68,6 +81,7 @@ public static final OpenTypeFlags LeftSidebearingAtX0
Left sidebearing point at x=0 (relevant only for TrueType rasterizers).
+
### DependOnPointSize {#DependOnPointSize}
```
public static final OpenTypeFlags DependOnPointSize
@@ -76,6 +90,7 @@ public static final OpenTypeFlags DependOnPointSize
Instructions may depend on point size.
+
### ForceToInteger {#ForceToInteger}
```
public static final OpenTypeFlags ForceToInteger
@@ -84,6 +99,7 @@ public static final OpenTypeFlags ForceToInteger
Force ppem to integer values for all internal scaler math; may use fractional ppem sizes if this bit is clear.
+
### AlterAdvanceWidth {#AlterAdvanceWidth}
```
public static final OpenTypeFlags AlterAdvanceWidth
@@ -92,6 +108,7 @@ public static final OpenTypeFlags AlterAdvanceWidth
Instructions may alter advance width (the advance widths might not scale linearly).
+
### Lossless {#Lossless}
```
public static final OpenTypeFlags Lossless
@@ -100,6 +117,7 @@ public static final OpenTypeFlags Lossless
Font data is \\u201clossless\\u201d as a result of having been subjected to optimizing transformation and/or compression.
+
### Converted {#Converted}
```
public static final OpenTypeFlags Converted
@@ -108,6 +126,7 @@ public static final OpenTypeFlags Converted
Font converted (produce compatible metrics).
+
### Optimized {#Optimized}
```
public static final OpenTypeFlags Optimized
@@ -116,6 +135,7 @@ public static final OpenTypeFlags Optimized
Font optimized for ClearType\\u2122.
+
### Resort {#Resort}
```
public static final OpenTypeFlags Resort
@@ -124,6 +144,7 @@ public static final OpenTypeFlags Resort
Last Resort font.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static OpenTypeFlags getByRawValue(int rawValue)
@@ -157,6 +178,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -167,6 +189,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -182,6 +205,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -197,6 +221,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -207,6 +232,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -217,6 +243,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/opentypefont/_index.md b/english/java/com.groupdocs.metadata.core/opentypefont/_index.md
index bd78e90f16..c3c5f23129 100644
--- a/english/java/com.groupdocs.metadata.core/opentypefont/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypefont/_index.md
@@ -14,35 +14,56 @@ public class OpenTypeFont extends CustomPackage
Represents a single font extracted from a file.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
+
+
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getSfntVersion()](#getSfntVersion--) | Gets the header SFNT version. |
-| [getMajorVersion()](#getMajorVersion--) | Gets the header major version. |
-| [getMinorVersion()](#getMinorVersion--) | Gets the header minor version. |
-| [getFontRevision()](#getFontRevision--) | Gets the font revision. |
-| [getFlags()](#getFlags--) | Gets the header flags. |
-| [getCreated()](#getCreated--) | Gets the created date. |
-| [getModified()](#getModified--) | Gets the modified date. |
-| [getGlyphBounds()](#getGlyphBounds--) | Gets the glyph bounds. |
-| [getStyle()](#getStyle--) | Gets the font style. |
-| [getDirectionHint()](#getDirectionHint--) | Gets the direction hint. |
-| [getNames()](#getNames--) | Gets the name records. |
-| [getFontFamilyName()](#getFontFamilyName--) | Gets the name of the font family. |
-| [getFontSubfamilyName()](#getFontSubfamilyName--) | Gets the name of the font subfamily. |
-| [getFullFontName()](#getFullFontName--) | Gets the full name of the font. |
-| [getTypographicFamily()](#getTypographicFamily--) | Gets the typographic family. |
-| [getTypographicSubfamily()](#getTypographicSubfamily--) | Gets the typographic subfamily. |
-| [getWeight()](#getWeight--) | Gets the font weight. |
-| [getWidth()](#getWidth--) | Gets the font width. |
-| [getEmbeddingLicensingRights()](#getEmbeddingLicensingRights--) | Gets the embedding licensing rights type. |
+| [getSfntVersion()](#getSfntVersion--) | Gets the header SFNT version.
+ |
+| [getMajorVersion()](#getMajorVersion--) | Gets the header major version.
+ |
+| [getMinorVersion()](#getMinorVersion--) | Gets the header minor version.
+ |
+| [getFontRevision()](#getFontRevision--) | Gets the font revision.
+ |
+| [getFlags()](#getFlags--) | Gets the header flags.
+ |
+| [getCreated()](#getCreated--) | Gets the created date.
+ |
+| [getModified()](#getModified--) | Gets the modified date.
+ |
+| [getGlyphBounds()](#getGlyphBounds--) | Gets the glyph bounds.
+ |
+| [getStyle()](#getStyle--) | Gets the font style.
+ |
+| [getDirectionHint()](#getDirectionHint--) | Gets the direction hint.
+ |
+| [getNames()](#getNames--) | Gets the name records.
+ |
+| [getFontFamilyName()](#getFontFamilyName--) | Gets the name of the font family.
+ |
+| [getFontSubfamilyName()](#getFontSubfamilyName--) | Gets the name of the font subfamily.
+ |
+| [getFullFontName()](#getFullFontName--) | Gets the full name of the font.
+ |
+| [getTypographicFamily()](#getTypographicFamily--) | Gets the typographic family.
+ |
+| [getTypographicSubfamily()](#getTypographicSubfamily--) | Gets the typographic subfamily.
+ |
+| [getWeight()](#getWeight--) | Gets the font weight.
+ |
+| [getWidth()](#getWidth--) | Gets the font width.
+ |
+| [getEmbeddingLicensingRights()](#getEmbeddingLicensingRights--) | Gets the embedding licensing rights type.
+ |
### getSfntVersion() {#getSfntVersion--}
```
public final OpenTypeVersion getSfntVersion()
@@ -51,8 +72,10 @@ public final OpenTypeVersion getSfntVersion()
Gets the header SFNT version.
+
**Returns:**
[OpenTypeVersion](../../com.groupdocs.metadata.core/opentypeversion) - The header SFNT version.
+
### getMajorVersion() {#getMajorVersion--}
```
public final int getMajorVersion()
@@ -61,8 +84,10 @@ public final int getMajorVersion()
Gets the header major version.
+
**Returns:**
int - The header major version.
+
### getMinorVersion() {#getMinorVersion--}
```
public final int getMinorVersion()
@@ -71,8 +96,10 @@ public final int getMinorVersion()
Gets the header minor version.
+
**Returns:**
int - The header minor version.
+
### getFontRevision() {#getFontRevision--}
```
public final float getFontRevision()
@@ -81,8 +108,10 @@ public final float getFontRevision()
Gets the font revision.
+
**Returns:**
float - The font revision.
+
### getFlags() {#getFlags--}
```
public final OpenTypeFlags getFlags()
@@ -91,8 +120,10 @@ public final OpenTypeFlags getFlags()
Gets the header flags.
+
**Returns:**
[OpenTypeFlags](../../com.groupdocs.metadata.core/opentypeflags) - The header flags.
+
### getCreated() {#getCreated--}
```
public final Date getCreated()
@@ -101,8 +132,10 @@ public final Date getCreated()
Gets the created date.
+
**Returns:**
java.util.Date - The created date.
+
### getModified() {#getModified--}
```
public final Date getModified()
@@ -111,8 +144,10 @@ public final Date getModified()
Gets the modified date.
+
**Returns:**
java.util.Date - The modified date.
+
### getGlyphBounds() {#getGlyphBounds--}
```
public final Rectangle getGlyphBounds()
@@ -121,8 +156,10 @@ public final Rectangle getGlyphBounds()
Gets the glyph bounds.
+
**Returns:**
[Rectangle](../../com.groupdocs.metadata.core/rectangle) - The glyph bounds.
+
### getStyle() {#getStyle--}
```
public final OpenTypeStyles getStyle()
@@ -131,8 +168,10 @@ public final OpenTypeStyles getStyle()
Gets the font style.
+
**Returns:**
[OpenTypeStyles](../../com.groupdocs.metadata.core/opentypestyles) - The font style.
+
### getDirectionHint() {#getDirectionHint--}
```
public final OpenTypeDirectionHint getDirectionHint()
@@ -141,8 +180,10 @@ public final OpenTypeDirectionHint getDirectionHint()
Gets the direction hint.
+
**Returns:**
[OpenTypeDirectionHint](../../com.groupdocs.metadata.core/opentypedirectionhint) - The direction hint.
+
### getNames() {#getNames--}
```
public final OpenTypeBaseNameRecord[] getNames()
@@ -151,8 +192,10 @@ public final OpenTypeBaseNameRecord[] getNames()
Gets the name records.
+
**Returns:**
com.groupdocs.metadata.core.OpenTypeBaseNameRecord[] - The name records.
+
### getFontFamilyName() {#getFontFamilyName--}
```
public final String getFontFamilyName()
@@ -161,8 +204,10 @@ public final String getFontFamilyName()
Gets the name of the font family.
+
**Returns:**
java.lang.String - The name of the font family.
+
### getFontSubfamilyName() {#getFontSubfamilyName--}
```
public final String getFontSubfamilyName()
@@ -171,8 +216,10 @@ public final String getFontSubfamilyName()
Gets the name of the font subfamily.
+
**Returns:**
java.lang.String - The name of the font subfamily.
+
### getFullFontName() {#getFullFontName--}
```
public final String getFullFontName()
@@ -181,8 +228,10 @@ public final String getFullFontName()
Gets the full name of the font.
+
**Returns:**
java.lang.String - The full name of the font.
+
### getTypographicFamily() {#getTypographicFamily--}
```
public final String getTypographicFamily()
@@ -191,8 +240,10 @@ public final String getTypographicFamily()
Gets the typographic family.
+
**Returns:**
java.lang.String - The typographic family.
+
### getTypographicSubfamily() {#getTypographicSubfamily--}
```
public final String getTypographicSubfamily()
@@ -201,8 +252,10 @@ public final String getTypographicSubfamily()
Gets the typographic subfamily.
+
**Returns:**
java.lang.String - The typographic subfamily.
+
### getWeight() {#getWeight--}
```
public final OpenTypeWeight getWeight()
@@ -211,8 +264,10 @@ public final OpenTypeWeight getWeight()
Gets the font weight.
+
**Returns:**
[OpenTypeWeight](../../com.groupdocs.metadata.core/opentypeweight) - The font weight.
+
### getWidth() {#getWidth--}
```
public final OpenTypeWidth getWidth()
@@ -221,8 +276,10 @@ public final OpenTypeWidth getWidth()
Gets the font width.
+
**Returns:**
[OpenTypeWidth](../../com.groupdocs.metadata.core/opentypewidth) - The font width.
+
### getEmbeddingLicensingRights() {#getEmbeddingLicensingRights--}
```
public final OpenTypeLicensingRights getEmbeddingLicensingRights()
@@ -231,5 +288,7 @@ public final OpenTypeLicensingRights getEmbeddingLicensingRights()
Gets the embedding licensing rights type.
+
**Returns:**
[OpenTypeLicensingRights](../../com.groupdocs.metadata.core/opentypelicensingrights) - The embedding licensing rights type.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypeisoencoding/_index.md b/english/java/com.groupdocs.metadata.core/opentypeisoencoding/_index.md
index feca59cf75..193c064677 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeisoencoding/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeisoencoding/_index.md
@@ -15,14 +15,20 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeIsoEncoding extends Enum implements IEnumValue
```
-Represents encoding for the OpenTypePlatform.Iso platform.
+Represents encoding for the
+OpenTypePlatform.Iso
+ platform.
+
## Fields
| Field | Description |
| --- | --- |
-| [Ascii7Bit](#Ascii7Bit) | The 7-bit ASCII encoding. |
-| [Iso10646](#Iso10646) | The ISO 10646 encoding. |
-| [Iso8859](#Iso8859) | The ISO 8859-1 encoding. |
+| [Ascii7Bit](#Ascii7Bit) | The 7-bit ASCII encoding.
+ |
+| [Iso10646](#Iso10646) | The ISO 10646 encoding.
+ |
+| [Iso8859](#Iso8859) | The ISO 8859-1 encoding.
+ |
## Methods
| Method | Description |
@@ -44,6 +50,7 @@ public static final OpenTypeIsoEncoding Ascii7Bit
The 7-bit ASCII encoding.
+
### Iso10646 {#Iso10646}
```
public static final OpenTypeIsoEncoding Iso10646
@@ -52,6 +59,7 @@ public static final OpenTypeIsoEncoding Iso10646
The ISO 10646 encoding.
+
### Iso8859 {#Iso8859}
```
public static final OpenTypeIsoEncoding Iso8859
@@ -60,6 +68,7 @@ public static final OpenTypeIsoEncoding Iso8859
The ISO 8859-1 encoding.
+
### values() {#values--}
```
public static OpenTypeIsoEncoding[] values()
@@ -118,6 +127,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +138,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +154,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +170,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +181,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypelicensingrights/_index.md b/english/java/com.groupdocs.metadata.core/opentypelicensingrights/_index.md
index 38bb8cb6a3..81040646cf 100644
--- a/english/java/com.groupdocs.metadata.core/opentypelicensingrights/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypelicensingrights/_index.md
@@ -16,18 +16,27 @@ public final class OpenTypeLicensingRights implements IEnumValue
```
Indicates font embedding licensing rights for the font.
+
## Fields
| Field | Description |
| --- | --- |
-| [None](#None) | The undefined licensing rights. |
-| [UsagePermissionsMask](#UsagePermissionsMask) | Usage permissions mask. |
-| [InstallableEmbedding](#InstallableEmbedding) | Installable embedding. |
-| [RestrictedLicenseEmbedding](#RestrictedLicenseEmbedding) | Restricted License embedding. |
-| [PreviewAndPrintEmbedding](#PreviewAndPrintEmbedding) | Preview and Print embedding. |
-| [EditableEmbedding](#EditableEmbedding) | Editable embedding. |
-| [NoSubsetting](#NoSubsetting) | No subsetting. |
-| [BitmapEmbeddingOnly](#BitmapEmbeddingOnly) | Bitmap embedding only. |
+| [None](#None) | The undefined licensing rights.
+ |
+| [UsagePermissionsMask](#UsagePermissionsMask) | Usage permissions mask.
+ |
+| [InstallableEmbedding](#InstallableEmbedding) | Installable embedding.
+ |
+| [RestrictedLicenseEmbedding](#RestrictedLicenseEmbedding) | Restricted License embedding.
+ |
+| [PreviewAndPrintEmbedding](#PreviewAndPrintEmbedding) | Preview and Print embedding.
+ |
+| [EditableEmbedding](#EditableEmbedding) | Editable embedding.
+ |
+| [NoSubsetting](#NoSubsetting) | No subsetting.
+ |
+| [BitmapEmbeddingOnly](#BitmapEmbeddingOnly) | Bitmap embedding only.
+ |
## Methods
| Method | Description |
@@ -50,6 +59,7 @@ public static final OpenTypeLicensingRights None
The undefined licensing rights.
+
### UsagePermissionsMask {#UsagePermissionsMask}
```
public static final OpenTypeLicensingRights UsagePermissionsMask
@@ -58,13 +68,16 @@ public static final OpenTypeLicensingRights UsagePermissionsMask
Usage permissions mask.
+
### InstallableEmbedding {#InstallableEmbedding}
```
public static final OpenTypeLicensingRights InstallableEmbedding
```
-Installable embedding. The font may be embedded, and may be permanently installed for use on a remote systems, or for use by other users.
+Installable embedding.
+The font may be embedded, and may be permanently installed for use on a remote systems, or for use by other users.
+
### RestrictedLicenseEmbedding {#RestrictedLicenseEmbedding}
```
@@ -72,7 +85,9 @@ public static final OpenTypeLicensingRights RestrictedLicenseEmbedding
```
-Restricted License embedding. The font must not be modified, embedded or exchanged in any manner without first obtaining explicit permission of the legal owner.
+Restricted License embedding.
+The font must not be modified, embedded or exchanged in any manner without first obtaining explicit permission of the legal owner.
+
### PreviewAndPrintEmbedding {#PreviewAndPrintEmbedding}
```
@@ -80,7 +95,10 @@ public static final OpenTypeLicensingRights PreviewAndPrintEmbedding
```
-Preview and Print embedding. The font may be embedded, and may be temporarily loaded on other systems for purposes of viewing or printing the document. Documents containing Preview & Print fonts must be opened \\u201cread-only\\u201d; no edits can be applied to the document.
+Preview and Print embedding.
+The font may be embedded, and may be temporarily loaded on other systems for purposes of viewing or printing the document.
+Documents containing Preview \& Print fonts must be opened \\u201cread-only\\u201d; no edits can be applied to the document.
+
### EditableEmbedding {#EditableEmbedding}
```
@@ -88,7 +106,11 @@ public static final OpenTypeLicensingRights EditableEmbedding
```
-Editable embedding. The font may be embedded, and may be temporarily loaded on other systems. As with Preview and Print embedding, documents containing Editable fonts may be opened for reading. In addition, editing is permitted, including ability to format new text using the embedded font, and changes may be saved.
+Editable embedding.
+The font may be embedded, and may be temporarily loaded on other systems.
+As with Preview and Print embedding, documents containing Editable fonts may be opened for reading.
+In addition, editing is permitted, including ability to format new text using the embedded font, and changes may be saved.
+
### NoSubsetting {#NoSubsetting}
```
@@ -96,7 +118,9 @@ public static final OpenTypeLicensingRights NoSubsetting
```
-No subsetting. When this bit is set, the font may not be subsetted prior to embedding. Other embedding restrictions specified in bits 0 to 3 and bit 9 also apply.
+No subsetting.
+When this bit is set, the font may not be subsetted prior to embedding. Other embedding restrictions specified in bits 0 to 3 and bit 9 also apply.
+
### BitmapEmbeddingOnly {#BitmapEmbeddingOnly}
```
@@ -104,7 +128,11 @@ public static final OpenTypeLicensingRights BitmapEmbeddingOnly
```
-Bitmap embedding only. When this bit is set, only bitmaps contained in the font may be embedded. No outline data may be embedded. If there are no bitmaps available in the font, then the font is considered unembeddable and the embedding services will fail. Other embedding restrictions specified in bits 0-3 and 8 also apply.
+Bitmap embedding only.
+When this bit is set, only bitmaps contained in the font may be embedded. No outline data may be embedded.
+If there are no bitmaps available in the font, then the font is considered unembeddable and the embedding services will fail.
+Other embedding restrictions specified in bits 0-3 and 8 also apply.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
@@ -139,6 +167,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -149,6 +178,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -164,6 +194,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -179,6 +210,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -189,6 +221,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -199,6 +232,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/opentypemacintoshencoding/_index.md b/english/java/com.groupdocs.metadata.core/opentypemacintoshencoding/_index.md
index 09ea622884..97126bed34 100644
--- a/english/java/com.groupdocs.metadata.core/opentypemacintoshencoding/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypemacintoshencoding/_index.md
@@ -15,18 +15,28 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeMacintoshEncoding extends Enum implements IEnumValue
```
-Represents encoding for the OpenTypePlatform.Macintosh platform.
+Represents encoding for the
+OpenTypePlatform.Macintosh
+ platform.
+
## Fields
| Field | Description |
| --- | --- |
-| [DefaultSemantics](#DefaultSemantics) | Default semantics. |
-| [Version11Semantics](#Version11Semantics) | Version 1.1 semantics. |
-| [Iso106461993Semantics](#Iso106461993Semantics) | ISO 10646 1993 semantics (deprecated). |
-| [Unicode20BmpOnly](#Unicode20BmpOnly) | Unicode 2.0 or later semantics (BMP only). |
-| [Unicode20NonBmp](#Unicode20NonBmp) | Unicode 2.0 or later semantics (non-BMP characters allowed). |
-| [UnicodeVariationSequences](#UnicodeVariationSequences) | Unicode Variation Sequences. |
-| [FullUnicodeCoverage](#FullUnicodeCoverage) | Full Unicode coverage. |
+| [DefaultSemantics](#DefaultSemantics) | Default semantics.
+ |
+| [Version11Semantics](#Version11Semantics) | Version 1.1 semantics.
+ |
+| [Iso106461993Semantics](#Iso106461993Semantics) | ISO 10646 1993 semantics (deprecated).
+ |
+| [Unicode20BmpOnly](#Unicode20BmpOnly) | Unicode 2.0 or later semantics (BMP only).
+ |
+| [Unicode20NonBmp](#Unicode20NonBmp) | Unicode 2.0 or later semantics (non-BMP characters allowed).
+ |
+| [UnicodeVariationSequences](#UnicodeVariationSequences) | Unicode Variation Sequences.
+ |
+| [FullUnicodeCoverage](#FullUnicodeCoverage) | Full Unicode coverage.
+ |
## Methods
| Method | Description |
@@ -48,6 +58,7 @@ public static final OpenTypeMacintoshEncoding DefaultSemantics
Default semantics.
+
### Version11Semantics {#Version11Semantics}
```
public static final OpenTypeMacintoshEncoding Version11Semantics
@@ -56,6 +67,7 @@ public static final OpenTypeMacintoshEncoding Version11Semantics
Version 1.1 semantics.
+
### Iso106461993Semantics {#Iso106461993Semantics}
```
public static final OpenTypeMacintoshEncoding Iso106461993Semantics
@@ -64,6 +76,7 @@ public static final OpenTypeMacintoshEncoding Iso106461993Semantics
ISO 10646 1993 semantics (deprecated).
+
### Unicode20BmpOnly {#Unicode20BmpOnly}
```
public static final OpenTypeMacintoshEncoding Unicode20BmpOnly
@@ -72,6 +85,7 @@ public static final OpenTypeMacintoshEncoding Unicode20BmpOnly
Unicode 2.0 or later semantics (BMP only).
+
### Unicode20NonBmp {#Unicode20NonBmp}
```
public static final OpenTypeMacintoshEncoding Unicode20NonBmp
@@ -80,6 +94,7 @@ public static final OpenTypeMacintoshEncoding Unicode20NonBmp
Unicode 2.0 or later semantics (non-BMP characters allowed).
+
### UnicodeVariationSequences {#UnicodeVariationSequences}
```
public static final OpenTypeMacintoshEncoding UnicodeVariationSequences
@@ -88,6 +103,7 @@ public static final OpenTypeMacintoshEncoding UnicodeVariationSequences
Unicode Variation Sequences.
+
### FullUnicodeCoverage {#FullUnicodeCoverage}
```
public static final OpenTypeMacintoshEncoding FullUnicodeCoverage
@@ -96,6 +112,7 @@ public static final OpenTypeMacintoshEncoding FullUnicodeCoverage
Full Unicode coverage.
+
### values() {#values--}
```
public static OpenTypeMacintoshEncoding[] values()
@@ -154,6 +171,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -164,6 +182,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -179,6 +198,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -194,6 +214,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -204,5 +225,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypemacintoshlanguage/_index.md b/english/java/com.groupdocs.metadata.core/opentypemacintoshlanguage/_index.md
index 4ea246afb8..f49d9ca7e3 100644
--- a/english/java/com.groupdocs.metadata.core/opentypemacintoshlanguage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypemacintoshlanguage/_index.md
@@ -15,129 +15,250 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeMacintoshLanguage extends Enum implements IEnumValue
```
-Represents language enum for the OpenTypePlatform.Macintosh platform.
+Represents language enum for the
+OpenTypePlatform.Macintosh
+ platform.
+
## Fields
| Field | Description |
| --- | --- |
-| [English](#English) | The english language. |
-| [French](#French) | The french language. |
-| [German](#German) | The german language. |
-| [Italian](#Italian) | The italian language. |
-| [Dutch](#Dutch) | The dutch language. |
-| [Swedish](#Swedish) | The swedish language. |
-| [Spanish](#Spanish) | The spanish language. |
-| [Danish](#Danish) | The danish language. |
-| [Portuguese](#Portuguese) | The portuguese language. |
-| [Norwegian](#Norwegian) | The norwegian language. |
-| [Hebrew](#Hebrew) | The hebrew language. |
-| [Japanese](#Japanese) | The japanese language. |
-| [Arabic](#Arabic) | The arabic language. |
-| [Finnish](#Finnish) | The finnish language. |
-| [Greek](#Greek) | The greek language. |
-| [Icelandic](#Icelandic) | The icelandic language. |
-| [Maltese](#Maltese) | The maltese language. |
-| [Turkish](#Turkish) | The turkish language. |
-| [Croatian](#Croatian) | The croatian language. |
-| [ChineseTraditional](#ChineseTraditional) | The chinese traditional language. |
-| [Urdu](#Urdu) | The urdu language. |
-| [Hindi](#Hindi) | The hindi language. |
-| [Thai](#Thai) | The thai language. |
-| [Korean](#Korean) | The korean language. |
-| [Lithuanian](#Lithuanian) | The lithuanian language. |
-| [Polish](#Polish) | The polish language. |
-| [Hungarian](#Hungarian) | The hungarian language. |
-| [Estonian](#Estonian) | The estonian language. |
-| [Latvian](#Latvian) | The latvian language. |
-| [Sami](#Sami) | The sami language. |
-| [Faroese](#Faroese) | The faroese language. |
-| [FarsiPersian](#FarsiPersian) | The farsi persian language. |
-| [Russian](#Russian) | The russian language. |
-| [ChineseSimplified](#ChineseSimplified) | The chinese simplifie language. |
-| [Flemish](#Flemish) | The flemish language. |
-| [IrishGaelic](#IrishGaelic) | The irish gaelic language. |
-| [Albanian](#Albanian) | The albanian language. |
-| [Romanian](#Romanian) | The romanian language. |
-| [Czech](#Czech) | The czech language. |
-| [Slovak](#Slovak) | The slovak language. |
-| [Slovenian](#Slovenian) | The slovenian language. |
-| [Yiddish](#Yiddish) | The yiddish language. |
-| [Serbian](#Serbian) | The serbian language. |
-| [Macedonian](#Macedonian) | The macedonian language. |
-| [Bulgarian](#Bulgarian) | The bulgarian language. |
-| [Ukrainian](#Ukrainian) | The ukrainian language. |
-| [Byelorussian](#Byelorussian) | The byelorussian language. |
-| [Uzbek](#Uzbek) | The uzbek language. |
-| [Kazakh](#Kazakh) | The kazakh language. |
-| [AzerbaijaniCyrillic](#AzerbaijaniCyrillic) | The azerbaijani cyrillic language. |
-| [AzerbaijaniArabic](#AzerbaijaniArabic) | The azerbaijani arabic language. |
-| [Armenian](#Armenian) | The armenian language. |
-| [Georgian](#Georgian) | The georgian language. |
-| [Moldavian](#Moldavian) | The moldavian language. |
-| [Kirghiz](#Kirghiz) | The kirghiz language. |
-| [Tajiki](#Tajiki) | The tajiki language. |
-| [Turkmen](#Turkmen) | The turkmen language. |
-| [MongolianMongolian](#MongolianMongolian) | The mongolian mongolian language. |
-| [MongolianCyrillic](#MongolianCyrillic) | The mongolian cyrillic language. |
-| [Pashto](#Pashto) | The pashto language. |
-| [Kurdish](#Kurdish) | The kurdish language. |
-| [Kashmiri](#Kashmiri) | The kashmiri language. |
-| [Sindhi](#Sindhi) | The sindhi language. |
-| [Tibetan](#Tibetan) | The tibetan language. |
-| [Nepali](#Nepali) | The nepali language. |
-| [Sanskrit](#Sanskrit) | The sanskrit language. |
-| [Marathi](#Marathi) | The marathi language. |
-| [Bengali](#Bengali) | The bengali language. |
-| [Assamese](#Assamese) | The assamese language. |
-| [Gujarati](#Gujarati) | The gujarati language. |
-| [Punjabi](#Punjabi) | The punjabi language. |
-| [Oriya](#Oriya) | The oriya language. |
-| [Malayalam](#Malayalam) | The malayalam language. |
-| [Kannada](#Kannada) | The kannada language. |
-| [Tamil](#Tamil) | The tamil language. |
-| [Telugu](#Telugu) | The telugu language. |
-| [Sinhalese](#Sinhalese) | The sinhalese language. |
-| [Burmese](#Burmese) | The burmese language. |
-| [Khmer](#Khmer) | The khmer language. |
-| [Lao](#Lao) | The lao language. |
-| [Vietnamese](#Vietnamese) | The vietnamese language. |
-| [Indonesian](#Indonesian) | The indonesian language. |
-| [Tagalog](#Tagalog) | The tagalog language. |
-| [MalayRoman](#MalayRoman) | The malay roman language. |
-| [MalayArabic](#MalayArabic) | The malay arabic language. |
-| [Amharic](#Amharic) | The amharic language. |
-| [Tigrinya](#Tigrinya) | The tigrinya language. |
-| [Galla](#Galla) | The galla language. |
-| [Somali](#Somali) | The somali language. |
-| [Swahili](#Swahili) | The swahili language. |
-| [KinyarwandaOrRuanda](#KinyarwandaOrRuanda) | The kinyarwanda or ruanda language. |
-| [Rundi](#Rundi) | The rundi language. |
-| [NyanjaOrChewa](#NyanjaOrChewa) | The nyanja or chewa language. |
-| [Malagasy](#Malagasy) | The malagasy language. |
-| [Esperanto](#Esperanto) | The esperanto language. |
-| [Welsh](#Welsh) | The welsh language. |
-| [Basque](#Basque) | The basque language. |
-| [Catalan](#Catalan) | The catalan language. |
-| [Latin](#Latin) | The latin language. |
-| [Quechua](#Quechua) | The quechua language. |
-| [Guarani](#Guarani) | The guarani language. |
-| [Aymara](#Aymara) | The aymara language. |
-| [Tatar](#Tatar) | The tatar language. |
-| [Uighur](#Uighur) | The uighur language. |
-| [Dzongkha](#Dzongkha) | The dzongkha language. |
-| [JavaneseRoman](#JavaneseRoman) | The javanese roman language. |
-| [SundaneseRoman](#SundaneseRoman) | The sundanese roman language. |
-| [Galician](#Galician) | The galician language. |
-| [Afrikaans](#Afrikaans) | The afrikaans language. |
-| [Breton](#Breton) | The breton language. |
-| [Inuktitut](#Inuktitut) | The inuktitut language. |
-| [ScottishGaelic](#ScottishGaelic) | The scottish gaelic language. |
-| [ManxGaelic](#ManxGaelic) | The manx gaelic language. |
-| [IrishGaelicWithDotAbove](#IrishGaelicWithDotAbove) | The irish gaelic with dot above language. |
-| [Tongan](#Tongan) | The tongan language. |
-| [GreekPolytonic](#GreekPolytonic) | The greek polytonic language. |
-| [Greenlandic](#Greenlandic) | The greenlandic language. |
-| [AzerbaijaniRoman](#AzerbaijaniRoman) | The azerbaijani roman language. |
+| [English](#English) | The english language.
+ |
+| [French](#French) | The french language.
+ |
+| [German](#German) | The german language.
+ |
+| [Italian](#Italian) | The italian language.
+ |
+| [Dutch](#Dutch) | The dutch language.
+ |
+| [Swedish](#Swedish) | The swedish language.
+ |
+| [Spanish](#Spanish) | The spanish language.
+ |
+| [Danish](#Danish) | The danish language.
+ |
+| [Portuguese](#Portuguese) | The portuguese language.
+ |
+| [Norwegian](#Norwegian) | The norwegian language.
+ |
+| [Hebrew](#Hebrew) | The hebrew language.
+ |
+| [Japanese](#Japanese) | The japanese language.
+ |
+| [Arabic](#Arabic) | The arabic language.
+ |
+| [Finnish](#Finnish) | The finnish language.
+ |
+| [Greek](#Greek) | The greek language.
+ |
+| [Icelandic](#Icelandic) | The icelandic language.
+ |
+| [Maltese](#Maltese) | The maltese language.
+ |
+| [Turkish](#Turkish) | The turkish language.
+ |
+| [Croatian](#Croatian) | The croatian language.
+ |
+| [ChineseTraditional](#ChineseTraditional) | The chinese traditional language.
+ |
+| [Urdu](#Urdu) | The urdu language.
+ |
+| [Hindi](#Hindi) | The hindi language.
+ |
+| [Thai](#Thai) | The thai language.
+ |
+| [Korean](#Korean) | The korean language.
+ |
+| [Lithuanian](#Lithuanian) | The lithuanian language.
+ |
+| [Polish](#Polish) | The polish language.
+ |
+| [Hungarian](#Hungarian) | The hungarian language.
+ |
+| [Estonian](#Estonian) | The estonian language.
+ |
+| [Latvian](#Latvian) | The latvian language.
+ |
+| [Sami](#Sami) | The sami language.
+ |
+| [Faroese](#Faroese) | The faroese language.
+ |
+| [FarsiPersian](#FarsiPersian) | The farsi persian language.
+ |
+| [Russian](#Russian) | The russian language.
+ |
+| [ChineseSimplified](#ChineseSimplified) | The chinese simplifie language.
+ |
+| [Flemish](#Flemish) | The flemish language.
+ |
+| [IrishGaelic](#IrishGaelic) | The irish gaelic language.
+ |
+| [Albanian](#Albanian) | The albanian language.
+ |
+| [Romanian](#Romanian) | The romanian language.
+ |
+| [Czech](#Czech) | The czech language.
+ |
+| [Slovak](#Slovak) | The slovak language.
+ |
+| [Slovenian](#Slovenian) | The slovenian language.
+ |
+| [Yiddish](#Yiddish) | The yiddish language.
+ |
+| [Serbian](#Serbian) | The serbian language.
+ |
+| [Macedonian](#Macedonian) | The macedonian language.
+ |
+| [Bulgarian](#Bulgarian) | The bulgarian language.
+ |
+| [Ukrainian](#Ukrainian) | The ukrainian language.
+ |
+| [Byelorussian](#Byelorussian) | The byelorussian language.
+ |
+| [Uzbek](#Uzbek) | The uzbek language.
+ |
+| [Kazakh](#Kazakh) | The kazakh language.
+ |
+| [AzerbaijaniCyrillic](#AzerbaijaniCyrillic) | The azerbaijani cyrillic language.
+ |
+| [AzerbaijaniArabic](#AzerbaijaniArabic) | The azerbaijani arabic language.
+ |
+| [Armenian](#Armenian) | The armenian language.
+ |
+| [Georgian](#Georgian) | The georgian language.
+ |
+| [Moldavian](#Moldavian) | The moldavian language.
+ |
+| [Kirghiz](#Kirghiz) | The kirghiz language.
+ |
+| [Tajiki](#Tajiki) | The tajiki language.
+ |
+| [Turkmen](#Turkmen) | The turkmen language.
+ |
+| [MongolianMongolian](#MongolianMongolian) | The mongolian mongolian language.
+ |
+| [MongolianCyrillic](#MongolianCyrillic) | The mongolian cyrillic language.
+ |
+| [Pashto](#Pashto) | The pashto language.
+ |
+| [Kurdish](#Kurdish) | The kurdish language.
+ |
+| [Kashmiri](#Kashmiri) | The kashmiri language.
+ |
+| [Sindhi](#Sindhi) | The sindhi language.
+ |
+| [Tibetan](#Tibetan) | The tibetan language.
+ |
+| [Nepali](#Nepali) | The nepali language.
+ |
+| [Sanskrit](#Sanskrit) | The sanskrit language.
+ |
+| [Marathi](#Marathi) | The marathi language.
+ |
+| [Bengali](#Bengali) | The bengali language.
+ |
+| [Assamese](#Assamese) | The assamese language.
+ |
+| [Gujarati](#Gujarati) | The gujarati language.
+ |
+| [Punjabi](#Punjabi) | The punjabi language.
+ |
+| [Oriya](#Oriya) | The oriya language.
+ |
+| [Malayalam](#Malayalam) | The malayalam language.
+ |
+| [Kannada](#Kannada) | The kannada language.
+ |
+| [Tamil](#Tamil) | The tamil language.
+ |
+| [Telugu](#Telugu) | The telugu language.
+ |
+| [Sinhalese](#Sinhalese) | The sinhalese language.
+ |
+| [Burmese](#Burmese) | The burmese language.
+ |
+| [Khmer](#Khmer) | The khmer language.
+ |
+| [Lao](#Lao) | The lao language.
+ |
+| [Vietnamese](#Vietnamese) | The vietnamese language.
+ |
+| [Indonesian](#Indonesian) | The indonesian language.
+ |
+| [Tagalog](#Tagalog) | The tagalog language.
+ |
+| [MalayRoman](#MalayRoman) | The malay roman language.
+ |
+| [MalayArabic](#MalayArabic) | The malay arabic language.
+ |
+| [Amharic](#Amharic) | The amharic language.
+ |
+| [Tigrinya](#Tigrinya) | The tigrinya language.
+ |
+| [Galla](#Galla) | The galla language.
+ |
+| [Somali](#Somali) | The somali language.
+ |
+| [Swahili](#Swahili) | The swahili language.
+ |
+| [KinyarwandaOrRuanda](#KinyarwandaOrRuanda) | The kinyarwanda or ruanda language.
+ |
+| [Rundi](#Rundi) | The rundi language.
+ |
+| [NyanjaOrChewa](#NyanjaOrChewa) | The nyanja or chewa language.
+ |
+| [Malagasy](#Malagasy) | The malagasy language.
+ |
+| [Esperanto](#Esperanto) | The esperanto language.
+ |
+| [Welsh](#Welsh) | The welsh language.
+ |
+| [Basque](#Basque) | The basque language.
+ |
+| [Catalan](#Catalan) | The catalan language.
+ |
+| [Latin](#Latin) | The latin language.
+ |
+| [Quechua](#Quechua) | The quechua language.
+ |
+| [Guarani](#Guarani) | The guarani language.
+ |
+| [Aymara](#Aymara) | The aymara language.
+ |
+| [Tatar](#Tatar) | The tatar language.
+ |
+| [Uighur](#Uighur) | The uighur language.
+ |
+| [Dzongkha](#Dzongkha) | The dzongkha language.
+ |
+| [JavaneseRoman](#JavaneseRoman) | The javanese roman language.
+ |
+| [SundaneseRoman](#SundaneseRoman) | The sundanese roman language.
+ |
+| [Galician](#Galician) | The galician language.
+ |
+| [Afrikaans](#Afrikaans) | The afrikaans language.
+ |
+| [Breton](#Breton) | The breton language.
+ |
+| [Inuktitut](#Inuktitut) | The inuktitut language.
+ |
+| [ScottishGaelic](#ScottishGaelic) | The scottish gaelic language.
+ |
+| [ManxGaelic](#ManxGaelic) | The manx gaelic language.
+ |
+| [IrishGaelicWithDotAbove](#IrishGaelicWithDotAbove) | The irish gaelic with dot above language.
+ |
+| [Tongan](#Tongan) | The tongan language.
+ |
+| [GreekPolytonic](#GreekPolytonic) | The greek polytonic language.
+ |
+| [Greenlandic](#Greenlandic) | The greenlandic language.
+ |
+| [AzerbaijaniRoman](#AzerbaijaniRoman) | The azerbaijani roman language.
+ |
## Methods
| Method | Description |
@@ -159,6 +280,7 @@ public static final OpenTypeMacintoshLanguage English
The english language.
+
### French {#French}
```
public static final OpenTypeMacintoshLanguage French
@@ -167,6 +289,7 @@ public static final OpenTypeMacintoshLanguage French
The french language.
+
### German {#German}
```
public static final OpenTypeMacintoshLanguage German
@@ -175,6 +298,7 @@ public static final OpenTypeMacintoshLanguage German
The german language.
+
### Italian {#Italian}
```
public static final OpenTypeMacintoshLanguage Italian
@@ -183,6 +307,7 @@ public static final OpenTypeMacintoshLanguage Italian
The italian language.
+
### Dutch {#Dutch}
```
public static final OpenTypeMacintoshLanguage Dutch
@@ -191,6 +316,7 @@ public static final OpenTypeMacintoshLanguage Dutch
The dutch language.
+
### Swedish {#Swedish}
```
public static final OpenTypeMacintoshLanguage Swedish
@@ -199,6 +325,7 @@ public static final OpenTypeMacintoshLanguage Swedish
The swedish language.
+
### Spanish {#Spanish}
```
public static final OpenTypeMacintoshLanguage Spanish
@@ -207,6 +334,7 @@ public static final OpenTypeMacintoshLanguage Spanish
The spanish language.
+
### Danish {#Danish}
```
public static final OpenTypeMacintoshLanguage Danish
@@ -215,6 +343,7 @@ public static final OpenTypeMacintoshLanguage Danish
The danish language.
+
### Portuguese {#Portuguese}
```
public static final OpenTypeMacintoshLanguage Portuguese
@@ -223,6 +352,7 @@ public static final OpenTypeMacintoshLanguage Portuguese
The portuguese language.
+
### Norwegian {#Norwegian}
```
public static final OpenTypeMacintoshLanguage Norwegian
@@ -231,6 +361,7 @@ public static final OpenTypeMacintoshLanguage Norwegian
The norwegian language.
+
### Hebrew {#Hebrew}
```
public static final OpenTypeMacintoshLanguage Hebrew
@@ -239,6 +370,7 @@ public static final OpenTypeMacintoshLanguage Hebrew
The hebrew language.
+
### Japanese {#Japanese}
```
public static final OpenTypeMacintoshLanguage Japanese
@@ -247,6 +379,7 @@ public static final OpenTypeMacintoshLanguage Japanese
The japanese language.
+
### Arabic {#Arabic}
```
public static final OpenTypeMacintoshLanguage Arabic
@@ -255,6 +388,7 @@ public static final OpenTypeMacintoshLanguage Arabic
The arabic language.
+
### Finnish {#Finnish}
```
public static final OpenTypeMacintoshLanguage Finnish
@@ -263,6 +397,7 @@ public static final OpenTypeMacintoshLanguage Finnish
The finnish language.
+
### Greek {#Greek}
```
public static final OpenTypeMacintoshLanguage Greek
@@ -271,6 +406,7 @@ public static final OpenTypeMacintoshLanguage Greek
The greek language.
+
### Icelandic {#Icelandic}
```
public static final OpenTypeMacintoshLanguage Icelandic
@@ -279,6 +415,7 @@ public static final OpenTypeMacintoshLanguage Icelandic
The icelandic language.
+
### Maltese {#Maltese}
```
public static final OpenTypeMacintoshLanguage Maltese
@@ -287,6 +424,7 @@ public static final OpenTypeMacintoshLanguage Maltese
The maltese language.
+
### Turkish {#Turkish}
```
public static final OpenTypeMacintoshLanguage Turkish
@@ -295,6 +433,7 @@ public static final OpenTypeMacintoshLanguage Turkish
The turkish language.
+
### Croatian {#Croatian}
```
public static final OpenTypeMacintoshLanguage Croatian
@@ -303,6 +442,7 @@ public static final OpenTypeMacintoshLanguage Croatian
The croatian language.
+
### ChineseTraditional {#ChineseTraditional}
```
public static final OpenTypeMacintoshLanguage ChineseTraditional
@@ -311,6 +451,7 @@ public static final OpenTypeMacintoshLanguage ChineseTraditional
The chinese traditional language.
+
### Urdu {#Urdu}
```
public static final OpenTypeMacintoshLanguage Urdu
@@ -319,6 +460,7 @@ public static final OpenTypeMacintoshLanguage Urdu
The urdu language.
+
### Hindi {#Hindi}
```
public static final OpenTypeMacintoshLanguage Hindi
@@ -327,6 +469,7 @@ public static final OpenTypeMacintoshLanguage Hindi
The hindi language.
+
### Thai {#Thai}
```
public static final OpenTypeMacintoshLanguage Thai
@@ -335,6 +478,7 @@ public static final OpenTypeMacintoshLanguage Thai
The thai language.
+
### Korean {#Korean}
```
public static final OpenTypeMacintoshLanguage Korean
@@ -343,6 +487,7 @@ public static final OpenTypeMacintoshLanguage Korean
The korean language.
+
### Lithuanian {#Lithuanian}
```
public static final OpenTypeMacintoshLanguage Lithuanian
@@ -351,6 +496,7 @@ public static final OpenTypeMacintoshLanguage Lithuanian
The lithuanian language.
+
### Polish {#Polish}
```
public static final OpenTypeMacintoshLanguage Polish
@@ -359,6 +505,7 @@ public static final OpenTypeMacintoshLanguage Polish
The polish language.
+
### Hungarian {#Hungarian}
```
public static final OpenTypeMacintoshLanguage Hungarian
@@ -367,6 +514,7 @@ public static final OpenTypeMacintoshLanguage Hungarian
The hungarian language.
+
### Estonian {#Estonian}
```
public static final OpenTypeMacintoshLanguage Estonian
@@ -375,6 +523,7 @@ public static final OpenTypeMacintoshLanguage Estonian
The estonian language.
+
### Latvian {#Latvian}
```
public static final OpenTypeMacintoshLanguage Latvian
@@ -383,6 +532,7 @@ public static final OpenTypeMacintoshLanguage Latvian
The latvian language.
+
### Sami {#Sami}
```
public static final OpenTypeMacintoshLanguage Sami
@@ -391,6 +541,7 @@ public static final OpenTypeMacintoshLanguage Sami
The sami language.
+
### Faroese {#Faroese}
```
public static final OpenTypeMacintoshLanguage Faroese
@@ -399,6 +550,7 @@ public static final OpenTypeMacintoshLanguage Faroese
The faroese language.
+
### FarsiPersian {#FarsiPersian}
```
public static final OpenTypeMacintoshLanguage FarsiPersian
@@ -407,6 +559,7 @@ public static final OpenTypeMacintoshLanguage FarsiPersian
The farsi persian language.
+
### Russian {#Russian}
```
public static final OpenTypeMacintoshLanguage Russian
@@ -415,6 +568,7 @@ public static final OpenTypeMacintoshLanguage Russian
The russian language.
+
### ChineseSimplified {#ChineseSimplified}
```
public static final OpenTypeMacintoshLanguage ChineseSimplified
@@ -423,6 +577,7 @@ public static final OpenTypeMacintoshLanguage ChineseSimplified
The chinese simplifie language.
+
### Flemish {#Flemish}
```
public static final OpenTypeMacintoshLanguage Flemish
@@ -431,6 +586,7 @@ public static final OpenTypeMacintoshLanguage Flemish
The flemish language.
+
### IrishGaelic {#IrishGaelic}
```
public static final OpenTypeMacintoshLanguage IrishGaelic
@@ -439,6 +595,7 @@ public static final OpenTypeMacintoshLanguage IrishGaelic
The irish gaelic language.
+
### Albanian {#Albanian}
```
public static final OpenTypeMacintoshLanguage Albanian
@@ -447,6 +604,7 @@ public static final OpenTypeMacintoshLanguage Albanian
The albanian language.
+
### Romanian {#Romanian}
```
public static final OpenTypeMacintoshLanguage Romanian
@@ -455,6 +613,7 @@ public static final OpenTypeMacintoshLanguage Romanian
The romanian language.
+
### Czech {#Czech}
```
public static final OpenTypeMacintoshLanguage Czech
@@ -463,6 +622,7 @@ public static final OpenTypeMacintoshLanguage Czech
The czech language.
+
### Slovak {#Slovak}
```
public static final OpenTypeMacintoshLanguage Slovak
@@ -471,6 +631,7 @@ public static final OpenTypeMacintoshLanguage Slovak
The slovak language.
+
### Slovenian {#Slovenian}
```
public static final OpenTypeMacintoshLanguage Slovenian
@@ -479,6 +640,7 @@ public static final OpenTypeMacintoshLanguage Slovenian
The slovenian language.
+
### Yiddish {#Yiddish}
```
public static final OpenTypeMacintoshLanguage Yiddish
@@ -487,6 +649,7 @@ public static final OpenTypeMacintoshLanguage Yiddish
The yiddish language.
+
### Serbian {#Serbian}
```
public static final OpenTypeMacintoshLanguage Serbian
@@ -495,6 +658,7 @@ public static final OpenTypeMacintoshLanguage Serbian
The serbian language.
+
### Macedonian {#Macedonian}
```
public static final OpenTypeMacintoshLanguage Macedonian
@@ -503,6 +667,7 @@ public static final OpenTypeMacintoshLanguage Macedonian
The macedonian language.
+
### Bulgarian {#Bulgarian}
```
public static final OpenTypeMacintoshLanguage Bulgarian
@@ -511,6 +676,7 @@ public static final OpenTypeMacintoshLanguage Bulgarian
The bulgarian language.
+
### Ukrainian {#Ukrainian}
```
public static final OpenTypeMacintoshLanguage Ukrainian
@@ -519,6 +685,7 @@ public static final OpenTypeMacintoshLanguage Ukrainian
The ukrainian language.
+
### Byelorussian {#Byelorussian}
```
public static final OpenTypeMacintoshLanguage Byelorussian
@@ -527,6 +694,7 @@ public static final OpenTypeMacintoshLanguage Byelorussian
The byelorussian language.
+
### Uzbek {#Uzbek}
```
public static final OpenTypeMacintoshLanguage Uzbek
@@ -535,6 +703,7 @@ public static final OpenTypeMacintoshLanguage Uzbek
The uzbek language.
+
### Kazakh {#Kazakh}
```
public static final OpenTypeMacintoshLanguage Kazakh
@@ -543,6 +712,7 @@ public static final OpenTypeMacintoshLanguage Kazakh
The kazakh language.
+
### AzerbaijaniCyrillic {#AzerbaijaniCyrillic}
```
public static final OpenTypeMacintoshLanguage AzerbaijaniCyrillic
@@ -551,6 +721,7 @@ public static final OpenTypeMacintoshLanguage AzerbaijaniCyrillic
The azerbaijani cyrillic language.
+
### AzerbaijaniArabic {#AzerbaijaniArabic}
```
public static final OpenTypeMacintoshLanguage AzerbaijaniArabic
@@ -559,6 +730,7 @@ public static final OpenTypeMacintoshLanguage AzerbaijaniArabic
The azerbaijani arabic language.
+
### Armenian {#Armenian}
```
public static final OpenTypeMacintoshLanguage Armenian
@@ -567,6 +739,7 @@ public static final OpenTypeMacintoshLanguage Armenian
The armenian language.
+
### Georgian {#Georgian}
```
public static final OpenTypeMacintoshLanguage Georgian
@@ -575,6 +748,7 @@ public static final OpenTypeMacintoshLanguage Georgian
The georgian language.
+
### Moldavian {#Moldavian}
```
public static final OpenTypeMacintoshLanguage Moldavian
@@ -583,6 +757,7 @@ public static final OpenTypeMacintoshLanguage Moldavian
The moldavian language.
+
### Kirghiz {#Kirghiz}
```
public static final OpenTypeMacintoshLanguage Kirghiz
@@ -591,6 +766,7 @@ public static final OpenTypeMacintoshLanguage Kirghiz
The kirghiz language.
+
### Tajiki {#Tajiki}
```
public static final OpenTypeMacintoshLanguage Tajiki
@@ -599,6 +775,7 @@ public static final OpenTypeMacintoshLanguage Tajiki
The tajiki language.
+
### Turkmen {#Turkmen}
```
public static final OpenTypeMacintoshLanguage Turkmen
@@ -607,6 +784,7 @@ public static final OpenTypeMacintoshLanguage Turkmen
The turkmen language.
+
### MongolianMongolian {#MongolianMongolian}
```
public static final OpenTypeMacintoshLanguage MongolianMongolian
@@ -615,6 +793,7 @@ public static final OpenTypeMacintoshLanguage MongolianMongolian
The mongolian mongolian language.
+
### MongolianCyrillic {#MongolianCyrillic}
```
public static final OpenTypeMacintoshLanguage MongolianCyrillic
@@ -623,6 +802,7 @@ public static final OpenTypeMacintoshLanguage MongolianCyrillic
The mongolian cyrillic language.
+
### Pashto {#Pashto}
```
public static final OpenTypeMacintoshLanguage Pashto
@@ -631,6 +811,7 @@ public static final OpenTypeMacintoshLanguage Pashto
The pashto language.
+
### Kurdish {#Kurdish}
```
public static final OpenTypeMacintoshLanguage Kurdish
@@ -639,6 +820,7 @@ public static final OpenTypeMacintoshLanguage Kurdish
The kurdish language.
+
### Kashmiri {#Kashmiri}
```
public static final OpenTypeMacintoshLanguage Kashmiri
@@ -647,6 +829,7 @@ public static final OpenTypeMacintoshLanguage Kashmiri
The kashmiri language.
+
### Sindhi {#Sindhi}
```
public static final OpenTypeMacintoshLanguage Sindhi
@@ -655,6 +838,7 @@ public static final OpenTypeMacintoshLanguage Sindhi
The sindhi language.
+
### Tibetan {#Tibetan}
```
public static final OpenTypeMacintoshLanguage Tibetan
@@ -663,6 +847,7 @@ public static final OpenTypeMacintoshLanguage Tibetan
The tibetan language.
+
### Nepali {#Nepali}
```
public static final OpenTypeMacintoshLanguage Nepali
@@ -671,6 +856,7 @@ public static final OpenTypeMacintoshLanguage Nepali
The nepali language.
+
### Sanskrit {#Sanskrit}
```
public static final OpenTypeMacintoshLanguage Sanskrit
@@ -679,6 +865,7 @@ public static final OpenTypeMacintoshLanguage Sanskrit
The sanskrit language.
+
### Marathi {#Marathi}
```
public static final OpenTypeMacintoshLanguage Marathi
@@ -687,6 +874,7 @@ public static final OpenTypeMacintoshLanguage Marathi
The marathi language.
+
### Bengali {#Bengali}
```
public static final OpenTypeMacintoshLanguage Bengali
@@ -695,6 +883,7 @@ public static final OpenTypeMacintoshLanguage Bengali
The bengali language.
+
### Assamese {#Assamese}
```
public static final OpenTypeMacintoshLanguage Assamese
@@ -703,6 +892,7 @@ public static final OpenTypeMacintoshLanguage Assamese
The assamese language.
+
### Gujarati {#Gujarati}
```
public static final OpenTypeMacintoshLanguage Gujarati
@@ -711,6 +901,7 @@ public static final OpenTypeMacintoshLanguage Gujarati
The gujarati language.
+
### Punjabi {#Punjabi}
```
public static final OpenTypeMacintoshLanguage Punjabi
@@ -719,6 +910,7 @@ public static final OpenTypeMacintoshLanguage Punjabi
The punjabi language.
+
### Oriya {#Oriya}
```
public static final OpenTypeMacintoshLanguage Oriya
@@ -727,6 +919,7 @@ public static final OpenTypeMacintoshLanguage Oriya
The oriya language.
+
### Malayalam {#Malayalam}
```
public static final OpenTypeMacintoshLanguage Malayalam
@@ -735,6 +928,7 @@ public static final OpenTypeMacintoshLanguage Malayalam
The malayalam language.
+
### Kannada {#Kannada}
```
public static final OpenTypeMacintoshLanguage Kannada
@@ -743,6 +937,7 @@ public static final OpenTypeMacintoshLanguage Kannada
The kannada language.
+
### Tamil {#Tamil}
```
public static final OpenTypeMacintoshLanguage Tamil
@@ -751,6 +946,7 @@ public static final OpenTypeMacintoshLanguage Tamil
The tamil language.
+
### Telugu {#Telugu}
```
public static final OpenTypeMacintoshLanguage Telugu
@@ -759,6 +955,7 @@ public static final OpenTypeMacintoshLanguage Telugu
The telugu language.
+
### Sinhalese {#Sinhalese}
```
public static final OpenTypeMacintoshLanguage Sinhalese
@@ -767,6 +964,7 @@ public static final OpenTypeMacintoshLanguage Sinhalese
The sinhalese language.
+
### Burmese {#Burmese}
```
public static final OpenTypeMacintoshLanguage Burmese
@@ -775,6 +973,7 @@ public static final OpenTypeMacintoshLanguage Burmese
The burmese language.
+
### Khmer {#Khmer}
```
public static final OpenTypeMacintoshLanguage Khmer
@@ -783,6 +982,7 @@ public static final OpenTypeMacintoshLanguage Khmer
The khmer language.
+
### Lao {#Lao}
```
public static final OpenTypeMacintoshLanguage Lao
@@ -791,6 +991,7 @@ public static final OpenTypeMacintoshLanguage Lao
The lao language.
+
### Vietnamese {#Vietnamese}
```
public static final OpenTypeMacintoshLanguage Vietnamese
@@ -799,6 +1000,7 @@ public static final OpenTypeMacintoshLanguage Vietnamese
The vietnamese language.
+
### Indonesian {#Indonesian}
```
public static final OpenTypeMacintoshLanguage Indonesian
@@ -807,6 +1009,7 @@ public static final OpenTypeMacintoshLanguage Indonesian
The indonesian language.
+
### Tagalog {#Tagalog}
```
public static final OpenTypeMacintoshLanguage Tagalog
@@ -815,6 +1018,7 @@ public static final OpenTypeMacintoshLanguage Tagalog
The tagalog language.
+
### MalayRoman {#MalayRoman}
```
public static final OpenTypeMacintoshLanguage MalayRoman
@@ -823,6 +1027,7 @@ public static final OpenTypeMacintoshLanguage MalayRoman
The malay roman language.
+
### MalayArabic {#MalayArabic}
```
public static final OpenTypeMacintoshLanguage MalayArabic
@@ -831,6 +1036,7 @@ public static final OpenTypeMacintoshLanguage MalayArabic
The malay arabic language.
+
### Amharic {#Amharic}
```
public static final OpenTypeMacintoshLanguage Amharic
@@ -839,6 +1045,7 @@ public static final OpenTypeMacintoshLanguage Amharic
The amharic language.
+
### Tigrinya {#Tigrinya}
```
public static final OpenTypeMacintoshLanguage Tigrinya
@@ -847,6 +1054,7 @@ public static final OpenTypeMacintoshLanguage Tigrinya
The tigrinya language.
+
### Galla {#Galla}
```
public static final OpenTypeMacintoshLanguage Galla
@@ -855,6 +1063,7 @@ public static final OpenTypeMacintoshLanguage Galla
The galla language.
+
### Somali {#Somali}
```
public static final OpenTypeMacintoshLanguage Somali
@@ -863,6 +1072,7 @@ public static final OpenTypeMacintoshLanguage Somali
The somali language.
+
### Swahili {#Swahili}
```
public static final OpenTypeMacintoshLanguage Swahili
@@ -871,6 +1081,7 @@ public static final OpenTypeMacintoshLanguage Swahili
The swahili language.
+
### KinyarwandaOrRuanda {#KinyarwandaOrRuanda}
```
public static final OpenTypeMacintoshLanguage KinyarwandaOrRuanda
@@ -879,6 +1090,7 @@ public static final OpenTypeMacintoshLanguage KinyarwandaOrRuanda
The kinyarwanda or ruanda language.
+
### Rundi {#Rundi}
```
public static final OpenTypeMacintoshLanguage Rundi
@@ -887,6 +1099,7 @@ public static final OpenTypeMacintoshLanguage Rundi
The rundi language.
+
### NyanjaOrChewa {#NyanjaOrChewa}
```
public static final OpenTypeMacintoshLanguage NyanjaOrChewa
@@ -895,6 +1108,7 @@ public static final OpenTypeMacintoshLanguage NyanjaOrChewa
The nyanja or chewa language.
+
### Malagasy {#Malagasy}
```
public static final OpenTypeMacintoshLanguage Malagasy
@@ -903,6 +1117,7 @@ public static final OpenTypeMacintoshLanguage Malagasy
The malagasy language.
+
### Esperanto {#Esperanto}
```
public static final OpenTypeMacintoshLanguage Esperanto
@@ -911,6 +1126,7 @@ public static final OpenTypeMacintoshLanguage Esperanto
The esperanto language.
+
### Welsh {#Welsh}
```
public static final OpenTypeMacintoshLanguage Welsh
@@ -919,6 +1135,7 @@ public static final OpenTypeMacintoshLanguage Welsh
The welsh language.
+
### Basque {#Basque}
```
public static final OpenTypeMacintoshLanguage Basque
@@ -927,6 +1144,7 @@ public static final OpenTypeMacintoshLanguage Basque
The basque language.
+
### Catalan {#Catalan}
```
public static final OpenTypeMacintoshLanguage Catalan
@@ -935,6 +1153,7 @@ public static final OpenTypeMacintoshLanguage Catalan
The catalan language.
+
### Latin {#Latin}
```
public static final OpenTypeMacintoshLanguage Latin
@@ -943,6 +1162,7 @@ public static final OpenTypeMacintoshLanguage Latin
The latin language.
+
### Quechua {#Quechua}
```
public static final OpenTypeMacintoshLanguage Quechua
@@ -951,6 +1171,7 @@ public static final OpenTypeMacintoshLanguage Quechua
The quechua language.
+
### Guarani {#Guarani}
```
public static final OpenTypeMacintoshLanguage Guarani
@@ -959,6 +1180,7 @@ public static final OpenTypeMacintoshLanguage Guarani
The guarani language.
+
### Aymara {#Aymara}
```
public static final OpenTypeMacintoshLanguage Aymara
@@ -967,6 +1189,7 @@ public static final OpenTypeMacintoshLanguage Aymara
The aymara language.
+
### Tatar {#Tatar}
```
public static final OpenTypeMacintoshLanguage Tatar
@@ -975,6 +1198,7 @@ public static final OpenTypeMacintoshLanguage Tatar
The tatar language.
+
### Uighur {#Uighur}
```
public static final OpenTypeMacintoshLanguage Uighur
@@ -983,6 +1207,7 @@ public static final OpenTypeMacintoshLanguage Uighur
The uighur language.
+
### Dzongkha {#Dzongkha}
```
public static final OpenTypeMacintoshLanguage Dzongkha
@@ -991,6 +1216,7 @@ public static final OpenTypeMacintoshLanguage Dzongkha
The dzongkha language.
+
### JavaneseRoman {#JavaneseRoman}
```
public static final OpenTypeMacintoshLanguage JavaneseRoman
@@ -999,6 +1225,7 @@ public static final OpenTypeMacintoshLanguage JavaneseRoman
The javanese roman language.
+
### SundaneseRoman {#SundaneseRoman}
```
public static final OpenTypeMacintoshLanguage SundaneseRoman
@@ -1007,6 +1234,7 @@ public static final OpenTypeMacintoshLanguage SundaneseRoman
The sundanese roman language.
+
### Galician {#Galician}
```
public static final OpenTypeMacintoshLanguage Galician
@@ -1015,6 +1243,7 @@ public static final OpenTypeMacintoshLanguage Galician
The galician language.
+
### Afrikaans {#Afrikaans}
```
public static final OpenTypeMacintoshLanguage Afrikaans
@@ -1023,6 +1252,7 @@ public static final OpenTypeMacintoshLanguage Afrikaans
The afrikaans language.
+
### Breton {#Breton}
```
public static final OpenTypeMacintoshLanguage Breton
@@ -1031,6 +1261,7 @@ public static final OpenTypeMacintoshLanguage Breton
The breton language.
+
### Inuktitut {#Inuktitut}
```
public static final OpenTypeMacintoshLanguage Inuktitut
@@ -1039,6 +1270,7 @@ public static final OpenTypeMacintoshLanguage Inuktitut
The inuktitut language.
+
### ScottishGaelic {#ScottishGaelic}
```
public static final OpenTypeMacintoshLanguage ScottishGaelic
@@ -1047,6 +1279,7 @@ public static final OpenTypeMacintoshLanguage ScottishGaelic
The scottish gaelic language.
+
### ManxGaelic {#ManxGaelic}
```
public static final OpenTypeMacintoshLanguage ManxGaelic
@@ -1055,6 +1288,7 @@ public static final OpenTypeMacintoshLanguage ManxGaelic
The manx gaelic language.
+
### IrishGaelicWithDotAbove {#IrishGaelicWithDotAbove}
```
public static final OpenTypeMacintoshLanguage IrishGaelicWithDotAbove
@@ -1063,6 +1297,7 @@ public static final OpenTypeMacintoshLanguage IrishGaelicWithDotAbove
The irish gaelic with dot above language.
+
### Tongan {#Tongan}
```
public static final OpenTypeMacintoshLanguage Tongan
@@ -1071,6 +1306,7 @@ public static final OpenTypeMacintoshLanguage Tongan
The tongan language.
+
### GreekPolytonic {#GreekPolytonic}
```
public static final OpenTypeMacintoshLanguage GreekPolytonic
@@ -1079,6 +1315,7 @@ public static final OpenTypeMacintoshLanguage GreekPolytonic
The greek polytonic language.
+
### Greenlandic {#Greenlandic}
```
public static final OpenTypeMacintoshLanguage Greenlandic
@@ -1087,6 +1324,7 @@ public static final OpenTypeMacintoshLanguage Greenlandic
The greenlandic language.
+
### AzerbaijaniRoman {#AzerbaijaniRoman}
```
public static final OpenTypeMacintoshLanguage AzerbaijaniRoman
@@ -1095,6 +1333,7 @@ public static final OpenTypeMacintoshLanguage AzerbaijaniRoman
The azerbaijani roman language.
+
### values() {#values--}
```
public static OpenTypeMacintoshLanguage[] values()
@@ -1153,6 +1392,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -1163,6 +1403,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -1178,6 +1419,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -1193,6 +1435,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -1203,5 +1446,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypemacintoshnamerecord/_index.md b/english/java/com.groupdocs.metadata.core/opentypemacintoshnamerecord/_index.md
index 44fdbf16ff..66c63c8f79 100644
--- a/english/java/com.groupdocs.metadata.core/opentypemacintoshnamerecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypemacintoshnamerecord/_index.md
@@ -12,20 +12,26 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class OpenTypeMacintoshNameRecord extends OpenTypeBaseNameRecord
```
-Represents the Name record table value for the OpenTypePlatform.Macintosh platform.
+Represents the Name record table value for the
+OpenTypePlatform.Macintosh
+ platform.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
+
+
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getEncoding()](#getEncoding--) | Gets the encoding identifier. |
-| [getLanguage()](#getLanguage--) | Gets the language identifier. |
+| [getEncoding()](#getEncoding--) | Gets the encoding identifier.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language identifier.
+ |
### getEncoding() {#getEncoding--}
```
public final OpenTypeMacintoshEncoding getEncoding()
@@ -34,8 +40,10 @@ public final OpenTypeMacintoshEncoding getEncoding()
Gets the encoding identifier.
+
**Returns:**
[OpenTypeMacintoshEncoding](../../com.groupdocs.metadata.core/opentypemacintoshencoding) - The encoding identifier.
+
### getLanguage() {#getLanguage--}
```
public final OpenTypeMacintoshLanguage getLanguage()
@@ -44,5 +52,7 @@ public final OpenTypeMacintoshLanguage getLanguage()
Gets the language identifier.
+
**Returns:**
[OpenTypeMacintoshLanguage](../../com.groupdocs.metadata.core/opentypemacintoshlanguage) - The language identifier.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypename/_index.md b/english/java/com.groupdocs.metadata.core/opentypename/_index.md
index 3b45b007a7..5eeea28c1d 100644
--- a/english/java/com.groupdocs.metadata.core/opentypename/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypename/_index.md
@@ -16,35 +16,61 @@ public enum OpenTypeName extends Enum implements IEnumValue
```
Defines pre-defined IDs, they apply to all platforms unless indicated otherwise.
+
## Fields
| Field | Description |
| --- | --- |
-| [CopyrightNotice](#CopyrightNotice) | Copyright notice. |
-| [FontFamilyName](#FontFamilyName) | Font Family name. |
-| [FontSubfamilyName](#FontSubfamilyName) | Font Subfamily name. |
-| [UniqueFontIdentifier](#UniqueFontIdentifier) | Unique font identifier. |
-| [FullFontName](#FullFontName) | Full font name that reflects all family and relevant subfamily descriptors. |
-| [VersionString](#VersionString) | Version string. |
-| [PostScriptName](#PostScriptName) | PostScript name for the font. |
-| [Trademark](#Trademark) | Trademark notice/information for this font. |
-| [ManufacturerName](#ManufacturerName) | Manufacturer Name. |
-| [Designer](#Designer) | Designer), name of the designer of the typeface. |
-| [Description](#Description) | Description of the typeface. |
-| [UrlVendor](#UrlVendor) | URL of font vendor (with protocol, e.g., http://, ftp://). |
-| [UrlDesigner](#UrlDesigner) | URL of typeface designer (with protocol, e.g., http://, ftp://). |
-| [LicenseDescription](#LicenseDescription) | Description of how the font may be legally used, or different example scenarios for licensed use. |
-| [LicenseInfoUrl](#LicenseInfoUrl) | URL where additional licensing information can be found. |
-| [TypographicFamily](#TypographicFamily) | Typographic Family name. |
-| [TypographicSubfamily](#TypographicSubfamily) | Typographic Subfamily name. |
-| [CompatibleFull](#CompatibleFull) | Compatible Full (Macintosh only). |
-| [SampleText](#SampleText) | Sample text. |
-| [PostScriptCidFindfont](#PostScriptCidFindfont) | PostScript CID findfont name. |
-| [WwsFamilyName](#WwsFamilyName) | WWS Family Name. |
-| [WwsSubfamilyName](#WwsSubfamilyName) | WWS Subfamily Name. |
-| [LightBackgroundPalette](#LightBackgroundPalette) | Light Background Palette. |
-| [DarkBackgroundPalette](#DarkBackgroundPalette) | Dark Background Palette. |
-| [VariationsPostScriptNamePrefix](#VariationsPostScriptNamePrefix) | Variations PostScript Name Prefix. |
+| [CopyrightNotice](#CopyrightNotice) | Copyright notice.
+ |
+| [FontFamilyName](#FontFamilyName) | Font Family name.
+ |
+| [FontSubfamilyName](#FontSubfamilyName) | Font Subfamily name.
+ |
+| [UniqueFontIdentifier](#UniqueFontIdentifier) | Unique font identifier.
+ |
+| [FullFontName](#FullFontName) | Full font name that reflects all family and relevant subfamily descriptors.
+ |
+| [VersionString](#VersionString) | Version string.
+ |
+| [PostScriptName](#PostScriptName) | PostScript name for the font.
+ |
+| [Trademark](#Trademark) | Trademark notice/information for this font.
+ |
+| [ManufacturerName](#ManufacturerName) | Manufacturer Name.
+ |
+| [Designer](#Designer) | Designer), name of the designer of the typeface.
+ |
+| [Description](#Description) | Description of the typeface.
+ |
+| [UrlVendor](#UrlVendor) | URL of font vendor (with protocol, e.g., http://, ftp://).
+ |
+| [UrlDesigner](#UrlDesigner) | URL of typeface designer (with protocol, e.g., http://, ftp://).
+ |
+| [LicenseDescription](#LicenseDescription) | Description of how the font may be legally used, or different example scenarios for licensed use.
+ |
+| [LicenseInfoUrl](#LicenseInfoUrl) | URL where additional licensing information can be found.
+ |
+| [TypographicFamily](#TypographicFamily) | Typographic Family name.
+ |
+| [TypographicSubfamily](#TypographicSubfamily) | Typographic Subfamily name.
+ |
+| [CompatibleFull](#CompatibleFull) | Compatible Full (Macintosh only).
+ |
+| [SampleText](#SampleText) | Sample text.
+ |
+| [PostScriptCidFindfont](#PostScriptCidFindfont) | PostScript CID findfont name.
+ |
+| [WwsFamilyName](#WwsFamilyName) | WWS Family Name.
+ |
+| [WwsSubfamilyName](#WwsSubfamilyName) | WWS Subfamily Name.
+ |
+| [LightBackgroundPalette](#LightBackgroundPalette) | Light Background Palette.
+ |
+| [DarkBackgroundPalette](#DarkBackgroundPalette) | Dark Background Palette.
+ |
+| [VariationsPostScriptNamePrefix](#VariationsPostScriptNamePrefix) | Variations PostScript Name Prefix.
+ |
## Methods
| Method | Description |
@@ -66,6 +92,7 @@ public static final OpenTypeName CopyrightNotice
Copyright notice.
+
### FontFamilyName {#FontFamilyName}
```
public static final OpenTypeName FontFamilyName
@@ -74,6 +101,7 @@ public static final OpenTypeName FontFamilyName
Font Family name.
+
### FontSubfamilyName {#FontSubfamilyName}
```
public static final OpenTypeName FontSubfamilyName
@@ -82,6 +110,7 @@ public static final OpenTypeName FontSubfamilyName
Font Subfamily name.
+
### UniqueFontIdentifier {#UniqueFontIdentifier}
```
public static final OpenTypeName UniqueFontIdentifier
@@ -90,6 +119,7 @@ public static final OpenTypeName UniqueFontIdentifier
Unique font identifier.
+
### FullFontName {#FullFontName}
```
public static final OpenTypeName FullFontName
@@ -98,6 +128,7 @@ public static final OpenTypeName FullFontName
Full font name that reflects all family and relevant subfamily descriptors.
+
### VersionString {#VersionString}
```
public static final OpenTypeName VersionString
@@ -106,6 +137,7 @@ public static final OpenTypeName VersionString
Version string.
+
### PostScriptName {#PostScriptName}
```
public static final OpenTypeName PostScriptName
@@ -114,6 +146,7 @@ public static final OpenTypeName PostScriptName
PostScript name for the font.
+
### Trademark {#Trademark}
```
public static final OpenTypeName Trademark
@@ -122,6 +155,7 @@ public static final OpenTypeName Trademark
Trademark notice/information for this font.
+
### ManufacturerName {#ManufacturerName}
```
public static final OpenTypeName ManufacturerName
@@ -130,6 +164,7 @@ public static final OpenTypeName ManufacturerName
Manufacturer Name.
+
### Designer {#Designer}
```
public static final OpenTypeName Designer
@@ -138,6 +173,7 @@ public static final OpenTypeName Designer
Designer), name of the designer of the typeface.
+
### Description {#Description}
```
public static final OpenTypeName Description
@@ -146,6 +182,7 @@ public static final OpenTypeName Description
Description of the typeface.
+
### UrlVendor {#UrlVendor}
```
public static final OpenTypeName UrlVendor
@@ -154,6 +191,7 @@ public static final OpenTypeName UrlVendor
URL of font vendor (with protocol, e.g., http://, ftp://).
+
### UrlDesigner {#UrlDesigner}
```
public static final OpenTypeName UrlDesigner
@@ -162,6 +200,7 @@ public static final OpenTypeName UrlDesigner
URL of typeface designer (with protocol, e.g., http://, ftp://).
+
### LicenseDescription {#LicenseDescription}
```
public static final OpenTypeName LicenseDescription
@@ -170,6 +209,7 @@ public static final OpenTypeName LicenseDescription
Description of how the font may be legally used, or different example scenarios for licensed use.
+
### LicenseInfoUrl {#LicenseInfoUrl}
```
public static final OpenTypeName LicenseInfoUrl
@@ -178,6 +218,7 @@ public static final OpenTypeName LicenseInfoUrl
URL where additional licensing information can be found.
+
### TypographicFamily {#TypographicFamily}
```
public static final OpenTypeName TypographicFamily
@@ -186,6 +227,7 @@ public static final OpenTypeName TypographicFamily
Typographic Family name.
+
### TypographicSubfamily {#TypographicSubfamily}
```
public static final OpenTypeName TypographicSubfamily
@@ -194,13 +236,16 @@ public static final OpenTypeName TypographicSubfamily
Typographic Subfamily name.
+
### CompatibleFull {#CompatibleFull}
```
public static final OpenTypeName CompatibleFull
```
-Compatible Full (Macintosh only). On the Macintosh, the menu name is constructed using the FOND resource.
+Compatible Full (Macintosh only).
+On the Macintosh, the menu name is constructed using the FOND resource.
+
### SampleText {#SampleText}
```
@@ -208,7 +253,9 @@ public static final OpenTypeName SampleText
```
-Sample text. This can be the font name, or any other text that the designer thinks is the best sample to display the font in.
+Sample text.
+This can be the font name, or any other text that the designer thinks is the best sample to display the font in.
+
### PostScriptCidFindfont {#PostScriptCidFindfont}
```
@@ -218,6 +265,7 @@ public static final OpenTypeName PostScriptCidFindfont
PostScript CID findfont name.
+
### WwsFamilyName {#WwsFamilyName}
```
public static final OpenTypeName WwsFamilyName
@@ -226,6 +274,7 @@ public static final OpenTypeName WwsFamilyName
WWS Family Name.
+
### WwsSubfamilyName {#WwsSubfamilyName}
```
public static final OpenTypeName WwsSubfamilyName
@@ -234,6 +283,7 @@ public static final OpenTypeName WwsSubfamilyName
WWS Subfamily Name.
+
### LightBackgroundPalette {#LightBackgroundPalette}
```
public static final OpenTypeName LightBackgroundPalette
@@ -242,6 +292,7 @@ public static final OpenTypeName LightBackgroundPalette
Light Background Palette.
+
### DarkBackgroundPalette {#DarkBackgroundPalette}
```
public static final OpenTypeName DarkBackgroundPalette
@@ -250,6 +301,7 @@ public static final OpenTypeName DarkBackgroundPalette
Dark Background Palette.
+
### VariationsPostScriptNamePrefix {#VariationsPostScriptNamePrefix}
```
public static final OpenTypeName VariationsPostScriptNamePrefix
@@ -258,6 +310,7 @@ public static final OpenTypeName VariationsPostScriptNamePrefix
Variations PostScript Name Prefix.
+
### values() {#values--}
```
public static OpenTypeName[] values()
@@ -316,6 +369,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -326,6 +380,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -341,6 +396,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -356,6 +412,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -366,5 +423,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypepackage/_index.md b/english/java/com.groupdocs.metadata.core/opentypepackage/_index.md
index eca1ed79c3..f66e04cd11 100644
--- a/english/java/com.groupdocs.metadata.core/opentypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypepackage/_index.md
@@ -14,17 +14,20 @@ public final class OpenTypePackage extends CustomPackage
Represents an OpenType font metadata package.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
+
+
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getFonts()](#getFonts--) | Gets an array of the fonts extracted from the file. |
+| [getFonts()](#getFonts--) | Gets an array of the fonts extracted from the file.
+ |
### getFonts() {#getFonts--}
```
public final OpenTypeFont[] getFonts()
@@ -33,5 +36,7 @@ public final OpenTypeFont[] getFonts()
Gets an array of the fonts extracted from the file.
+
**Returns:**
com.groupdocs.metadata.core.OpenTypeFont[] - An array of the fonts extracted from the file.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypeplatform/_index.md b/english/java/com.groupdocs.metadata.core/opentypeplatform/_index.md
index 60923d6664..f1a8aa5e99 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeplatform/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeplatform/_index.md
@@ -16,15 +16,21 @@ public enum OpenTypePlatform extends Enum implements IEnumValu
```
Represents OpenType platform for Name table.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unicode](#Unicode) | The Unicode platform. |
-| [Macintosh](#Macintosh) | The Macintosh platform. |
-| [Iso](#Iso) | The ISO [deprecated] platform. |
-| [Windows](#Windows) | The Windows platform. |
-| [Custom](#Custom) | The Custom platform. |
+| [Unicode](#Unicode) | The Unicode platform.
+ |
+| [Macintosh](#Macintosh) | The Macintosh platform.
+ |
+| [Iso](#Iso) | The ISO [deprecated] platform.
+ |
+| [Windows](#Windows) | The Windows platform.
+ |
+| [Custom](#Custom) | The Custom platform.
+ |
## Methods
| Method | Description |
@@ -46,6 +52,7 @@ public static final OpenTypePlatform Unicode
The Unicode platform.
+
### Macintosh {#Macintosh}
```
public static final OpenTypePlatform Macintosh
@@ -54,6 +61,7 @@ public static final OpenTypePlatform Macintosh
The Macintosh platform.
+
### Iso {#Iso}
```
public static final OpenTypePlatform Iso
@@ -62,6 +70,7 @@ public static final OpenTypePlatform Iso
The ISO [deprecated] platform.
+
### Windows {#Windows}
```
public static final OpenTypePlatform Windows
@@ -70,6 +79,7 @@ public static final OpenTypePlatform Windows
The Windows platform.
+
### Custom {#Custom}
```
public static final OpenTypePlatform Custom
@@ -78,6 +88,7 @@ public static final OpenTypePlatform Custom
The Custom platform.
+
### values() {#values--}
```
public static OpenTypePlatform[] values()
@@ -136,6 +147,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -146,6 +158,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +174,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -176,6 +190,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -186,5 +201,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentyperootpackage/_index.md b/english/java/com.groupdocs.metadata.core/opentyperootpackage/_index.md
index 67f7eef981..0859c3e272 100644
--- a/english/java/com.groupdocs.metadata.core/opentyperootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentyperootpackage/_index.md
@@ -14,15 +14,18 @@ public class OpenTypeRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in an OpenType font file.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
-This example shows how to read OpenType font metadata.
+
+This example shows how to read OpenType font metadata.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputTtf)) {
> OpenTypeRootPackage root = metadata.getRootPackageGeneric();
> // Read the OpenType font metadata
@@ -71,16 +74,17 @@ This example shows how to read OpenType font metadata.
> }
>
> ```
-> ```
+> ````
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getOpenTypePackage()](#getOpenTypePackage--) | Gets the OpenType metadata package. |
-| [getDigitalSignaturePackage()](#getDigitalSignaturePackage--) | Gets the digital signature metadata package. |
+| [getOpenTypePackage()](#getOpenTypePackage--) | Gets the OpenType metadata package.
+ |
+| [getDigitalSignaturePackage()](#getDigitalSignaturePackage--) | Gets the digital signature metadata package.
+ |
### getOpenTypePackage() {#getOpenTypePackage--}
```
public final OpenTypePackage getOpenTypePackage()
@@ -89,8 +93,10 @@ public final OpenTypePackage getOpenTypePackage()
Gets the OpenType metadata package.
+
**Returns:**
[OpenTypePackage](../../com.groupdocs.metadata.core/opentypepackage) - The OpenType metadata package.
+
### getDigitalSignaturePackage() {#getDigitalSignaturePackage--}
```
public final CmsPackage getDigitalSignaturePackage()
@@ -99,5 +105,7 @@ public final CmsPackage getDigitalSignaturePackage()
Gets the digital signature metadata package.
+
**Returns:**
[CmsPackage](../../com.groupdocs.metadata.core/cmspackage) - The digital signature metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypestyles/_index.md b/english/java/com.groupdocs.metadata.core/opentypestyles/_index.md
index 3a04b19566..e28c632c8a 100644
--- a/english/java/com.groupdocs.metadata.core/opentypestyles/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypestyles/_index.md
@@ -16,18 +16,27 @@ public final class OpenTypeStyles implements IEnumValue
```
Represents the OpenType font style.
+
## Fields
| Field | Description |
| --- | --- |
-| [Regular](#Regular) | Normal text. |
-| [Bold](#Bold) | Bold text. |
-| [Italic](#Italic) | Italic text. |
-| [Underline](#Underline) | Underlined text. |
-| [Outline](#Outline) | Outline text. |
-| [Shadow](#Shadow) | Shadow text. |
-| [Condensed](#Condensed) | Condensed text. |
-| [Extended](#Extended) | Extended text. |
+| [Regular](#Regular) | Normal text.
+ |
+| [Bold](#Bold) | Bold text.
+ |
+| [Italic](#Italic) | Italic text.
+ |
+| [Underline](#Underline) | Underlined text.
+ |
+| [Outline](#Outline) | Outline text.
+ |
+| [Shadow](#Shadow) | Shadow text.
+ |
+| [Condensed](#Condensed) | Condensed text.
+ |
+| [Extended](#Extended) | Extended text.
+ |
## Methods
| Method | Description |
@@ -50,6 +59,7 @@ public static final OpenTypeStyles Regular
Normal text.
+
### Bold {#Bold}
```
public static final OpenTypeStyles Bold
@@ -58,6 +68,7 @@ public static final OpenTypeStyles Bold
Bold text.
+
### Italic {#Italic}
```
public static final OpenTypeStyles Italic
@@ -66,6 +77,7 @@ public static final OpenTypeStyles Italic
Italic text.
+
### Underline {#Underline}
```
public static final OpenTypeStyles Underline
@@ -74,6 +86,7 @@ public static final OpenTypeStyles Underline
Underlined text.
+
### Outline {#Outline}
```
public static final OpenTypeStyles Outline
@@ -82,6 +95,7 @@ public static final OpenTypeStyles Outline
Outline text.
+
### Shadow {#Shadow}
```
public static final OpenTypeStyles Shadow
@@ -90,6 +104,7 @@ public static final OpenTypeStyles Shadow
Shadow text.
+
### Condensed {#Condensed}
```
public static final OpenTypeStyles Condensed
@@ -98,6 +113,7 @@ public static final OpenTypeStyles Condensed
Condensed text.
+
### Extended {#Extended}
```
public static final OpenTypeStyles Extended
@@ -106,6 +122,7 @@ public static final OpenTypeStyles Extended
Extended text.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static OpenTypeStyles getByRawValue(int rawValue)
@@ -139,6 +156,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -149,6 +167,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -164,6 +183,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -179,6 +199,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -189,6 +210,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -199,6 +221,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/opentypeunicodeencoding/_index.md b/english/java/com.groupdocs.metadata.core/opentypeunicodeencoding/_index.md
index 2252662e82..8c00e819de 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeunicodeencoding/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeunicodeencoding/_index.md
@@ -15,18 +15,28 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeUnicodeEncoding extends Enum implements IEnumValue
```
-Represents encoding for OpenTypePlatform.Unicode platform.
+Represents encoding for
+OpenTypePlatform.Unicode
+ platform.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unicode10](#Unicode10) | Unicode 1.0 semantics. |
-| [Unicode11](#Unicode11) | Unicode 1.1 semantics. |
-| [Iso](#Iso) | ISO/IEC 10646 semantics. |
-| [Unicode20Bmp](#Unicode20Bmp) | Unicode 2.0 and onwards semantics, Unicode BMP only ('cmap' subtable formats 0, 4, 6). |
-| [Unicode20Full](#Unicode20Full) | Unicode 2.0 and onwards semantics, Unicode full repertoire ('cmap' subtable formats 0, 4, 6, 10, 12). |
-| [UnicodeVariation](#UnicodeVariation) | Unicode Variation Sequences ('cmap' subtable format 14). |
-| [UnicodeFull](#UnicodeFull) | Unicode full repertoire ('cmap' subtable formats 0, 4, 6, 10, 12, 13). |
+| [Unicode10](#Unicode10) | Unicode 1.0 semantics.
+ |
+| [Unicode11](#Unicode11) | Unicode 1.1 semantics.
+ |
+| [Iso](#Iso) | ISO/IEC 10646 semantics.
+ |
+| [Unicode20Bmp](#Unicode20Bmp) | Unicode 2.0 and onwards semantics, Unicode BMP only ('cmap' subtable formats 0, 4, 6).
+ |
+| [Unicode20Full](#Unicode20Full) | Unicode 2.0 and onwards semantics, Unicode full repertoire ('cmap' subtable formats 0, 4, 6, 10, 12).
+ |
+| [UnicodeVariation](#UnicodeVariation) | Unicode Variation Sequences ('cmap' subtable format 14).
+ |
+| [UnicodeFull](#UnicodeFull) | Unicode full repertoire ('cmap' subtable formats 0, 4, 6, 10, 12, 13).
+ |
## Methods
| Method | Description |
@@ -48,6 +58,7 @@ public static final OpenTypeUnicodeEncoding Unicode10
Unicode 1.0 semantics.
+
### Unicode11 {#Unicode11}
```
public static final OpenTypeUnicodeEncoding Unicode11
@@ -56,6 +67,7 @@ public static final OpenTypeUnicodeEncoding Unicode11
Unicode 1.1 semantics.
+
### Iso {#Iso}
```
public static final OpenTypeUnicodeEncoding Iso
@@ -64,6 +76,7 @@ public static final OpenTypeUnicodeEncoding Iso
ISO/IEC 10646 semantics.
+
### Unicode20Bmp {#Unicode20Bmp}
```
public static final OpenTypeUnicodeEncoding Unicode20Bmp
@@ -72,6 +85,7 @@ public static final OpenTypeUnicodeEncoding Unicode20Bmp
Unicode 2.0 and onwards semantics, Unicode BMP only ('cmap' subtable formats 0, 4, 6).
+
### Unicode20Full {#Unicode20Full}
```
public static final OpenTypeUnicodeEncoding Unicode20Full
@@ -80,6 +94,7 @@ public static final OpenTypeUnicodeEncoding Unicode20Full
Unicode 2.0 and onwards semantics, Unicode full repertoire ('cmap' subtable formats 0, 4, 6, 10, 12).
+
### UnicodeVariation {#UnicodeVariation}
```
public static final OpenTypeUnicodeEncoding UnicodeVariation
@@ -88,6 +103,7 @@ public static final OpenTypeUnicodeEncoding UnicodeVariation
Unicode Variation Sequences ('cmap' subtable format 14).
+
### UnicodeFull {#UnicodeFull}
```
public static final OpenTypeUnicodeEncoding UnicodeFull
@@ -96,6 +112,7 @@ public static final OpenTypeUnicodeEncoding UnicodeFull
Unicode full repertoire ('cmap' subtable formats 0, 4, 6, 10, 12, 13).
+
### values() {#values--}
```
public static OpenTypeUnicodeEncoding[] values()
@@ -154,6 +171,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -164,6 +182,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -179,6 +198,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -194,6 +214,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -204,5 +225,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypeunicodenamerecord/_index.md b/english/java/com.groupdocs.metadata.core/opentypeunicodenamerecord/_index.md
index 8c61825efe..c05a2d604b 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeunicodenamerecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeunicodenamerecord/_index.md
@@ -12,19 +12,24 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class OpenTypeUnicodeNameRecord extends OpenTypeBaseNameRecord
```
-Represents the Name record table value for the OpenTypePlatform.Unicode platform.
+Represents the Name record table value for the
+OpenTypePlatform.Unicode
+ platform.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
+
+
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getEncoding()](#getEncoding--) | Gets the encoding identifier. |
+| [getEncoding()](#getEncoding--) | Gets the encoding identifier.
+ |
### getEncoding() {#getEncoding--}
```
public final OpenTypeUnicodeEncoding getEncoding()
@@ -33,5 +38,7 @@ public final OpenTypeUnicodeEncoding getEncoding()
Gets the encoding identifier.
+
**Returns:**
[OpenTypeUnicodeEncoding](../../com.groupdocs.metadata.core/opentypeunicodeencoding) - The encoding identifier.
+
diff --git a/english/java/com.groupdocs.metadata.core/opentypeversion/_index.md b/english/java/com.groupdocs.metadata.core/opentypeversion/_index.md
index e1caa0ce70..1a126e8fb7 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeversion/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeversion/_index.md
@@ -16,13 +16,17 @@ public enum OpenTypeVersion extends Enum implements IEnumValue
```
Represents the OpenType version.
+
## Fields
| Field | Description |
| --- | --- |
-| [TrueType](#TrueType) | The TrueType font. |
-| [Cff](#Cff) | The OpenType font with PostScript outlines. |
-| [TrueTypeOsX](#TrueTypeOsX) | The OS X and iOS TrueType font. |
+| [TrueType](#TrueType) | The TrueType font.
+ |
+| [Cff](#Cff) | The OpenType font with PostScript outlines.
+ |
+| [TrueTypeOsX](#TrueTypeOsX) | The OS X and iOS TrueType font.
+ |
## Methods
| Method | Description |
@@ -44,6 +48,7 @@ public static final OpenTypeVersion TrueType
The TrueType font.
+
### Cff {#Cff}
```
public static final OpenTypeVersion Cff
@@ -52,6 +57,7 @@ public static final OpenTypeVersion Cff
The OpenType font with PostScript outlines.
+
### TrueTypeOsX {#TrueTypeOsX}
```
public static final OpenTypeVersion TrueTypeOsX
@@ -60,6 +66,7 @@ public static final OpenTypeVersion TrueTypeOsX
The OS X and iOS TrueType font.
+
### values() {#values--}
```
public static OpenTypeVersion[] values()
@@ -118,6 +125,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +136,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +152,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +168,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +179,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypeweight/_index.md b/english/java/com.groupdocs.metadata.core/opentypeweight/_index.md
index 193342f734..b3bcaf23a0 100644
--- a/english/java/com.groupdocs.metadata.core/opentypeweight/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypeweight/_index.md
@@ -15,21 +15,34 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeWeight extends Enum implements IEnumValue
```
-Represents the OpenType font weight. Indicates the visual weight (degree of blackness or thickness of strokes) of the characters in the font. Values from 1 to 1000 are valid.
+Represents the OpenType font weight.
+Indicates the visual weight (degree of blackness or thickness of strokes) of the characters in the font.
+Values from 1 to 1000 are valid.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | The undefined weight. |
-| [Thin](#Thin) | The Thin weight. |
-| [ExtraLight](#ExtraLight) | The Extra-light (Ultra-light) weight. |
-| [Light](#Light) | The Light weight. |
-| [Normal](#Normal) | The Normal (Regular) weight. |
-| [Medium](#Medium) | The Medium weight. |
-| [SemiBold](#SemiBold) | The Semi-bold (Demi-bold) weight. |
-| [Bold](#Bold) | The Bold weight. |
-| [ExtraBold](#ExtraBold) | The Extra-bold (Ultra-bold) weight. |
-| [Heavy](#Heavy) | The Black (Heavy) weight. |
+| [Undefined](#Undefined) | The undefined weight.
+ |
+| [Thin](#Thin) | The Thin weight.
+ |
+| [ExtraLight](#ExtraLight) | The Extra-light (Ultra-light) weight.
+ |
+| [Light](#Light) | The Light weight.
+ |
+| [Normal](#Normal) | The Normal (Regular) weight.
+ |
+| [Medium](#Medium) | The Medium weight.
+ |
+| [SemiBold](#SemiBold) | The Semi-bold (Demi-bold) weight.
+ |
+| [Bold](#Bold) | The Bold weight.
+ |
+| [ExtraBold](#ExtraBold) | The Extra-bold (Ultra-bold) weight.
+ |
+| [Heavy](#Heavy) | The Black (Heavy) weight.
+ |
## Methods
| Method | Description |
@@ -51,6 +64,7 @@ public static final OpenTypeWeight Undefined
The undefined weight.
+
### Thin {#Thin}
```
public static final OpenTypeWeight Thin
@@ -59,6 +73,7 @@ public static final OpenTypeWeight Thin
The Thin weight.
+
### ExtraLight {#ExtraLight}
```
public static final OpenTypeWeight ExtraLight
@@ -67,6 +82,7 @@ public static final OpenTypeWeight ExtraLight
The Extra-light (Ultra-light) weight.
+
### Light {#Light}
```
public static final OpenTypeWeight Light
@@ -75,6 +91,7 @@ public static final OpenTypeWeight Light
The Light weight.
+
### Normal {#Normal}
```
public static final OpenTypeWeight Normal
@@ -83,6 +100,7 @@ public static final OpenTypeWeight Normal
The Normal (Regular) weight.
+
### Medium {#Medium}
```
public static final OpenTypeWeight Medium
@@ -91,6 +109,7 @@ public static final OpenTypeWeight Medium
The Medium weight.
+
### SemiBold {#SemiBold}
```
public static final OpenTypeWeight SemiBold
@@ -99,6 +118,7 @@ public static final OpenTypeWeight SemiBold
The Semi-bold (Demi-bold) weight.
+
### Bold {#Bold}
```
public static final OpenTypeWeight Bold
@@ -107,6 +127,7 @@ public static final OpenTypeWeight Bold
The Bold weight.
+
### ExtraBold {#ExtraBold}
```
public static final OpenTypeWeight ExtraBold
@@ -115,6 +136,7 @@ public static final OpenTypeWeight ExtraBold
The Extra-bold (Ultra-bold) weight.
+
### Heavy {#Heavy}
```
public static final OpenTypeWeight Heavy
@@ -123,6 +145,7 @@ public static final OpenTypeWeight Heavy
The Black (Heavy) weight.
+
### values() {#values--}
```
public static OpenTypeWeight[] values()
@@ -181,6 +204,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -191,6 +215,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -206,6 +231,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -221,6 +247,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -231,5 +258,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypewidth/_index.md b/english/java/com.groupdocs.metadata.core/opentypewidth/_index.md
index ec445bbde1..2add78ecce 100644
--- a/english/java/com.groupdocs.metadata.core/opentypewidth/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypewidth/_index.md
@@ -15,21 +15,34 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeWidth extends Enum implements IEnumValue
```
-Represents the OpenType font width. Indicates a relative change from the normal aspect ratio (width to height ratio) as specified by a font designer for the glyphs in a font.
+Represents the OpenType font width.
+Indicates a relative change from the normal aspect ratio (width to height ratio)
+as specified by a font designer for the glyphs in a font.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | The undefined wifth. |
-| [UltraCondensed](#UltraCondensed) | The Ultra-condensed wifth. |
-| [ExtraCondensed](#ExtraCondensed) | The Extra-condensed wifth. |
-| [Condensed](#Condensed) | The Condensed wifth. |
-| [SemiCondensed](#SemiCondensed) | The Semi-condensed wifth. |
-| [Medium](#Medium) | The Medium (normal) wifth. |
-| [SemiExpanded](#SemiExpanded) | The Semi-expanded wifth. |
-| [Expanded](#Expanded) | The Expanded wifth. |
-| [ExtraExpanded](#ExtraExpanded) | The Extra-expanded wifth. |
-| [UltraExpanded](#UltraExpanded) | The Ultra-expanded wifth. |
+| [Undefined](#Undefined) | The undefined wifth.
+ |
+| [UltraCondensed](#UltraCondensed) | The Ultra-condensed wifth.
+ |
+| [ExtraCondensed](#ExtraCondensed) | The Extra-condensed wifth.
+ |
+| [Condensed](#Condensed) | The Condensed wifth.
+ |
+| [SemiCondensed](#SemiCondensed) | The Semi-condensed wifth.
+ |
+| [Medium](#Medium) | The Medium (normal) wifth.
+ |
+| [SemiExpanded](#SemiExpanded) | The Semi-expanded wifth.
+ |
+| [Expanded](#Expanded) | The Expanded wifth.
+ |
+| [ExtraExpanded](#ExtraExpanded) | The Extra-expanded wifth.
+ |
+| [UltraExpanded](#UltraExpanded) | The Ultra-expanded wifth.
+ |
## Methods
| Method | Description |
@@ -51,6 +64,7 @@ public static final OpenTypeWidth Undefined
The undefined wifth.
+
### UltraCondensed {#UltraCondensed}
```
public static final OpenTypeWidth UltraCondensed
@@ -59,6 +73,7 @@ public static final OpenTypeWidth UltraCondensed
The Ultra-condensed wifth.
+
### ExtraCondensed {#ExtraCondensed}
```
public static final OpenTypeWidth ExtraCondensed
@@ -67,6 +82,7 @@ public static final OpenTypeWidth ExtraCondensed
The Extra-condensed wifth.
+
### Condensed {#Condensed}
```
public static final OpenTypeWidth Condensed
@@ -75,6 +91,7 @@ public static final OpenTypeWidth Condensed
The Condensed wifth.
+
### SemiCondensed {#SemiCondensed}
```
public static final OpenTypeWidth SemiCondensed
@@ -83,6 +100,7 @@ public static final OpenTypeWidth SemiCondensed
The Semi-condensed wifth.
+
### Medium {#Medium}
```
public static final OpenTypeWidth Medium
@@ -91,6 +109,7 @@ public static final OpenTypeWidth Medium
The Medium (normal) wifth.
+
### SemiExpanded {#SemiExpanded}
```
public static final OpenTypeWidth SemiExpanded
@@ -99,6 +118,7 @@ public static final OpenTypeWidth SemiExpanded
The Semi-expanded wifth.
+
### Expanded {#Expanded}
```
public static final OpenTypeWidth Expanded
@@ -107,6 +127,7 @@ public static final OpenTypeWidth Expanded
The Expanded wifth.
+
### ExtraExpanded {#ExtraExpanded}
```
public static final OpenTypeWidth ExtraExpanded
@@ -115,6 +136,7 @@ public static final OpenTypeWidth ExtraExpanded
The Extra-expanded wifth.
+
### UltraExpanded {#UltraExpanded}
```
public static final OpenTypeWidth UltraExpanded
@@ -123,6 +145,7 @@ public static final OpenTypeWidth UltraExpanded
The Ultra-expanded wifth.
+
### values() {#values--}
```
public static OpenTypeWidth[] values()
@@ -181,6 +204,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -191,6 +215,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -206,6 +231,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -221,6 +247,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -231,5 +258,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypewindowsencoding/_index.md b/english/java/com.groupdocs.metadata.core/opentypewindowsencoding/_index.md
index 6c604c40c4..86bf5e8aa8 100644
--- a/english/java/com.groupdocs.metadata.core/opentypewindowsencoding/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypewindowsencoding/_index.md
@@ -15,19 +15,30 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeWindowsEncoding extends Enum implements IEnumValue
```
-Represents encoding for the OpenTypePlatform.Windows platform.
+Represents encoding for the
+OpenTypePlatform.Windows
+ platform.
+
## Fields
| Field | Description |
| --- | --- |
-| [Symbol](#Symbol) | The Symbol encoding. |
-| [UnicodeBmp](#UnicodeBmp) | The Unicode BMP encoding. |
-| [ShiftJis](#ShiftJis) | The ShiftJIS encoding. |
-| [Prc](#Prc) | The PRC encoding. |
-| [Big5](#Big5) | The Big5 encoding. |
-| [Wansung](#Wansung) | The Wansung encoding. |
-| [Johab](#Johab) | The Johab encoding. |
-| [UnicodeFull](#UnicodeFull) | The Unicode full repertoire encoding. |
+| [Symbol](#Symbol) | The Symbol encoding.
+ |
+| [UnicodeBmp](#UnicodeBmp) | The Unicode BMP encoding.
+ |
+| [ShiftJis](#ShiftJis) | The ShiftJIS encoding.
+ |
+| [Prc](#Prc) | The PRC encoding.
+ |
+| [Big5](#Big5) | The Big5 encoding.
+ |
+| [Wansung](#Wansung) | The Wansung encoding.
+ |
+| [Johab](#Johab) | The Johab encoding.
+ |
+| [UnicodeFull](#UnicodeFull) | The Unicode full repertoire encoding.
+ |
## Methods
| Method | Description |
@@ -49,6 +60,7 @@ public static final OpenTypeWindowsEncoding Symbol
The Symbol encoding.
+
### UnicodeBmp {#UnicodeBmp}
```
public static final OpenTypeWindowsEncoding UnicodeBmp
@@ -57,6 +69,7 @@ public static final OpenTypeWindowsEncoding UnicodeBmp
The Unicode BMP encoding.
+
### ShiftJis {#ShiftJis}
```
public static final OpenTypeWindowsEncoding ShiftJis
@@ -65,6 +78,7 @@ public static final OpenTypeWindowsEncoding ShiftJis
The ShiftJIS encoding.
+
### Prc {#Prc}
```
public static final OpenTypeWindowsEncoding Prc
@@ -73,6 +87,7 @@ public static final OpenTypeWindowsEncoding Prc
The PRC encoding.
+
### Big5 {#Big5}
```
public static final OpenTypeWindowsEncoding Big5
@@ -81,6 +96,7 @@ public static final OpenTypeWindowsEncoding Big5
The Big5 encoding.
+
### Wansung {#Wansung}
```
public static final OpenTypeWindowsEncoding Wansung
@@ -89,6 +105,7 @@ public static final OpenTypeWindowsEncoding Wansung
The Wansung encoding.
+
### Johab {#Johab}
```
public static final OpenTypeWindowsEncoding Johab
@@ -97,6 +114,7 @@ public static final OpenTypeWindowsEncoding Johab
The Johab encoding.
+
### UnicodeFull {#UnicodeFull}
```
public static final OpenTypeWindowsEncoding UnicodeFull
@@ -105,6 +123,7 @@ public static final OpenTypeWindowsEncoding UnicodeFull
The Unicode full repertoire encoding.
+
### values() {#values--}
```
public static OpenTypeWindowsEncoding[] values()
@@ -163,6 +182,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -173,6 +193,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -188,6 +209,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -203,6 +225,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -213,5 +236,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypewindowslanguage/_index.md b/english/java/com.groupdocs.metadata.core/opentypewindowslanguage/_index.md
index c30ad477df..0c87b02078 100644
--- a/english/java/com.groupdocs.metadata.core/opentypewindowslanguage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypewindowslanguage/_index.md
@@ -15,216 +15,424 @@ java.lang.Object, java.lang.Enum
public enum OpenTypeWindowsLanguage extends Enum implements IEnumValue
```
-Represents language for OpenTypePlatform.Windows platform.
+Represents language for
+OpenTypePlatform.Windows
+ platform.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The unknown language. |
-| [AfrikaansSouthAfrica](#AfrikaansSouthAfrica) | The afrikaans south africa language. |
-| [AlbanianAlbania](#AlbanianAlbania) | The albanian Albania language. |
-| [AlsatianFrance](#AlsatianFrance) | The alsatian France language. |
-| [AmharicEthiopia](#AmharicEthiopia) | The amharic Rthiopia language. |
-| [ArabicAlgeria](#ArabicAlgeria) | The arabic Algeria language. |
-| [ArabicBahrain](#ArabicBahrain) | The arabic Bahrain language. |
-| [ArabicEgypt](#ArabicEgypt) | The arabic Egypt language. |
-| [ArabicIraq](#ArabicIraq) | The arabic Iraq language. |
-| [ArabicJordan](#ArabicJordan) | The arabic Jordan language. |
-| [ArabicKuwait](#ArabicKuwait) | The arabic Kuwait language. |
-| [ArabicLebanon](#ArabicLebanon) | The arabic Lebanon language. |
-| [ArabicLibya](#ArabicLibya) | The arabic Libya language. |
-| [ArabicMorocco](#ArabicMorocco) | The arabic Morocco language. |
-| [ArabicOman](#ArabicOman) | The arabic Oman language. |
-| [ArabicQatar](#ArabicQatar) | The arabic Qatar language. |
-| [ArabicSaudiArabia](#ArabicSaudiArabia) | The arabic Saudi Arabia language. |
-| [ArabicSyria](#ArabicSyria) | The arabic Syria language. |
-| [ArabicTunisia](#ArabicTunisia) | The arabic Tunisia language. |
-| [ArabicUae](#ArabicUae) | The arabic UAE language. |
-| [ArabicYemen](#ArabicYemen) | The arabic Yemen language. |
-| [ArmenianArmenia](#ArmenianArmenia) | The armenian Armenia language. |
-| [AssameseIndia](#AssameseIndia) | The assamese India language. |
-| [AzeriCyrillicAzerbaijan](#AzeriCyrillicAzerbaijan) | The azeri cyrillic Azerbaijan language. |
-| [AzeriLatinAzerbaijan](#AzeriLatinAzerbaijan) | The azeri latin Azerbaijan language. |
-| [BashkirRussia](#BashkirRussia) | The bashkir Russia language. |
-| [BasqueBasque](#BasqueBasque) | The basque Basque language. |
-| [BelarusianBelarus](#BelarusianBelarus) | The belarusian Belarus language. |
-| [BengaliBangladesh](#BengaliBangladesh) | The bengali Bangladesh language. |
-| [BengaliIndia](#BengaliIndia) | The bengali India language. |
-| [BosnianLatinBosniaAndHerzegovina](#BosnianLatinBosniaAndHerzegovina) | The bosnian latin Bosnia and Herzegovina language. |
-| [BretonFrance](#BretonFrance) | The breton France language. |
-| [BulgarianBulgaria](#BulgarianBulgaria) | The bulgarian Bulgaria language. |
-| [CatalanCatalan](#CatalanCatalan) | The catalan Catalan language. |
-| [ChineseHongKongSar](#ChineseHongKongSar) | The chinese Hong Kong SAR language. |
-| [ChineseMacaoSar](#ChineseMacaoSar) | The chinese Macao SAR language. |
-| [ChinesePeoplesRepublicOfChina](#ChinesePeoplesRepublicOfChina) | The chinese Peoples Republic of China language. |
-| [ChineseSingapore](#ChineseSingapore) | The chinese Singapore language. |
-| [ChineseTaiwan](#ChineseTaiwan) | The chinese Taiwan language. |
-| [CorsicanFrance](#CorsicanFrance) | The corsican France language. |
-| [CroatianCroatia](#CroatianCroatia) | The croatian Croatia language. |
-| [CroatianLatinBosniaAndHerzegovina](#CroatianLatinBosniaAndHerzegovina) | The croatian latin Bosnia and Herzegovina language. |
-| [CzechCzechRepublic](#CzechCzechRepublic) | The czech Czech Republic language. |
-| [DanishDenmark](#DanishDenmark) | The danish Denmark language. |
-| [DariAfghanistan](#DariAfghanistan) | The dari Afghanistan language. |
-| [DivehiMaldives](#DivehiMaldives) | The divehi Maldives language. |
-| [DutchBelgium](#DutchBelgium) | The dutch Belgium language. |
-| [DutchNetherlands](#DutchNetherlands) | The dutch Netherlands language. |
-| [EnglishAustralia](#EnglishAustralia) | The english Australia language. |
-| [EnglishBelize](#EnglishBelize) | The english Belize language. |
-| [EnglishCanada](#EnglishCanada) | The english Canada language. |
-| [EnglishCaribbean](#EnglishCaribbean) | The english Caribbean language. |
-| [EnglishIndia](#EnglishIndia) | The english India language. |
-| [EnglishIreland](#EnglishIreland) | The english Ireland language. |
-| [EnglishJamaica](#EnglishJamaica) | The english Jamaica language. |
-| [EnglishMalaysia](#EnglishMalaysia) | The english Malaysia language. |
-| [EnglishNewZealand](#EnglishNewZealand) | The english New Zealand language. |
-| [EnglishRepublicOfThePhilippines](#EnglishRepublicOfThePhilippines) | The english Republic of the Philippines language. |
-| [EnglishSingapore](#EnglishSingapore) | The english Singapore language. |
-| [EnglishSouthAfrica](#EnglishSouthAfrica) | The english south africa language. |
-| [EnglishTrinidadAndTobago](#EnglishTrinidadAndTobago) | The english Trinidad and Tobago language. |
-| [EnglishUnitedKingdom](#EnglishUnitedKingdom) | The english United Kingdom language. |
-| [EnglishUnitedStates](#EnglishUnitedStates) | The english United States language. |
-| [EnglishZimbabwe](#EnglishZimbabwe) | The english Zimbabwe language. |
-| [EstonianEstonia](#EstonianEstonia) | The estonian Estonia language. |
-| [FaroeseFaroeIslands](#FaroeseFaroeIslands) | The faroese Faroe Islands language. |
-| [FilipinoPhilippines](#FilipinoPhilippines) | The filipino Philippines language. |
-| [FinnishFinland](#FinnishFinland) | The finnish Finland language. |
-| [FrenchBelgium](#FrenchBelgium) | The french Belgium language. |
-| [FrenchCanada](#FrenchCanada) | The french Canada language. |
-| [FrenchFrance](#FrenchFrance) | The french France language. |
-| [FrenchLuxembourg](#FrenchLuxembourg) | The french Luxembourg language. |
-| [FrenchPrincipalityOfMonaco](#FrenchPrincipalityOfMonaco) | The french Principality of Monaco language. |
-| [FrenchSwitzerland](#FrenchSwitzerland) | The french Switzerland language. |
-| [FrisianNetherlands](#FrisianNetherlands) | The frisian Netherlands language. |
-| [GalicianGalician](#GalicianGalician) | The galician Galician language. |
-| [GeorgianGeorgia](#GeorgianGeorgia) | The georgian Georgia language. |
-| [GermanAustria](#GermanAustria) | The german Austria language. |
-| [GermanGermany](#GermanGermany) | The german Germany language. |
-| [GermanLiechtenstein](#GermanLiechtenstein) | The german Liechtenstein language. |
-| [GermanLuxembourg](#GermanLuxembourg) | The german Luxembourg language. |
-| [GermanSwitzerland](#GermanSwitzerland) | The german Switzerland language. |
-| [GreekGreece](#GreekGreece) | The greek Greece language. |
-| [GreenlandicGreenland](#GreenlandicGreenland) | The greenlandic Greenland language. |
-| [GujaratiIndia](#GujaratiIndia) | The gujarati India language. |
-| [HausaLatinNigeria](#HausaLatinNigeria) | The hausa latin Nigeria language. |
-| [HebrewIsrael](#HebrewIsrael) | The hebrew Israel language. |
-| [HindiIndia](#HindiIndia) | The hindi India language. |
-| [HungarianHungary](#HungarianHungary) | The hungarian Hungary language. |
-| [IcelandicIceland](#IcelandicIceland) | The icelandic Iceland language. |
-| [IgboNigeria](#IgboNigeria) | The igbo Nigeria language. |
-| [IndonesianIndonesia](#IndonesianIndonesia) | The indonesian Indonesia language. |
-| [InuktitutCanada](#InuktitutCanada) | The inuktitut Canada language. |
-| [InuktitutLatinCanada](#InuktitutLatinCanada) | The inuktitut latin Canada language. |
-| [IrishIreland](#IrishIreland) | The irish Ireland language. |
-| [IsiXhosaSouthAfrica](#IsiXhosaSouthAfrica) | The isi xhosa South Africa language. |
-| [IsiZuluSouthAfrica](#IsiZuluSouthAfrica) | The isi zulu South Africa language. |
-| [ItalianItaly](#ItalianItaly) | The italian Italy language. |
-| [ItalianSwitzerland](#ItalianSwitzerland) | The italian Switzerland language. |
-| [JapaneseJapan](#JapaneseJapan) | The japanese Japan language. |
-| [KannadaIndia](#KannadaIndia) | The kannada India language. |
-| [KazakhKazakhstan](#KazakhKazakhstan) | The kazakh Kazakhstan language. |
-| [KhmerCambodia](#KhmerCambodia) | The khmer Cambodia language. |
-| [KicheGuatemala](#KicheGuatemala) | The kiche Guatemala language. |
-| [KinyarwandaRwanda](#KinyarwandaRwanda) | The kinyarwanda Rwanda language. |
-| [KiswahiliKenya](#KiswahiliKenya) | The kiswahili Kenya language. |
-| [KonkaniIndia](#KonkaniIndia) | The konkani India language. |
-| [KoreanKorea](#KoreanKorea) | The korean Korea language. |
-| [KyrgyzKyrgyzstan](#KyrgyzKyrgyzstan) | The kyrgyz Kyrgyzstan language. |
-| [LaoLaoPdr](#LaoLaoPdr) | The lao lao PDR language. |
-| [LatvianLatvia](#LatvianLatvia) | The latvian Latvia language. |
-| [LithuanianLithuania](#LithuanianLithuania) | The lithuanian Lithuania language. |
-| [LowerSorbianGermany](#LowerSorbianGermany) | The lower sorbian Germany language. |
-| [LuxembourgishLuxembourg](#LuxembourgishLuxembourg) | The luxembourgish Luxembourg language. |
-| [MacedonianFyromFormerYugoslavRepublicOfMacedonia](#MacedonianFyromFormerYugoslavRepublicOfMacedonia) | The macedonian fyrom former Yugoslav Republic of Macedonia language. |
-| [MalayBruneiDarussalam](#MalayBruneiDarussalam) | The malay brunei Darussalam language. |
-| [MalayMalaysia](#MalayMalaysia) | The malay Malaysia language. |
-| [MalayalamIndia](#MalayalamIndia) | The malayalam India language. |
-| [MalteseMalta](#MalteseMalta) | The maltese Malta language. |
-| [MaoriNewZealand](#MaoriNewZealand) | The maori New Zealand language. |
-| [MapudungunChile](#MapudungunChile) | The mapudungun Chile language. |
-| [MarathiIndia](#MarathiIndia) | The marathi India language. |
-| [MohawkMohawk](#MohawkMohawk) | The mohawk Mohawk language. |
-| [MongolianCyrillicMongolia](#MongolianCyrillicMongolia) | The mongolian cyrillic Mongolia language. |
-| [MongolianTraditionalPeoplesRepublicOfChina](#MongolianTraditionalPeoplesRepublicOfChina) | The mongolian traditional Peoples Republic of China language. |
-| [NepaliNepal](#NepaliNepal) | The nepali Nepal language. |
-| [NorwegianBokmalNorway](#NorwegianBokmalNorway) | The norwegian bokmal Norway language. |
-| [NorwegianNynorskNorway](#NorwegianNynorskNorway) | The norwegian nynorsk Norway language. |
-| [OccitanFrance](#OccitanFrance) | The occitan France language. |
-| [OdiaFormerlyOriyaIndia](#OdiaFormerlyOriyaIndia) | The odia formerly oriya India language. |
-| [PashtoAfghanistan](#PashtoAfghanistan) | The pashto Afghanistan language. |
-| [PolishPoland](#PolishPoland) | The polish Poland language. |
-| [PortugueseBrazil](#PortugueseBrazil) | The portuguese Brazil language. |
-| [PortuguesePortugal](#PortuguesePortugal) | The portuguese Portugal language. |
-| [PunjabiIndia](#PunjabiIndia) | The punjabi India language. |
-| [QuechuaBolivia](#QuechuaBolivia) | The quechua Bolivia language. |
-| [QuechuaEcuador](#QuechuaEcuador) | The quechua Ecuador language. |
-| [QuechuaPeru](#QuechuaPeru) | The quechua Peru language. |
-| [RomanianRomania](#RomanianRomania) | The romanian Romania language. |
-| [RomanshSwitzerland](#RomanshSwitzerland) | The romansh Switzerland language. |
-| [RussianRussia](#RussianRussia) | The russian Russia language. |
-| [SamiInariFinland](#SamiInariFinland) | The sami inari Finland language. |
-| [SamiLuleNorway](#SamiLuleNorway) | The sami lule Norway language. |
-| [SamiLuleSweden](#SamiLuleSweden) | The sami lule Sweden language. |
-| [SamiNorthernFinland](#SamiNorthernFinland) | The sami northern Finland language. |
-| [SamiNorthernNorway](#SamiNorthernNorway) | The sami northern Norway language. |
-| [SamiNorthernSweden](#SamiNorthernSweden) | The sami northern Sweden language. |
-| [SamiSkoltFinland](#SamiSkoltFinland) | The sami skolt Finland language. |
-| [SamiSouthernNorway](#SamiSouthernNorway) | The sami southern Norway language. |
-| [SamiSouthernSweden](#SamiSouthernSweden) | The sami southern Sweden language. |
-| [SanskritIndia](#SanskritIndia) | The sanskrit India language. |
-| [SerbianCyrillicBosniaAndHerzegovina](#SerbianCyrillicBosniaAndHerzegovina) | The serbian cyrillic Bosnia and Herzegovina language. |
-| [SerbianCyrillicSerbia](#SerbianCyrillicSerbia) | The serbian cyrillic Serbia language. |
-| [SerbianLatinBosniaAndHerzegovina](#SerbianLatinBosniaAndHerzegovina) | The serbian latin Bosnia and Herzegovina language. |
-| [SerbianLatinSerbia](#SerbianLatinSerbia) | The serbian latin Serbia language. |
-| [SesothoSaLeboaSouthAfrica](#SesothoSaLeboaSouthAfrica) | The sesotho sa leboa South Africa language. |
-| [SetswanaSouthAfrica](#SetswanaSouthAfrica) | The setswana South Africa language. |
-| [SinhalaSriLanka](#SinhalaSriLanka) | The sinhala Sri Lanka language. |
-| [SlovakSlovakia](#SlovakSlovakia) | The slovak Slovakia language. |
-| [SlovenianSlovenia](#SlovenianSlovenia) | The slovenian Slovenia language. |
-| [SpanishArgentina](#SpanishArgentina) | The spanish Argentina language. |
-| [SpanishBolivia](#SpanishBolivia) | The spanish Bolivia language. |
-| [SpanishChile](#SpanishChile) | The spanish Chile language. |
-| [SpanishColombia](#SpanishColombia) | The spanish Colombia language. |
-| [SpanishCostaRica](#SpanishCostaRica) | The spanish Costa Rica language. |
-| [SpanishDominicanRepublic](#SpanishDominicanRepublic) | The spanish Dominican Republic language. |
-| [SpanishEcuador](#SpanishEcuador) | The spanish Ecuador language. |
-| [SpanishElSalvador](#SpanishElSalvador) | The spanish El Salvador language. |
-| [SpanishGuatemala](#SpanishGuatemala) | The spanish Guatemala language. |
-| [SpanishHonduras](#SpanishHonduras) | The spanish Honduras language. |
-| [SpanishMexico](#SpanishMexico) | The spanish Mexico language. |
-| [SpanishNicaragua](#SpanishNicaragua) | The spanish Nicaragua language. |
-| [SpanishPanama](#SpanishPanama) | The spanish Panama language. |
-| [SpanishParaguay](#SpanishParaguay) | The spanish Paraguay language. |
-| [SpanishPeru](#SpanishPeru) | The spanish Peru language. |
-| [SpanishPuertoRico](#SpanishPuertoRico) | The spanish Puerto Rico language. |
-| [SpanishModernSortSpain](#SpanishModernSortSpain) | The spanish modern sort Spain language. |
-| [SpanishTraditionalSortSpain](#SpanishTraditionalSortSpain) | The spanish traditional sort Spain language. |
-| [SpanishUnitedStates](#SpanishUnitedStates) | The spanish United States language. |
-| [SpanishUruguay](#SpanishUruguay) | The spanish Uruguay language. |
-| [SpanishVenezuela](#SpanishVenezuela) | The spanish Venezuela language. |
-| [SwedenFinland](#SwedenFinland) | The sweden Finland language. |
-| [SwedishSweden](#SwedishSweden) | The swedish Sweden language. |
-| [SyriacSyria](#SyriacSyria) | The syriac Syria language. |
-| [TajikCyrillicTajikistan](#TajikCyrillicTajikistan) | The tajik cyrillic tajikistan language. |
-| [TamazightLatinAlgeria](#TamazightLatinAlgeria) | The tamazight latin Algeria language. |
-| [TamilIndia](#TamilIndia) | The tamil India language. |
-| [TatarRussia](#TatarRussia) | The tatar Russia language. |
-| [TeluguIndia](#TeluguIndia) | The telugu India language. |
-| [ThaiThailand](#ThaiThailand) | The thai Thailand language. |
-| [TibetanPrc](#TibetanPrc) | The tibetan PRC language. |
-| [TurkishTurkey](#TurkishTurkey) | The turkish Turkey language. |
-| [TurkmenTurkmenistan](#TurkmenTurkmenistan) | The turkmen Turkmenistan language. |
-| [UighurPrc](#UighurPrc) | The uighur PRC language. |
-| [UkrainianUkraine](#UkrainianUkraine) | The ukrainian Ukraine language. |
-| [UpperSorbianGermany](#UpperSorbianGermany) | The upper sorbian Germany language. |
-| [UrduIslamicRepublicOfPakistan](#UrduIslamicRepublicOfPakistan) | The urdu Islamic Republic of Pakistan language. |
-| [UzbekCyrillicUzbekistan](#UzbekCyrillicUzbekistan) | The uzbek cyrillic Uzbekistan language. |
-| [UzbekLatinUzbekistan](#UzbekLatinUzbekistan) | The uzbek latin Uzbekistan language. |
-| [VietnameseVietnam](#VietnameseVietnam) | The vietnamese Vietnam language. |
-| [WelshUnitedKingdom](#WelshUnitedKingdom) | The welsh United Kingdom language. |
-| [WolofSenegal](#WolofSenegal) | The wolof Senegal language. |
-| [YakutRussia](#YakutRussia) | The yakut Russia language. |
-| [YiPrc](#YiPrc) | The yi PRC language. |
-| [YorubaNigeria](#YorubaNigeria) | The yoruba Nigeria language. |
+| [Unknown](#Unknown) | The unknown language.
+ |
+| [AfrikaansSouthAfrica](#AfrikaansSouthAfrica) | The afrikaans south africa language.
+ |
+| [AlbanianAlbania](#AlbanianAlbania) | The albanian Albania language.
+ |
+| [AlsatianFrance](#AlsatianFrance) | The alsatian France language.
+ |
+| [AmharicEthiopia](#AmharicEthiopia) | The amharic Rthiopia language.
+ |
+| [ArabicAlgeria](#ArabicAlgeria) | The arabic Algeria language.
+ |
+| [ArabicBahrain](#ArabicBahrain) | The arabic Bahrain language.
+ |
+| [ArabicEgypt](#ArabicEgypt) | The arabic Egypt language.
+ |
+| [ArabicIraq](#ArabicIraq) | The arabic Iraq language.
+ |
+| [ArabicJordan](#ArabicJordan) | The arabic Jordan language.
+ |
+| [ArabicKuwait](#ArabicKuwait) | The arabic Kuwait language.
+ |
+| [ArabicLebanon](#ArabicLebanon) | The arabic Lebanon language.
+ |
+| [ArabicLibya](#ArabicLibya) | The arabic Libya language.
+ |
+| [ArabicMorocco](#ArabicMorocco) | The arabic Morocco language.
+ |
+| [ArabicOman](#ArabicOman) | The arabic Oman language.
+ |
+| [ArabicQatar](#ArabicQatar) | The arabic Qatar language.
+ |
+| [ArabicSaudiArabia](#ArabicSaudiArabia) | The arabic Saudi Arabia language.
+ |
+| [ArabicSyria](#ArabicSyria) | The arabic Syria language.
+ |
+| [ArabicTunisia](#ArabicTunisia) | The arabic Tunisia language.
+ |
+| [ArabicUae](#ArabicUae) | The arabic UAE language.
+ |
+| [ArabicYemen](#ArabicYemen) | The arabic Yemen language.
+ |
+| [ArmenianArmenia](#ArmenianArmenia) | The armenian Armenia language.
+ |
+| [AssameseIndia](#AssameseIndia) | The assamese India language.
+ |
+| [AzeriCyrillicAzerbaijan](#AzeriCyrillicAzerbaijan) | The azeri cyrillic Azerbaijan language.
+ |
+| [AzeriLatinAzerbaijan](#AzeriLatinAzerbaijan) | The azeri latin Azerbaijan language.
+ |
+| [BashkirRussia](#BashkirRussia) | The bashkir Russia language.
+ |
+| [BasqueBasque](#BasqueBasque) | The basque Basque language.
+ |
+| [BelarusianBelarus](#BelarusianBelarus) | The belarusian Belarus language.
+ |
+| [BengaliBangladesh](#BengaliBangladesh) | The bengali Bangladesh language.
+ |
+| [BengaliIndia](#BengaliIndia) | The bengali India language.
+ |
+| [BosnianLatinBosniaAndHerzegovina](#BosnianLatinBosniaAndHerzegovina) | The bosnian latin Bosnia and Herzegovina language.
+ |
+| [BretonFrance](#BretonFrance) | The breton France language.
+ |
+| [BulgarianBulgaria](#BulgarianBulgaria) | The bulgarian Bulgaria language.
+ |
+| [CatalanCatalan](#CatalanCatalan) | The catalan Catalan language.
+ |
+| [ChineseHongKongSar](#ChineseHongKongSar) | The chinese Hong Kong SAR language.
+ |
+| [ChineseMacaoSar](#ChineseMacaoSar) | The chinese Macao SAR language.
+ |
+| [ChinesePeoplesRepublicOfChina](#ChinesePeoplesRepublicOfChina) | The chinese Peoples Republic of China language.
+ |
+| [ChineseSingapore](#ChineseSingapore) | The chinese Singapore language.
+ |
+| [ChineseTaiwan](#ChineseTaiwan) | The chinese Taiwan language.
+ |
+| [CorsicanFrance](#CorsicanFrance) | The corsican France language.
+ |
+| [CroatianCroatia](#CroatianCroatia) | The croatian Croatia language.
+ |
+| [CroatianLatinBosniaAndHerzegovina](#CroatianLatinBosniaAndHerzegovina) | The croatian latin Bosnia and Herzegovina language.
+ |
+| [CzechCzechRepublic](#CzechCzechRepublic) | The czech Czech Republic language.
+ |
+| [DanishDenmark](#DanishDenmark) | The danish Denmark language.
+ |
+| [DariAfghanistan](#DariAfghanistan) | The dari Afghanistan language.
+ |
+| [DivehiMaldives](#DivehiMaldives) | The divehi Maldives language.
+ |
+| [DutchBelgium](#DutchBelgium) | The dutch Belgium language.
+ |
+| [DutchNetherlands](#DutchNetherlands) | The dutch Netherlands language.
+ |
+| [EnglishAustralia](#EnglishAustralia) | The english Australia language.
+ |
+| [EnglishBelize](#EnglishBelize) | The english Belize language.
+ |
+| [EnglishCanada](#EnglishCanada) | The english Canada language.
+ |
+| [EnglishCaribbean](#EnglishCaribbean) | The english Caribbean language.
+ |
+| [EnglishIndia](#EnglishIndia) | The english India language.
+ |
+| [EnglishIreland](#EnglishIreland) | The english Ireland language.
+ |
+| [EnglishJamaica](#EnglishJamaica) | The english Jamaica language.
+ |
+| [EnglishMalaysia](#EnglishMalaysia) | The english Malaysia language.
+ |
+| [EnglishNewZealand](#EnglishNewZealand) | The english New Zealand language.
+ |
+| [EnglishRepublicOfThePhilippines](#EnglishRepublicOfThePhilippines) | The english Republic of the Philippines language.
+ |
+| [EnglishSingapore](#EnglishSingapore) | The english Singapore language.
+ |
+| [EnglishSouthAfrica](#EnglishSouthAfrica) | The english south africa language.
+ |
+| [EnglishTrinidadAndTobago](#EnglishTrinidadAndTobago) | The english Trinidad and Tobago language.
+ |
+| [EnglishUnitedKingdom](#EnglishUnitedKingdom) | The english United Kingdom language.
+ |
+| [EnglishUnitedStates](#EnglishUnitedStates) | The english United States language.
+ |
+| [EnglishZimbabwe](#EnglishZimbabwe) | The english Zimbabwe language.
+ |
+| [EstonianEstonia](#EstonianEstonia) | The estonian Estonia language.
+ |
+| [FaroeseFaroeIslands](#FaroeseFaroeIslands) | The faroese Faroe Islands language.
+ |
+| [FilipinoPhilippines](#FilipinoPhilippines) | The filipino Philippines language.
+ |
+| [FinnishFinland](#FinnishFinland) | The finnish Finland language.
+ |
+| [FrenchBelgium](#FrenchBelgium) | The french Belgium language.
+ |
+| [FrenchCanada](#FrenchCanada) | The french Canada language.
+ |
+| [FrenchFrance](#FrenchFrance) | The french France language.
+ |
+| [FrenchLuxembourg](#FrenchLuxembourg) | The french Luxembourg language.
+ |
+| [FrenchPrincipalityOfMonaco](#FrenchPrincipalityOfMonaco) | The french Principality of Monaco language.
+ |
+| [FrenchSwitzerland](#FrenchSwitzerland) | The french Switzerland language.
+ |
+| [FrisianNetherlands](#FrisianNetherlands) | The frisian Netherlands language.
+ |
+| [GalicianGalician](#GalicianGalician) | The galician Galician language.
+ |
+| [GeorgianGeorgia](#GeorgianGeorgia) | The georgian Georgia language.
+ |
+| [GermanAustria](#GermanAustria) | The german Austria language.
+ |
+| [GermanGermany](#GermanGermany) | The german Germany language.
+ |
+| [GermanLiechtenstein](#GermanLiechtenstein) | The german Liechtenstein language.
+ |
+| [GermanLuxembourg](#GermanLuxembourg) | The german Luxembourg language.
+ |
+| [GermanSwitzerland](#GermanSwitzerland) | The german Switzerland language.
+ |
+| [GreekGreece](#GreekGreece) | The greek Greece language.
+ |
+| [GreenlandicGreenland](#GreenlandicGreenland) | The greenlandic Greenland language.
+ |
+| [GujaratiIndia](#GujaratiIndia) | The gujarati India language.
+ |
+| [HausaLatinNigeria](#HausaLatinNigeria) | The hausa latin Nigeria language.
+ |
+| [HebrewIsrael](#HebrewIsrael) | The hebrew Israel language.
+ |
+| [HindiIndia](#HindiIndia) | The hindi India language.
+ |
+| [HungarianHungary](#HungarianHungary) | The hungarian Hungary language.
+ |
+| [IcelandicIceland](#IcelandicIceland) | The icelandic Iceland language.
+ |
+| [IgboNigeria](#IgboNigeria) | The igbo Nigeria language.
+ |
+| [IndonesianIndonesia](#IndonesianIndonesia) | The indonesian Indonesia language.
+ |
+| [InuktitutCanada](#InuktitutCanada) | The inuktitut Canada language.
+ |
+| [InuktitutLatinCanada](#InuktitutLatinCanada) | The inuktitut latin Canada language.
+ |
+| [IrishIreland](#IrishIreland) | The irish Ireland language.
+ |
+| [IsiXhosaSouthAfrica](#IsiXhosaSouthAfrica) | The isi xhosa South Africa language.
+ |
+| [IsiZuluSouthAfrica](#IsiZuluSouthAfrica) | The isi zulu South Africa language.
+ |
+| [ItalianItaly](#ItalianItaly) | The italian Italy language.
+ |
+| [ItalianSwitzerland](#ItalianSwitzerland) | The italian Switzerland language.
+ |
+| [JapaneseJapan](#JapaneseJapan) | The japanese Japan language.
+ |
+| [KannadaIndia](#KannadaIndia) | The kannada India language.
+ |
+| [KazakhKazakhstan](#KazakhKazakhstan) | The kazakh Kazakhstan language.
+ |
+| [KhmerCambodia](#KhmerCambodia) | The khmer Cambodia language.
+ |
+| [KicheGuatemala](#KicheGuatemala) | The kiche Guatemala language.
+ |
+| [KinyarwandaRwanda](#KinyarwandaRwanda) | The kinyarwanda Rwanda language.
+ |
+| [KiswahiliKenya](#KiswahiliKenya) | The kiswahili Kenya language.
+ |
+| [KonkaniIndia](#KonkaniIndia) | The konkani India language.
+ |
+| [KoreanKorea](#KoreanKorea) | The korean Korea language.
+ |
+| [KyrgyzKyrgyzstan](#KyrgyzKyrgyzstan) | The kyrgyz Kyrgyzstan language.
+ |
+| [LaoLaoPdr](#LaoLaoPdr) | The lao lao PDR language.
+ |
+| [LatvianLatvia](#LatvianLatvia) | The latvian Latvia language.
+ |
+| [LithuanianLithuania](#LithuanianLithuania) | The lithuanian Lithuania language.
+ |
+| [LowerSorbianGermany](#LowerSorbianGermany) | The lower sorbian Germany language.
+ |
+| [LuxembourgishLuxembourg](#LuxembourgishLuxembourg) | The luxembourgish Luxembourg language.
+ |
+| [MacedonianFyromFormerYugoslavRepublicOfMacedonia](#MacedonianFyromFormerYugoslavRepublicOfMacedonia) | The macedonian fyrom former Yugoslav Republic of Macedonia language.
+ |
+| [MalayBruneiDarussalam](#MalayBruneiDarussalam) | The malay brunei Darussalam language.
+ |
+| [MalayMalaysia](#MalayMalaysia) | The malay Malaysia language.
+ |
+| [MalayalamIndia](#MalayalamIndia) | The malayalam India language.
+ |
+| [MalteseMalta](#MalteseMalta) | The maltese Malta language.
+ |
+| [MaoriNewZealand](#MaoriNewZealand) | The maori New Zealand language.
+ |
+| [MapudungunChile](#MapudungunChile) | The mapudungun Chile language.
+ |
+| [MarathiIndia](#MarathiIndia) | The marathi India language.
+ |
+| [MohawkMohawk](#MohawkMohawk) | The mohawk Mohawk language.
+ |
+| [MongolianCyrillicMongolia](#MongolianCyrillicMongolia) | The mongolian cyrillic Mongolia language.
+ |
+| [MongolianTraditionalPeoplesRepublicOfChina](#MongolianTraditionalPeoplesRepublicOfChina) | The mongolian traditional Peoples Republic of China language.
+ |
+| [NepaliNepal](#NepaliNepal) | The nepali Nepal language.
+ |
+| [NorwegianBokmalNorway](#NorwegianBokmalNorway) | The norwegian bokmal Norway language.
+ |
+| [NorwegianNynorskNorway](#NorwegianNynorskNorway) | The norwegian nynorsk Norway language.
+ |
+| [OccitanFrance](#OccitanFrance) | The occitan France language.
+ |
+| [OdiaFormerlyOriyaIndia](#OdiaFormerlyOriyaIndia) | The odia formerly oriya India language.
+ |
+| [PashtoAfghanistan](#PashtoAfghanistan) | The pashto Afghanistan language.
+ |
+| [PolishPoland](#PolishPoland) | The polish Poland language.
+ |
+| [PortugueseBrazil](#PortugueseBrazil) | The portuguese Brazil language.
+ |
+| [PortuguesePortugal](#PortuguesePortugal) | The portuguese Portugal language.
+ |
+| [PunjabiIndia](#PunjabiIndia) | The punjabi India language.
+ |
+| [QuechuaBolivia](#QuechuaBolivia) | The quechua Bolivia language.
+ |
+| [QuechuaEcuador](#QuechuaEcuador) | The quechua Ecuador language.
+ |
+| [QuechuaPeru](#QuechuaPeru) | The quechua Peru language.
+ |
+| [RomanianRomania](#RomanianRomania) | The romanian Romania language.
+ |
+| [RomanshSwitzerland](#RomanshSwitzerland) | The romansh Switzerland language.
+ |
+| [RussianRussia](#RussianRussia) | The russian Russia language.
+ |
+| [SamiInariFinland](#SamiInariFinland) | The sami inari Finland language.
+ |
+| [SamiLuleNorway](#SamiLuleNorway) | The sami lule Norway language.
+ |
+| [SamiLuleSweden](#SamiLuleSweden) | The sami lule Sweden language.
+ |
+| [SamiNorthernFinland](#SamiNorthernFinland) | The sami northern Finland language.
+ |
+| [SamiNorthernNorway](#SamiNorthernNorway) | The sami northern Norway language.
+ |
+| [SamiNorthernSweden](#SamiNorthernSweden) | The sami northern Sweden language.
+ |
+| [SamiSkoltFinland](#SamiSkoltFinland) | The sami skolt Finland language.
+ |
+| [SamiSouthernNorway](#SamiSouthernNorway) | The sami southern Norway language.
+ |
+| [SamiSouthernSweden](#SamiSouthernSweden) | The sami southern Sweden language.
+ |
+| [SanskritIndia](#SanskritIndia) | The sanskrit India language.
+ |
+| [SerbianCyrillicBosniaAndHerzegovina](#SerbianCyrillicBosniaAndHerzegovina) | The serbian cyrillic Bosnia and Herzegovina language.
+ |
+| [SerbianCyrillicSerbia](#SerbianCyrillicSerbia) | The serbian cyrillic Serbia language.
+ |
+| [SerbianLatinBosniaAndHerzegovina](#SerbianLatinBosniaAndHerzegovina) | The serbian latin Bosnia and Herzegovina language.
+ |
+| [SerbianLatinSerbia](#SerbianLatinSerbia) | The serbian latin Serbia language.
+ |
+| [SesothoSaLeboaSouthAfrica](#SesothoSaLeboaSouthAfrica) | The sesotho sa leboa South Africa language.
+ |
+| [SetswanaSouthAfrica](#SetswanaSouthAfrica) | The setswana South Africa language.
+ |
+| [SinhalaSriLanka](#SinhalaSriLanka) | The sinhala Sri Lanka language.
+ |
+| [SlovakSlovakia](#SlovakSlovakia) | The slovak Slovakia language.
+ |
+| [SlovenianSlovenia](#SlovenianSlovenia) | The slovenian Slovenia language.
+ |
+| [SpanishArgentina](#SpanishArgentina) | The spanish Argentina language.
+ |
+| [SpanishBolivia](#SpanishBolivia) | The spanish Bolivia language.
+ |
+| [SpanishChile](#SpanishChile) | The spanish Chile language.
+ |
+| [SpanishColombia](#SpanishColombia) | The spanish Colombia language.
+ |
+| [SpanishCostaRica](#SpanishCostaRica) | The spanish Costa Rica language.
+ |
+| [SpanishDominicanRepublic](#SpanishDominicanRepublic) | The spanish Dominican Republic language.
+ |
+| [SpanishEcuador](#SpanishEcuador) | The spanish Ecuador language.
+ |
+| [SpanishElSalvador](#SpanishElSalvador) | The spanish El Salvador language.
+ |
+| [SpanishGuatemala](#SpanishGuatemala) | The spanish Guatemala language.
+ |
+| [SpanishHonduras](#SpanishHonduras) | The spanish Honduras language.
+ |
+| [SpanishMexico](#SpanishMexico) | The spanish Mexico language.
+ |
+| [SpanishNicaragua](#SpanishNicaragua) | The spanish Nicaragua language.
+ |
+| [SpanishPanama](#SpanishPanama) | The spanish Panama language.
+ |
+| [SpanishParaguay](#SpanishParaguay) | The spanish Paraguay language.
+ |
+| [SpanishPeru](#SpanishPeru) | The spanish Peru language.
+ |
+| [SpanishPuertoRico](#SpanishPuertoRico) | The spanish Puerto Rico language.
+ |
+| [SpanishModernSortSpain](#SpanishModernSortSpain) | The spanish modern sort Spain language.
+ |
+| [SpanishTraditionalSortSpain](#SpanishTraditionalSortSpain) | The spanish traditional sort Spain language.
+ |
+| [SpanishUnitedStates](#SpanishUnitedStates) | The spanish United States language.
+ |
+| [SpanishUruguay](#SpanishUruguay) | The spanish Uruguay language.
+ |
+| [SpanishVenezuela](#SpanishVenezuela) | The spanish Venezuela language.
+ |
+| [SwedenFinland](#SwedenFinland) | The sweden Finland language.
+ |
+| [SwedishSweden](#SwedishSweden) | The swedish Sweden language.
+ |
+| [SyriacSyria](#SyriacSyria) | The syriac Syria language.
+ |
+| [TajikCyrillicTajikistan](#TajikCyrillicTajikistan) | The tajik cyrillic tajikistan language.
+ |
+| [TamazightLatinAlgeria](#TamazightLatinAlgeria) | The tamazight latin Algeria language.
+ |
+| [TamilIndia](#TamilIndia) | The tamil India language.
+ |
+| [TatarRussia](#TatarRussia) | The tatar Russia language.
+ |
+| [TeluguIndia](#TeluguIndia) | The telugu India language.
+ |
+| [ThaiThailand](#ThaiThailand) | The thai Thailand language.
+ |
+| [TibetanPrc](#TibetanPrc) | The tibetan PRC language.
+ |
+| [TurkishTurkey](#TurkishTurkey) | The turkish Turkey language.
+ |
+| [TurkmenTurkmenistan](#TurkmenTurkmenistan) | The turkmen Turkmenistan language.
+ |
+| [UighurPrc](#UighurPrc) | The uighur PRC language.
+ |
+| [UkrainianUkraine](#UkrainianUkraine) | The ukrainian Ukraine language.
+ |
+| [UpperSorbianGermany](#UpperSorbianGermany) | The upper sorbian Germany language.
+ |
+| [UrduIslamicRepublicOfPakistan](#UrduIslamicRepublicOfPakistan) | The urdu Islamic Republic of Pakistan language.
+ |
+| [UzbekCyrillicUzbekistan](#UzbekCyrillicUzbekistan) | The uzbek cyrillic Uzbekistan language.
+ |
+| [UzbekLatinUzbekistan](#UzbekLatinUzbekistan) | The uzbek latin Uzbekistan language.
+ |
+| [VietnameseVietnam](#VietnameseVietnam) | The vietnamese Vietnam language.
+ |
+| [WelshUnitedKingdom](#WelshUnitedKingdom) | The welsh United Kingdom language.
+ |
+| [WolofSenegal](#WolofSenegal) | The wolof Senegal language.
+ |
+| [YakutRussia](#YakutRussia) | The yakut Russia language.
+ |
+| [YiPrc](#YiPrc) | The yi PRC language.
+ |
+| [YorubaNigeria](#YorubaNigeria) | The yoruba Nigeria language.
+ |
## Methods
| Method | Description |
@@ -246,6 +454,7 @@ public static final OpenTypeWindowsLanguage Unknown
The unknown language.
+
### AfrikaansSouthAfrica {#AfrikaansSouthAfrica}
```
public static final OpenTypeWindowsLanguage AfrikaansSouthAfrica
@@ -254,6 +463,7 @@ public static final OpenTypeWindowsLanguage AfrikaansSouthAfrica
The afrikaans south africa language.
+
### AlbanianAlbania {#AlbanianAlbania}
```
public static final OpenTypeWindowsLanguage AlbanianAlbania
@@ -262,6 +472,7 @@ public static final OpenTypeWindowsLanguage AlbanianAlbania
The albanian Albania language.
+
### AlsatianFrance {#AlsatianFrance}
```
public static final OpenTypeWindowsLanguage AlsatianFrance
@@ -270,6 +481,7 @@ public static final OpenTypeWindowsLanguage AlsatianFrance
The alsatian France language.
+
### AmharicEthiopia {#AmharicEthiopia}
```
public static final OpenTypeWindowsLanguage AmharicEthiopia
@@ -278,6 +490,7 @@ public static final OpenTypeWindowsLanguage AmharicEthiopia
The amharic Rthiopia language.
+
### ArabicAlgeria {#ArabicAlgeria}
```
public static final OpenTypeWindowsLanguage ArabicAlgeria
@@ -286,6 +499,7 @@ public static final OpenTypeWindowsLanguage ArabicAlgeria
The arabic Algeria language.
+
### ArabicBahrain {#ArabicBahrain}
```
public static final OpenTypeWindowsLanguage ArabicBahrain
@@ -294,6 +508,7 @@ public static final OpenTypeWindowsLanguage ArabicBahrain
The arabic Bahrain language.
+
### ArabicEgypt {#ArabicEgypt}
```
public static final OpenTypeWindowsLanguage ArabicEgypt
@@ -302,6 +517,7 @@ public static final OpenTypeWindowsLanguage ArabicEgypt
The arabic Egypt language.
+
### ArabicIraq {#ArabicIraq}
```
public static final OpenTypeWindowsLanguage ArabicIraq
@@ -310,6 +526,7 @@ public static final OpenTypeWindowsLanguage ArabicIraq
The arabic Iraq language.
+
### ArabicJordan {#ArabicJordan}
```
public static final OpenTypeWindowsLanguage ArabicJordan
@@ -318,6 +535,7 @@ public static final OpenTypeWindowsLanguage ArabicJordan
The arabic Jordan language.
+
### ArabicKuwait {#ArabicKuwait}
```
public static final OpenTypeWindowsLanguage ArabicKuwait
@@ -326,6 +544,7 @@ public static final OpenTypeWindowsLanguage ArabicKuwait
The arabic Kuwait language.
+
### ArabicLebanon {#ArabicLebanon}
```
public static final OpenTypeWindowsLanguage ArabicLebanon
@@ -334,6 +553,7 @@ public static final OpenTypeWindowsLanguage ArabicLebanon
The arabic Lebanon language.
+
### ArabicLibya {#ArabicLibya}
```
public static final OpenTypeWindowsLanguage ArabicLibya
@@ -342,6 +562,7 @@ public static final OpenTypeWindowsLanguage ArabicLibya
The arabic Libya language.
+
### ArabicMorocco {#ArabicMorocco}
```
public static final OpenTypeWindowsLanguage ArabicMorocco
@@ -350,6 +571,7 @@ public static final OpenTypeWindowsLanguage ArabicMorocco
The arabic Morocco language.
+
### ArabicOman {#ArabicOman}
```
public static final OpenTypeWindowsLanguage ArabicOman
@@ -358,6 +580,7 @@ public static final OpenTypeWindowsLanguage ArabicOman
The arabic Oman language.
+
### ArabicQatar {#ArabicQatar}
```
public static final OpenTypeWindowsLanguage ArabicQatar
@@ -366,6 +589,7 @@ public static final OpenTypeWindowsLanguage ArabicQatar
The arabic Qatar language.
+
### ArabicSaudiArabia {#ArabicSaudiArabia}
```
public static final OpenTypeWindowsLanguage ArabicSaudiArabia
@@ -374,6 +598,7 @@ public static final OpenTypeWindowsLanguage ArabicSaudiArabia
The arabic Saudi Arabia language.
+
### ArabicSyria {#ArabicSyria}
```
public static final OpenTypeWindowsLanguage ArabicSyria
@@ -382,6 +607,7 @@ public static final OpenTypeWindowsLanguage ArabicSyria
The arabic Syria language.
+
### ArabicTunisia {#ArabicTunisia}
```
public static final OpenTypeWindowsLanguage ArabicTunisia
@@ -390,6 +616,7 @@ public static final OpenTypeWindowsLanguage ArabicTunisia
The arabic Tunisia language.
+
### ArabicUae {#ArabicUae}
```
public static final OpenTypeWindowsLanguage ArabicUae
@@ -398,6 +625,7 @@ public static final OpenTypeWindowsLanguage ArabicUae
The arabic UAE language.
+
### ArabicYemen {#ArabicYemen}
```
public static final OpenTypeWindowsLanguage ArabicYemen
@@ -406,6 +634,7 @@ public static final OpenTypeWindowsLanguage ArabicYemen
The arabic Yemen language.
+
### ArmenianArmenia {#ArmenianArmenia}
```
public static final OpenTypeWindowsLanguage ArmenianArmenia
@@ -414,6 +643,7 @@ public static final OpenTypeWindowsLanguage ArmenianArmenia
The armenian Armenia language.
+
### AssameseIndia {#AssameseIndia}
```
public static final OpenTypeWindowsLanguage AssameseIndia
@@ -422,6 +652,7 @@ public static final OpenTypeWindowsLanguage AssameseIndia
The assamese India language.
+
### AzeriCyrillicAzerbaijan {#AzeriCyrillicAzerbaijan}
```
public static final OpenTypeWindowsLanguage AzeriCyrillicAzerbaijan
@@ -430,6 +661,7 @@ public static final OpenTypeWindowsLanguage AzeriCyrillicAzerbaijan
The azeri cyrillic Azerbaijan language.
+
### AzeriLatinAzerbaijan {#AzeriLatinAzerbaijan}
```
public static final OpenTypeWindowsLanguage AzeriLatinAzerbaijan
@@ -438,6 +670,7 @@ public static final OpenTypeWindowsLanguage AzeriLatinAzerbaijan
The azeri latin Azerbaijan language.
+
### BashkirRussia {#BashkirRussia}
```
public static final OpenTypeWindowsLanguage BashkirRussia
@@ -446,6 +679,7 @@ public static final OpenTypeWindowsLanguage BashkirRussia
The bashkir Russia language.
+
### BasqueBasque {#BasqueBasque}
```
public static final OpenTypeWindowsLanguage BasqueBasque
@@ -454,6 +688,7 @@ public static final OpenTypeWindowsLanguage BasqueBasque
The basque Basque language.
+
### BelarusianBelarus {#BelarusianBelarus}
```
public static final OpenTypeWindowsLanguage BelarusianBelarus
@@ -462,6 +697,7 @@ public static final OpenTypeWindowsLanguage BelarusianBelarus
The belarusian Belarus language.
+
### BengaliBangladesh {#BengaliBangladesh}
```
public static final OpenTypeWindowsLanguage BengaliBangladesh
@@ -470,6 +706,7 @@ public static final OpenTypeWindowsLanguage BengaliBangladesh
The bengali Bangladesh language.
+
### BengaliIndia {#BengaliIndia}
```
public static final OpenTypeWindowsLanguage BengaliIndia
@@ -478,6 +715,7 @@ public static final OpenTypeWindowsLanguage BengaliIndia
The bengali India language.
+
### BosnianLatinBosniaAndHerzegovina {#BosnianLatinBosniaAndHerzegovina}
```
public static final OpenTypeWindowsLanguage BosnianLatinBosniaAndHerzegovina
@@ -486,6 +724,7 @@ public static final OpenTypeWindowsLanguage BosnianLatinBosniaAndHerzegovina
The bosnian latin Bosnia and Herzegovina language.
+
### BretonFrance {#BretonFrance}
```
public static final OpenTypeWindowsLanguage BretonFrance
@@ -494,6 +733,7 @@ public static final OpenTypeWindowsLanguage BretonFrance
The breton France language.
+
### BulgarianBulgaria {#BulgarianBulgaria}
```
public static final OpenTypeWindowsLanguage BulgarianBulgaria
@@ -502,6 +742,7 @@ public static final OpenTypeWindowsLanguage BulgarianBulgaria
The bulgarian Bulgaria language.
+
### CatalanCatalan {#CatalanCatalan}
```
public static final OpenTypeWindowsLanguage CatalanCatalan
@@ -510,6 +751,7 @@ public static final OpenTypeWindowsLanguage CatalanCatalan
The catalan Catalan language.
+
### ChineseHongKongSar {#ChineseHongKongSar}
```
public static final OpenTypeWindowsLanguage ChineseHongKongSar
@@ -518,6 +760,7 @@ public static final OpenTypeWindowsLanguage ChineseHongKongSar
The chinese Hong Kong SAR language.
+
### ChineseMacaoSar {#ChineseMacaoSar}
```
public static final OpenTypeWindowsLanguage ChineseMacaoSar
@@ -526,6 +769,7 @@ public static final OpenTypeWindowsLanguage ChineseMacaoSar
The chinese Macao SAR language.
+
### ChinesePeoplesRepublicOfChina {#ChinesePeoplesRepublicOfChina}
```
public static final OpenTypeWindowsLanguage ChinesePeoplesRepublicOfChina
@@ -534,6 +778,7 @@ public static final OpenTypeWindowsLanguage ChinesePeoplesRepublicOfChina
The chinese Peoples Republic of China language.
+
### ChineseSingapore {#ChineseSingapore}
```
public static final OpenTypeWindowsLanguage ChineseSingapore
@@ -542,6 +787,7 @@ public static final OpenTypeWindowsLanguage ChineseSingapore
The chinese Singapore language.
+
### ChineseTaiwan {#ChineseTaiwan}
```
public static final OpenTypeWindowsLanguage ChineseTaiwan
@@ -550,6 +796,7 @@ public static final OpenTypeWindowsLanguage ChineseTaiwan
The chinese Taiwan language.
+
### CorsicanFrance {#CorsicanFrance}
```
public static final OpenTypeWindowsLanguage CorsicanFrance
@@ -558,6 +805,7 @@ public static final OpenTypeWindowsLanguage CorsicanFrance
The corsican France language.
+
### CroatianCroatia {#CroatianCroatia}
```
public static final OpenTypeWindowsLanguage CroatianCroatia
@@ -566,6 +814,7 @@ public static final OpenTypeWindowsLanguage CroatianCroatia
The croatian Croatia language.
+
### CroatianLatinBosniaAndHerzegovina {#CroatianLatinBosniaAndHerzegovina}
```
public static final OpenTypeWindowsLanguage CroatianLatinBosniaAndHerzegovina
@@ -574,6 +823,7 @@ public static final OpenTypeWindowsLanguage CroatianLatinBosniaAndHerzegovina
The croatian latin Bosnia and Herzegovina language.
+
### CzechCzechRepublic {#CzechCzechRepublic}
```
public static final OpenTypeWindowsLanguage CzechCzechRepublic
@@ -582,6 +832,7 @@ public static final OpenTypeWindowsLanguage CzechCzechRepublic
The czech Czech Republic language.
+
### DanishDenmark {#DanishDenmark}
```
public static final OpenTypeWindowsLanguage DanishDenmark
@@ -590,6 +841,7 @@ public static final OpenTypeWindowsLanguage DanishDenmark
The danish Denmark language.
+
### DariAfghanistan {#DariAfghanistan}
```
public static final OpenTypeWindowsLanguage DariAfghanistan
@@ -598,6 +850,7 @@ public static final OpenTypeWindowsLanguage DariAfghanistan
The dari Afghanistan language.
+
### DivehiMaldives {#DivehiMaldives}
```
public static final OpenTypeWindowsLanguage DivehiMaldives
@@ -606,6 +859,7 @@ public static final OpenTypeWindowsLanguage DivehiMaldives
The divehi Maldives language.
+
### DutchBelgium {#DutchBelgium}
```
public static final OpenTypeWindowsLanguage DutchBelgium
@@ -614,6 +868,7 @@ public static final OpenTypeWindowsLanguage DutchBelgium
The dutch Belgium language.
+
### DutchNetherlands {#DutchNetherlands}
```
public static final OpenTypeWindowsLanguage DutchNetherlands
@@ -622,6 +877,7 @@ public static final OpenTypeWindowsLanguage DutchNetherlands
The dutch Netherlands language.
+
### EnglishAustralia {#EnglishAustralia}
```
public static final OpenTypeWindowsLanguage EnglishAustralia
@@ -630,6 +886,7 @@ public static final OpenTypeWindowsLanguage EnglishAustralia
The english Australia language.
+
### EnglishBelize {#EnglishBelize}
```
public static final OpenTypeWindowsLanguage EnglishBelize
@@ -638,6 +895,7 @@ public static final OpenTypeWindowsLanguage EnglishBelize
The english Belize language.
+
### EnglishCanada {#EnglishCanada}
```
public static final OpenTypeWindowsLanguage EnglishCanada
@@ -646,6 +904,7 @@ public static final OpenTypeWindowsLanguage EnglishCanada
The english Canada language.
+
### EnglishCaribbean {#EnglishCaribbean}
```
public static final OpenTypeWindowsLanguage EnglishCaribbean
@@ -654,6 +913,7 @@ public static final OpenTypeWindowsLanguage EnglishCaribbean
The english Caribbean language.
+
### EnglishIndia {#EnglishIndia}
```
public static final OpenTypeWindowsLanguage EnglishIndia
@@ -662,6 +922,7 @@ public static final OpenTypeWindowsLanguage EnglishIndia
The english India language.
+
### EnglishIreland {#EnglishIreland}
```
public static final OpenTypeWindowsLanguage EnglishIreland
@@ -670,6 +931,7 @@ public static final OpenTypeWindowsLanguage EnglishIreland
The english Ireland language.
+
### EnglishJamaica {#EnglishJamaica}
```
public static final OpenTypeWindowsLanguage EnglishJamaica
@@ -678,6 +940,7 @@ public static final OpenTypeWindowsLanguage EnglishJamaica
The english Jamaica language.
+
### EnglishMalaysia {#EnglishMalaysia}
```
public static final OpenTypeWindowsLanguage EnglishMalaysia
@@ -686,6 +949,7 @@ public static final OpenTypeWindowsLanguage EnglishMalaysia
The english Malaysia language.
+
### EnglishNewZealand {#EnglishNewZealand}
```
public static final OpenTypeWindowsLanguage EnglishNewZealand
@@ -694,6 +958,7 @@ public static final OpenTypeWindowsLanguage EnglishNewZealand
The english New Zealand language.
+
### EnglishRepublicOfThePhilippines {#EnglishRepublicOfThePhilippines}
```
public static final OpenTypeWindowsLanguage EnglishRepublicOfThePhilippines
@@ -702,6 +967,7 @@ public static final OpenTypeWindowsLanguage EnglishRepublicOfThePhilippines
The english Republic of the Philippines language.
+
### EnglishSingapore {#EnglishSingapore}
```
public static final OpenTypeWindowsLanguage EnglishSingapore
@@ -710,6 +976,7 @@ public static final OpenTypeWindowsLanguage EnglishSingapore
The english Singapore language.
+
### EnglishSouthAfrica {#EnglishSouthAfrica}
```
public static final OpenTypeWindowsLanguage EnglishSouthAfrica
@@ -718,6 +985,7 @@ public static final OpenTypeWindowsLanguage EnglishSouthAfrica
The english south africa language.
+
### EnglishTrinidadAndTobago {#EnglishTrinidadAndTobago}
```
public static final OpenTypeWindowsLanguage EnglishTrinidadAndTobago
@@ -726,6 +994,7 @@ public static final OpenTypeWindowsLanguage EnglishTrinidadAndTobago
The english Trinidad and Tobago language.
+
### EnglishUnitedKingdom {#EnglishUnitedKingdom}
```
public static final OpenTypeWindowsLanguage EnglishUnitedKingdom
@@ -734,6 +1003,7 @@ public static final OpenTypeWindowsLanguage EnglishUnitedKingdom
The english United Kingdom language.
+
### EnglishUnitedStates {#EnglishUnitedStates}
```
public static final OpenTypeWindowsLanguage EnglishUnitedStates
@@ -742,6 +1012,7 @@ public static final OpenTypeWindowsLanguage EnglishUnitedStates
The english United States language.
+
### EnglishZimbabwe {#EnglishZimbabwe}
```
public static final OpenTypeWindowsLanguage EnglishZimbabwe
@@ -750,6 +1021,7 @@ public static final OpenTypeWindowsLanguage EnglishZimbabwe
The english Zimbabwe language.
+
### EstonianEstonia {#EstonianEstonia}
```
public static final OpenTypeWindowsLanguage EstonianEstonia
@@ -758,6 +1030,7 @@ public static final OpenTypeWindowsLanguage EstonianEstonia
The estonian Estonia language.
+
### FaroeseFaroeIslands {#FaroeseFaroeIslands}
```
public static final OpenTypeWindowsLanguage FaroeseFaroeIslands
@@ -766,6 +1039,7 @@ public static final OpenTypeWindowsLanguage FaroeseFaroeIslands
The faroese Faroe Islands language.
+
### FilipinoPhilippines {#FilipinoPhilippines}
```
public static final OpenTypeWindowsLanguage FilipinoPhilippines
@@ -774,6 +1048,7 @@ public static final OpenTypeWindowsLanguage FilipinoPhilippines
The filipino Philippines language.
+
### FinnishFinland {#FinnishFinland}
```
public static final OpenTypeWindowsLanguage FinnishFinland
@@ -782,6 +1057,7 @@ public static final OpenTypeWindowsLanguage FinnishFinland
The finnish Finland language.
+
### FrenchBelgium {#FrenchBelgium}
```
public static final OpenTypeWindowsLanguage FrenchBelgium
@@ -790,6 +1066,7 @@ public static final OpenTypeWindowsLanguage FrenchBelgium
The french Belgium language.
+
### FrenchCanada {#FrenchCanada}
```
public static final OpenTypeWindowsLanguage FrenchCanada
@@ -798,6 +1075,7 @@ public static final OpenTypeWindowsLanguage FrenchCanada
The french Canada language.
+
### FrenchFrance {#FrenchFrance}
```
public static final OpenTypeWindowsLanguage FrenchFrance
@@ -806,6 +1084,7 @@ public static final OpenTypeWindowsLanguage FrenchFrance
The french France language.
+
### FrenchLuxembourg {#FrenchLuxembourg}
```
public static final OpenTypeWindowsLanguage FrenchLuxembourg
@@ -814,6 +1093,7 @@ public static final OpenTypeWindowsLanguage FrenchLuxembourg
The french Luxembourg language.
+
### FrenchPrincipalityOfMonaco {#FrenchPrincipalityOfMonaco}
```
public static final OpenTypeWindowsLanguage FrenchPrincipalityOfMonaco
@@ -822,6 +1102,7 @@ public static final OpenTypeWindowsLanguage FrenchPrincipalityOfMonaco
The french Principality of Monaco language.
+
### FrenchSwitzerland {#FrenchSwitzerland}
```
public static final OpenTypeWindowsLanguage FrenchSwitzerland
@@ -830,6 +1111,7 @@ public static final OpenTypeWindowsLanguage FrenchSwitzerland
The french Switzerland language.
+
### FrisianNetherlands {#FrisianNetherlands}
```
public static final OpenTypeWindowsLanguage FrisianNetherlands
@@ -838,6 +1120,7 @@ public static final OpenTypeWindowsLanguage FrisianNetherlands
The frisian Netherlands language.
+
### GalicianGalician {#GalicianGalician}
```
public static final OpenTypeWindowsLanguage GalicianGalician
@@ -846,6 +1129,7 @@ public static final OpenTypeWindowsLanguage GalicianGalician
The galician Galician language.
+
### GeorgianGeorgia {#GeorgianGeorgia}
```
public static final OpenTypeWindowsLanguage GeorgianGeorgia
@@ -854,6 +1138,7 @@ public static final OpenTypeWindowsLanguage GeorgianGeorgia
The georgian Georgia language.
+
### GermanAustria {#GermanAustria}
```
public static final OpenTypeWindowsLanguage GermanAustria
@@ -862,6 +1147,7 @@ public static final OpenTypeWindowsLanguage GermanAustria
The german Austria language.
+
### GermanGermany {#GermanGermany}
```
public static final OpenTypeWindowsLanguage GermanGermany
@@ -870,6 +1156,7 @@ public static final OpenTypeWindowsLanguage GermanGermany
The german Germany language.
+
### GermanLiechtenstein {#GermanLiechtenstein}
```
public static final OpenTypeWindowsLanguage GermanLiechtenstein
@@ -878,6 +1165,7 @@ public static final OpenTypeWindowsLanguage GermanLiechtenstein
The german Liechtenstein language.
+
### GermanLuxembourg {#GermanLuxembourg}
```
public static final OpenTypeWindowsLanguage GermanLuxembourg
@@ -886,6 +1174,7 @@ public static final OpenTypeWindowsLanguage GermanLuxembourg
The german Luxembourg language.
+
### GermanSwitzerland {#GermanSwitzerland}
```
public static final OpenTypeWindowsLanguage GermanSwitzerland
@@ -894,6 +1183,7 @@ public static final OpenTypeWindowsLanguage GermanSwitzerland
The german Switzerland language.
+
### GreekGreece {#GreekGreece}
```
public static final OpenTypeWindowsLanguage GreekGreece
@@ -902,6 +1192,7 @@ public static final OpenTypeWindowsLanguage GreekGreece
The greek Greece language.
+
### GreenlandicGreenland {#GreenlandicGreenland}
```
public static final OpenTypeWindowsLanguage GreenlandicGreenland
@@ -910,6 +1201,7 @@ public static final OpenTypeWindowsLanguage GreenlandicGreenland
The greenlandic Greenland language.
+
### GujaratiIndia {#GujaratiIndia}
```
public static final OpenTypeWindowsLanguage GujaratiIndia
@@ -918,6 +1210,7 @@ public static final OpenTypeWindowsLanguage GujaratiIndia
The gujarati India language.
+
### HausaLatinNigeria {#HausaLatinNigeria}
```
public static final OpenTypeWindowsLanguage HausaLatinNigeria
@@ -926,6 +1219,7 @@ public static final OpenTypeWindowsLanguage HausaLatinNigeria
The hausa latin Nigeria language.
+
### HebrewIsrael {#HebrewIsrael}
```
public static final OpenTypeWindowsLanguage HebrewIsrael
@@ -934,6 +1228,7 @@ public static final OpenTypeWindowsLanguage HebrewIsrael
The hebrew Israel language.
+
### HindiIndia {#HindiIndia}
```
public static final OpenTypeWindowsLanguage HindiIndia
@@ -942,6 +1237,7 @@ public static final OpenTypeWindowsLanguage HindiIndia
The hindi India language.
+
### HungarianHungary {#HungarianHungary}
```
public static final OpenTypeWindowsLanguage HungarianHungary
@@ -950,6 +1246,7 @@ public static final OpenTypeWindowsLanguage HungarianHungary
The hungarian Hungary language.
+
### IcelandicIceland {#IcelandicIceland}
```
public static final OpenTypeWindowsLanguage IcelandicIceland
@@ -958,6 +1255,7 @@ public static final OpenTypeWindowsLanguage IcelandicIceland
The icelandic Iceland language.
+
### IgboNigeria {#IgboNigeria}
```
public static final OpenTypeWindowsLanguage IgboNigeria
@@ -966,6 +1264,7 @@ public static final OpenTypeWindowsLanguage IgboNigeria
The igbo Nigeria language.
+
### IndonesianIndonesia {#IndonesianIndonesia}
```
public static final OpenTypeWindowsLanguage IndonesianIndonesia
@@ -974,6 +1273,7 @@ public static final OpenTypeWindowsLanguage IndonesianIndonesia
The indonesian Indonesia language.
+
### InuktitutCanada {#InuktitutCanada}
```
public static final OpenTypeWindowsLanguage InuktitutCanada
@@ -982,6 +1282,7 @@ public static final OpenTypeWindowsLanguage InuktitutCanada
The inuktitut Canada language.
+
### InuktitutLatinCanada {#InuktitutLatinCanada}
```
public static final OpenTypeWindowsLanguage InuktitutLatinCanada
@@ -990,6 +1291,7 @@ public static final OpenTypeWindowsLanguage InuktitutLatinCanada
The inuktitut latin Canada language.
+
### IrishIreland {#IrishIreland}
```
public static final OpenTypeWindowsLanguage IrishIreland
@@ -998,6 +1300,7 @@ public static final OpenTypeWindowsLanguage IrishIreland
The irish Ireland language.
+
### IsiXhosaSouthAfrica {#IsiXhosaSouthAfrica}
```
public static final OpenTypeWindowsLanguage IsiXhosaSouthAfrica
@@ -1006,6 +1309,7 @@ public static final OpenTypeWindowsLanguage IsiXhosaSouthAfrica
The isi xhosa South Africa language.
+
### IsiZuluSouthAfrica {#IsiZuluSouthAfrica}
```
public static final OpenTypeWindowsLanguage IsiZuluSouthAfrica
@@ -1014,6 +1318,7 @@ public static final OpenTypeWindowsLanguage IsiZuluSouthAfrica
The isi zulu South Africa language.
+
### ItalianItaly {#ItalianItaly}
```
public static final OpenTypeWindowsLanguage ItalianItaly
@@ -1022,6 +1327,7 @@ public static final OpenTypeWindowsLanguage ItalianItaly
The italian Italy language.
+
### ItalianSwitzerland {#ItalianSwitzerland}
```
public static final OpenTypeWindowsLanguage ItalianSwitzerland
@@ -1030,6 +1336,7 @@ public static final OpenTypeWindowsLanguage ItalianSwitzerland
The italian Switzerland language.
+
### JapaneseJapan {#JapaneseJapan}
```
public static final OpenTypeWindowsLanguage JapaneseJapan
@@ -1038,6 +1345,7 @@ public static final OpenTypeWindowsLanguage JapaneseJapan
The japanese Japan language.
+
### KannadaIndia {#KannadaIndia}
```
public static final OpenTypeWindowsLanguage KannadaIndia
@@ -1046,6 +1354,7 @@ public static final OpenTypeWindowsLanguage KannadaIndia
The kannada India language.
+
### KazakhKazakhstan {#KazakhKazakhstan}
```
public static final OpenTypeWindowsLanguage KazakhKazakhstan
@@ -1054,6 +1363,7 @@ public static final OpenTypeWindowsLanguage KazakhKazakhstan
The kazakh Kazakhstan language.
+
### KhmerCambodia {#KhmerCambodia}
```
public static final OpenTypeWindowsLanguage KhmerCambodia
@@ -1062,6 +1372,7 @@ public static final OpenTypeWindowsLanguage KhmerCambodia
The khmer Cambodia language.
+
### KicheGuatemala {#KicheGuatemala}
```
public static final OpenTypeWindowsLanguage KicheGuatemala
@@ -1070,6 +1381,7 @@ public static final OpenTypeWindowsLanguage KicheGuatemala
The kiche Guatemala language.
+
### KinyarwandaRwanda {#KinyarwandaRwanda}
```
public static final OpenTypeWindowsLanguage KinyarwandaRwanda
@@ -1078,6 +1390,7 @@ public static final OpenTypeWindowsLanguage KinyarwandaRwanda
The kinyarwanda Rwanda language.
+
### KiswahiliKenya {#KiswahiliKenya}
```
public static final OpenTypeWindowsLanguage KiswahiliKenya
@@ -1086,6 +1399,7 @@ public static final OpenTypeWindowsLanguage KiswahiliKenya
The kiswahili Kenya language.
+
### KonkaniIndia {#KonkaniIndia}
```
public static final OpenTypeWindowsLanguage KonkaniIndia
@@ -1094,6 +1408,7 @@ public static final OpenTypeWindowsLanguage KonkaniIndia
The konkani India language.
+
### KoreanKorea {#KoreanKorea}
```
public static final OpenTypeWindowsLanguage KoreanKorea
@@ -1102,6 +1417,7 @@ public static final OpenTypeWindowsLanguage KoreanKorea
The korean Korea language.
+
### KyrgyzKyrgyzstan {#KyrgyzKyrgyzstan}
```
public static final OpenTypeWindowsLanguage KyrgyzKyrgyzstan
@@ -1110,6 +1426,7 @@ public static final OpenTypeWindowsLanguage KyrgyzKyrgyzstan
The kyrgyz Kyrgyzstan language.
+
### LaoLaoPdr {#LaoLaoPdr}
```
public static final OpenTypeWindowsLanguage LaoLaoPdr
@@ -1118,6 +1435,7 @@ public static final OpenTypeWindowsLanguage LaoLaoPdr
The lao lao PDR language.
+
### LatvianLatvia {#LatvianLatvia}
```
public static final OpenTypeWindowsLanguage LatvianLatvia
@@ -1126,6 +1444,7 @@ public static final OpenTypeWindowsLanguage LatvianLatvia
The latvian Latvia language.
+
### LithuanianLithuania {#LithuanianLithuania}
```
public static final OpenTypeWindowsLanguage LithuanianLithuania
@@ -1134,6 +1453,7 @@ public static final OpenTypeWindowsLanguage LithuanianLithuania
The lithuanian Lithuania language.
+
### LowerSorbianGermany {#LowerSorbianGermany}
```
public static final OpenTypeWindowsLanguage LowerSorbianGermany
@@ -1142,6 +1462,7 @@ public static final OpenTypeWindowsLanguage LowerSorbianGermany
The lower sorbian Germany language.
+
### LuxembourgishLuxembourg {#LuxembourgishLuxembourg}
```
public static final OpenTypeWindowsLanguage LuxembourgishLuxembourg
@@ -1150,6 +1471,7 @@ public static final OpenTypeWindowsLanguage LuxembourgishLuxembourg
The luxembourgish Luxembourg language.
+
### MacedonianFyromFormerYugoslavRepublicOfMacedonia {#MacedonianFyromFormerYugoslavRepublicOfMacedonia}
```
public static final OpenTypeWindowsLanguage MacedonianFyromFormerYugoslavRepublicOfMacedonia
@@ -1158,6 +1480,7 @@ public static final OpenTypeWindowsLanguage MacedonianFyromFormerYugoslavRepubli
The macedonian fyrom former Yugoslav Republic of Macedonia language.
+
### MalayBruneiDarussalam {#MalayBruneiDarussalam}
```
public static final OpenTypeWindowsLanguage MalayBruneiDarussalam
@@ -1166,6 +1489,7 @@ public static final OpenTypeWindowsLanguage MalayBruneiDarussalam
The malay brunei Darussalam language.
+
### MalayMalaysia {#MalayMalaysia}
```
public static final OpenTypeWindowsLanguage MalayMalaysia
@@ -1174,6 +1498,7 @@ public static final OpenTypeWindowsLanguage MalayMalaysia
The malay Malaysia language.
+
### MalayalamIndia {#MalayalamIndia}
```
public static final OpenTypeWindowsLanguage MalayalamIndia
@@ -1182,6 +1507,7 @@ public static final OpenTypeWindowsLanguage MalayalamIndia
The malayalam India language.
+
### MalteseMalta {#MalteseMalta}
```
public static final OpenTypeWindowsLanguage MalteseMalta
@@ -1190,6 +1516,7 @@ public static final OpenTypeWindowsLanguage MalteseMalta
The maltese Malta language.
+
### MaoriNewZealand {#MaoriNewZealand}
```
public static final OpenTypeWindowsLanguage MaoriNewZealand
@@ -1198,6 +1525,7 @@ public static final OpenTypeWindowsLanguage MaoriNewZealand
The maori New Zealand language.
+
### MapudungunChile {#MapudungunChile}
```
public static final OpenTypeWindowsLanguage MapudungunChile
@@ -1206,6 +1534,7 @@ public static final OpenTypeWindowsLanguage MapudungunChile
The mapudungun Chile language.
+
### MarathiIndia {#MarathiIndia}
```
public static final OpenTypeWindowsLanguage MarathiIndia
@@ -1214,6 +1543,7 @@ public static final OpenTypeWindowsLanguage MarathiIndia
The marathi India language.
+
### MohawkMohawk {#MohawkMohawk}
```
public static final OpenTypeWindowsLanguage MohawkMohawk
@@ -1222,6 +1552,7 @@ public static final OpenTypeWindowsLanguage MohawkMohawk
The mohawk Mohawk language.
+
### MongolianCyrillicMongolia {#MongolianCyrillicMongolia}
```
public static final OpenTypeWindowsLanguage MongolianCyrillicMongolia
@@ -1230,6 +1561,7 @@ public static final OpenTypeWindowsLanguage MongolianCyrillicMongolia
The mongolian cyrillic Mongolia language.
+
### MongolianTraditionalPeoplesRepublicOfChina {#MongolianTraditionalPeoplesRepublicOfChina}
```
public static final OpenTypeWindowsLanguage MongolianTraditionalPeoplesRepublicOfChina
@@ -1238,6 +1570,7 @@ public static final OpenTypeWindowsLanguage MongolianTraditionalPeoplesRepublicO
The mongolian traditional Peoples Republic of China language.
+
### NepaliNepal {#NepaliNepal}
```
public static final OpenTypeWindowsLanguage NepaliNepal
@@ -1246,6 +1579,7 @@ public static final OpenTypeWindowsLanguage NepaliNepal
The nepali Nepal language.
+
### NorwegianBokmalNorway {#NorwegianBokmalNorway}
```
public static final OpenTypeWindowsLanguage NorwegianBokmalNorway
@@ -1254,6 +1588,7 @@ public static final OpenTypeWindowsLanguage NorwegianBokmalNorway
The norwegian bokmal Norway language.
+
### NorwegianNynorskNorway {#NorwegianNynorskNorway}
```
public static final OpenTypeWindowsLanguage NorwegianNynorskNorway
@@ -1262,6 +1597,7 @@ public static final OpenTypeWindowsLanguage NorwegianNynorskNorway
The norwegian nynorsk Norway language.
+
### OccitanFrance {#OccitanFrance}
```
public static final OpenTypeWindowsLanguage OccitanFrance
@@ -1270,6 +1606,7 @@ public static final OpenTypeWindowsLanguage OccitanFrance
The occitan France language.
+
### OdiaFormerlyOriyaIndia {#OdiaFormerlyOriyaIndia}
```
public static final OpenTypeWindowsLanguage OdiaFormerlyOriyaIndia
@@ -1278,6 +1615,7 @@ public static final OpenTypeWindowsLanguage OdiaFormerlyOriyaIndia
The odia formerly oriya India language.
+
### PashtoAfghanistan {#PashtoAfghanistan}
```
public static final OpenTypeWindowsLanguage PashtoAfghanistan
@@ -1286,6 +1624,7 @@ public static final OpenTypeWindowsLanguage PashtoAfghanistan
The pashto Afghanistan language.
+
### PolishPoland {#PolishPoland}
```
public static final OpenTypeWindowsLanguage PolishPoland
@@ -1294,6 +1633,7 @@ public static final OpenTypeWindowsLanguage PolishPoland
The polish Poland language.
+
### PortugueseBrazil {#PortugueseBrazil}
```
public static final OpenTypeWindowsLanguage PortugueseBrazil
@@ -1302,6 +1642,7 @@ public static final OpenTypeWindowsLanguage PortugueseBrazil
The portuguese Brazil language.
+
### PortuguesePortugal {#PortuguesePortugal}
```
public static final OpenTypeWindowsLanguage PortuguesePortugal
@@ -1310,6 +1651,7 @@ public static final OpenTypeWindowsLanguage PortuguesePortugal
The portuguese Portugal language.
+
### PunjabiIndia {#PunjabiIndia}
```
public static final OpenTypeWindowsLanguage PunjabiIndia
@@ -1318,6 +1660,7 @@ public static final OpenTypeWindowsLanguage PunjabiIndia
The punjabi India language.
+
### QuechuaBolivia {#QuechuaBolivia}
```
public static final OpenTypeWindowsLanguage QuechuaBolivia
@@ -1326,6 +1669,7 @@ public static final OpenTypeWindowsLanguage QuechuaBolivia
The quechua Bolivia language.
+
### QuechuaEcuador {#QuechuaEcuador}
```
public static final OpenTypeWindowsLanguage QuechuaEcuador
@@ -1334,6 +1678,7 @@ public static final OpenTypeWindowsLanguage QuechuaEcuador
The quechua Ecuador language.
+
### QuechuaPeru {#QuechuaPeru}
```
public static final OpenTypeWindowsLanguage QuechuaPeru
@@ -1342,6 +1687,7 @@ public static final OpenTypeWindowsLanguage QuechuaPeru
The quechua Peru language.
+
### RomanianRomania {#RomanianRomania}
```
public static final OpenTypeWindowsLanguage RomanianRomania
@@ -1350,6 +1696,7 @@ public static final OpenTypeWindowsLanguage RomanianRomania
The romanian Romania language.
+
### RomanshSwitzerland {#RomanshSwitzerland}
```
public static final OpenTypeWindowsLanguage RomanshSwitzerland
@@ -1358,6 +1705,7 @@ public static final OpenTypeWindowsLanguage RomanshSwitzerland
The romansh Switzerland language.
+
### RussianRussia {#RussianRussia}
```
public static final OpenTypeWindowsLanguage RussianRussia
@@ -1366,6 +1714,7 @@ public static final OpenTypeWindowsLanguage RussianRussia
The russian Russia language.
+
### SamiInariFinland {#SamiInariFinland}
```
public static final OpenTypeWindowsLanguage SamiInariFinland
@@ -1374,6 +1723,7 @@ public static final OpenTypeWindowsLanguage SamiInariFinland
The sami inari Finland language.
+
### SamiLuleNorway {#SamiLuleNorway}
```
public static final OpenTypeWindowsLanguage SamiLuleNorway
@@ -1382,6 +1732,7 @@ public static final OpenTypeWindowsLanguage SamiLuleNorway
The sami lule Norway language.
+
### SamiLuleSweden {#SamiLuleSweden}
```
public static final OpenTypeWindowsLanguage SamiLuleSweden
@@ -1390,6 +1741,7 @@ public static final OpenTypeWindowsLanguage SamiLuleSweden
The sami lule Sweden language.
+
### SamiNorthernFinland {#SamiNorthernFinland}
```
public static final OpenTypeWindowsLanguage SamiNorthernFinland
@@ -1398,6 +1750,7 @@ public static final OpenTypeWindowsLanguage SamiNorthernFinland
The sami northern Finland language.
+
### SamiNorthernNorway {#SamiNorthernNorway}
```
public static final OpenTypeWindowsLanguage SamiNorthernNorway
@@ -1406,6 +1759,7 @@ public static final OpenTypeWindowsLanguage SamiNorthernNorway
The sami northern Norway language.
+
### SamiNorthernSweden {#SamiNorthernSweden}
```
public static final OpenTypeWindowsLanguage SamiNorthernSweden
@@ -1414,6 +1768,7 @@ public static final OpenTypeWindowsLanguage SamiNorthernSweden
The sami northern Sweden language.
+
### SamiSkoltFinland {#SamiSkoltFinland}
```
public static final OpenTypeWindowsLanguage SamiSkoltFinland
@@ -1422,6 +1777,7 @@ public static final OpenTypeWindowsLanguage SamiSkoltFinland
The sami skolt Finland language.
+
### SamiSouthernNorway {#SamiSouthernNorway}
```
public static final OpenTypeWindowsLanguage SamiSouthernNorway
@@ -1430,6 +1786,7 @@ public static final OpenTypeWindowsLanguage SamiSouthernNorway
The sami southern Norway language.
+
### SamiSouthernSweden {#SamiSouthernSweden}
```
public static final OpenTypeWindowsLanguage SamiSouthernSweden
@@ -1438,6 +1795,7 @@ public static final OpenTypeWindowsLanguage SamiSouthernSweden
The sami southern Sweden language.
+
### SanskritIndia {#SanskritIndia}
```
public static final OpenTypeWindowsLanguage SanskritIndia
@@ -1446,6 +1804,7 @@ public static final OpenTypeWindowsLanguage SanskritIndia
The sanskrit India language.
+
### SerbianCyrillicBosniaAndHerzegovina {#SerbianCyrillicBosniaAndHerzegovina}
```
public static final OpenTypeWindowsLanguage SerbianCyrillicBosniaAndHerzegovina
@@ -1454,6 +1813,7 @@ public static final OpenTypeWindowsLanguage SerbianCyrillicBosniaAndHerzegovina
The serbian cyrillic Bosnia and Herzegovina language.
+
### SerbianCyrillicSerbia {#SerbianCyrillicSerbia}
```
public static final OpenTypeWindowsLanguage SerbianCyrillicSerbia
@@ -1462,6 +1822,7 @@ public static final OpenTypeWindowsLanguage SerbianCyrillicSerbia
The serbian cyrillic Serbia language.
+
### SerbianLatinBosniaAndHerzegovina {#SerbianLatinBosniaAndHerzegovina}
```
public static final OpenTypeWindowsLanguage SerbianLatinBosniaAndHerzegovina
@@ -1470,6 +1831,7 @@ public static final OpenTypeWindowsLanguage SerbianLatinBosniaAndHerzegovina
The serbian latin Bosnia and Herzegovina language.
+
### SerbianLatinSerbia {#SerbianLatinSerbia}
```
public static final OpenTypeWindowsLanguage SerbianLatinSerbia
@@ -1478,6 +1840,7 @@ public static final OpenTypeWindowsLanguage SerbianLatinSerbia
The serbian latin Serbia language.
+
### SesothoSaLeboaSouthAfrica {#SesothoSaLeboaSouthAfrica}
```
public static final OpenTypeWindowsLanguage SesothoSaLeboaSouthAfrica
@@ -1486,6 +1849,7 @@ public static final OpenTypeWindowsLanguage SesothoSaLeboaSouthAfrica
The sesotho sa leboa South Africa language.
+
### SetswanaSouthAfrica {#SetswanaSouthAfrica}
```
public static final OpenTypeWindowsLanguage SetswanaSouthAfrica
@@ -1494,6 +1858,7 @@ public static final OpenTypeWindowsLanguage SetswanaSouthAfrica
The setswana South Africa language.
+
### SinhalaSriLanka {#SinhalaSriLanka}
```
public static final OpenTypeWindowsLanguage SinhalaSriLanka
@@ -1502,6 +1867,7 @@ public static final OpenTypeWindowsLanguage SinhalaSriLanka
The sinhala Sri Lanka language.
+
### SlovakSlovakia {#SlovakSlovakia}
```
public static final OpenTypeWindowsLanguage SlovakSlovakia
@@ -1510,6 +1876,7 @@ public static final OpenTypeWindowsLanguage SlovakSlovakia
The slovak Slovakia language.
+
### SlovenianSlovenia {#SlovenianSlovenia}
```
public static final OpenTypeWindowsLanguage SlovenianSlovenia
@@ -1518,6 +1885,7 @@ public static final OpenTypeWindowsLanguage SlovenianSlovenia
The slovenian Slovenia language.
+
### SpanishArgentina {#SpanishArgentina}
```
public static final OpenTypeWindowsLanguage SpanishArgentina
@@ -1526,6 +1894,7 @@ public static final OpenTypeWindowsLanguage SpanishArgentina
The spanish Argentina language.
+
### SpanishBolivia {#SpanishBolivia}
```
public static final OpenTypeWindowsLanguage SpanishBolivia
@@ -1534,6 +1903,7 @@ public static final OpenTypeWindowsLanguage SpanishBolivia
The spanish Bolivia language.
+
### SpanishChile {#SpanishChile}
```
public static final OpenTypeWindowsLanguage SpanishChile
@@ -1542,6 +1912,7 @@ public static final OpenTypeWindowsLanguage SpanishChile
The spanish Chile language.
+
### SpanishColombia {#SpanishColombia}
```
public static final OpenTypeWindowsLanguage SpanishColombia
@@ -1550,6 +1921,7 @@ public static final OpenTypeWindowsLanguage SpanishColombia
The spanish Colombia language.
+
### SpanishCostaRica {#SpanishCostaRica}
```
public static final OpenTypeWindowsLanguage SpanishCostaRica
@@ -1558,6 +1930,7 @@ public static final OpenTypeWindowsLanguage SpanishCostaRica
The spanish Costa Rica language.
+
### SpanishDominicanRepublic {#SpanishDominicanRepublic}
```
public static final OpenTypeWindowsLanguage SpanishDominicanRepublic
@@ -1566,6 +1939,7 @@ public static final OpenTypeWindowsLanguage SpanishDominicanRepublic
The spanish Dominican Republic language.
+
### SpanishEcuador {#SpanishEcuador}
```
public static final OpenTypeWindowsLanguage SpanishEcuador
@@ -1574,6 +1948,7 @@ public static final OpenTypeWindowsLanguage SpanishEcuador
The spanish Ecuador language.
+
### SpanishElSalvador {#SpanishElSalvador}
```
public static final OpenTypeWindowsLanguage SpanishElSalvador
@@ -1582,6 +1957,7 @@ public static final OpenTypeWindowsLanguage SpanishElSalvador
The spanish El Salvador language.
+
### SpanishGuatemala {#SpanishGuatemala}
```
public static final OpenTypeWindowsLanguage SpanishGuatemala
@@ -1590,6 +1966,7 @@ public static final OpenTypeWindowsLanguage SpanishGuatemala
The spanish Guatemala language.
+
### SpanishHonduras {#SpanishHonduras}
```
public static final OpenTypeWindowsLanguage SpanishHonduras
@@ -1598,6 +1975,7 @@ public static final OpenTypeWindowsLanguage SpanishHonduras
The spanish Honduras language.
+
### SpanishMexico {#SpanishMexico}
```
public static final OpenTypeWindowsLanguage SpanishMexico
@@ -1606,6 +1984,7 @@ public static final OpenTypeWindowsLanguage SpanishMexico
The spanish Mexico language.
+
### SpanishNicaragua {#SpanishNicaragua}
```
public static final OpenTypeWindowsLanguage SpanishNicaragua
@@ -1614,6 +1993,7 @@ public static final OpenTypeWindowsLanguage SpanishNicaragua
The spanish Nicaragua language.
+
### SpanishPanama {#SpanishPanama}
```
public static final OpenTypeWindowsLanguage SpanishPanama
@@ -1622,6 +2002,7 @@ public static final OpenTypeWindowsLanguage SpanishPanama
The spanish Panama language.
+
### SpanishParaguay {#SpanishParaguay}
```
public static final OpenTypeWindowsLanguage SpanishParaguay
@@ -1630,6 +2011,7 @@ public static final OpenTypeWindowsLanguage SpanishParaguay
The spanish Paraguay language.
+
### SpanishPeru {#SpanishPeru}
```
public static final OpenTypeWindowsLanguage SpanishPeru
@@ -1638,6 +2020,7 @@ public static final OpenTypeWindowsLanguage SpanishPeru
The spanish Peru language.
+
### SpanishPuertoRico {#SpanishPuertoRico}
```
public static final OpenTypeWindowsLanguage SpanishPuertoRico
@@ -1646,6 +2029,7 @@ public static final OpenTypeWindowsLanguage SpanishPuertoRico
The spanish Puerto Rico language.
+
### SpanishModernSortSpain {#SpanishModernSortSpain}
```
public static final OpenTypeWindowsLanguage SpanishModernSortSpain
@@ -1654,6 +2038,7 @@ public static final OpenTypeWindowsLanguage SpanishModernSortSpain
The spanish modern sort Spain language.
+
### SpanishTraditionalSortSpain {#SpanishTraditionalSortSpain}
```
public static final OpenTypeWindowsLanguage SpanishTraditionalSortSpain
@@ -1662,6 +2047,7 @@ public static final OpenTypeWindowsLanguage SpanishTraditionalSortSpain
The spanish traditional sort Spain language.
+
### SpanishUnitedStates {#SpanishUnitedStates}
```
public static final OpenTypeWindowsLanguage SpanishUnitedStates
@@ -1670,6 +2056,7 @@ public static final OpenTypeWindowsLanguage SpanishUnitedStates
The spanish United States language.
+
### SpanishUruguay {#SpanishUruguay}
```
public static final OpenTypeWindowsLanguage SpanishUruguay
@@ -1678,6 +2065,7 @@ public static final OpenTypeWindowsLanguage SpanishUruguay
The spanish Uruguay language.
+
### SpanishVenezuela {#SpanishVenezuela}
```
public static final OpenTypeWindowsLanguage SpanishVenezuela
@@ -1686,6 +2074,7 @@ public static final OpenTypeWindowsLanguage SpanishVenezuela
The spanish Venezuela language.
+
### SwedenFinland {#SwedenFinland}
```
public static final OpenTypeWindowsLanguage SwedenFinland
@@ -1694,6 +2083,7 @@ public static final OpenTypeWindowsLanguage SwedenFinland
The sweden Finland language.
+
### SwedishSweden {#SwedishSweden}
```
public static final OpenTypeWindowsLanguage SwedishSweden
@@ -1702,6 +2092,7 @@ public static final OpenTypeWindowsLanguage SwedishSweden
The swedish Sweden language.
+
### SyriacSyria {#SyriacSyria}
```
public static final OpenTypeWindowsLanguage SyriacSyria
@@ -1710,6 +2101,7 @@ public static final OpenTypeWindowsLanguage SyriacSyria
The syriac Syria language.
+
### TajikCyrillicTajikistan {#TajikCyrillicTajikistan}
```
public static final OpenTypeWindowsLanguage TajikCyrillicTajikistan
@@ -1718,6 +2110,7 @@ public static final OpenTypeWindowsLanguage TajikCyrillicTajikistan
The tajik cyrillic tajikistan language.
+
### TamazightLatinAlgeria {#TamazightLatinAlgeria}
```
public static final OpenTypeWindowsLanguage TamazightLatinAlgeria
@@ -1726,6 +2119,7 @@ public static final OpenTypeWindowsLanguage TamazightLatinAlgeria
The tamazight latin Algeria language.
+
### TamilIndia {#TamilIndia}
```
public static final OpenTypeWindowsLanguage TamilIndia
@@ -1734,6 +2128,7 @@ public static final OpenTypeWindowsLanguage TamilIndia
The tamil India language.
+
### TatarRussia {#TatarRussia}
```
public static final OpenTypeWindowsLanguage TatarRussia
@@ -1742,6 +2137,7 @@ public static final OpenTypeWindowsLanguage TatarRussia
The tatar Russia language.
+
### TeluguIndia {#TeluguIndia}
```
public static final OpenTypeWindowsLanguage TeluguIndia
@@ -1750,6 +2146,7 @@ public static final OpenTypeWindowsLanguage TeluguIndia
The telugu India language.
+
### ThaiThailand {#ThaiThailand}
```
public static final OpenTypeWindowsLanguage ThaiThailand
@@ -1758,6 +2155,7 @@ public static final OpenTypeWindowsLanguage ThaiThailand
The thai Thailand language.
+
### TibetanPrc {#TibetanPrc}
```
public static final OpenTypeWindowsLanguage TibetanPrc
@@ -1766,6 +2164,7 @@ public static final OpenTypeWindowsLanguage TibetanPrc
The tibetan PRC language.
+
### TurkishTurkey {#TurkishTurkey}
```
public static final OpenTypeWindowsLanguage TurkishTurkey
@@ -1774,6 +2173,7 @@ public static final OpenTypeWindowsLanguage TurkishTurkey
The turkish Turkey language.
+
### TurkmenTurkmenistan {#TurkmenTurkmenistan}
```
public static final OpenTypeWindowsLanguage TurkmenTurkmenistan
@@ -1782,6 +2182,7 @@ public static final OpenTypeWindowsLanguage TurkmenTurkmenistan
The turkmen Turkmenistan language.
+
### UighurPrc {#UighurPrc}
```
public static final OpenTypeWindowsLanguage UighurPrc
@@ -1790,6 +2191,7 @@ public static final OpenTypeWindowsLanguage UighurPrc
The uighur PRC language.
+
### UkrainianUkraine {#UkrainianUkraine}
```
public static final OpenTypeWindowsLanguage UkrainianUkraine
@@ -1798,6 +2200,7 @@ public static final OpenTypeWindowsLanguage UkrainianUkraine
The ukrainian Ukraine language.
+
### UpperSorbianGermany {#UpperSorbianGermany}
```
public static final OpenTypeWindowsLanguage UpperSorbianGermany
@@ -1806,6 +2209,7 @@ public static final OpenTypeWindowsLanguage UpperSorbianGermany
The upper sorbian Germany language.
+
### UrduIslamicRepublicOfPakistan {#UrduIslamicRepublicOfPakistan}
```
public static final OpenTypeWindowsLanguage UrduIslamicRepublicOfPakistan
@@ -1814,6 +2218,7 @@ public static final OpenTypeWindowsLanguage UrduIslamicRepublicOfPakistan
The urdu Islamic Republic of Pakistan language.
+
### UzbekCyrillicUzbekistan {#UzbekCyrillicUzbekistan}
```
public static final OpenTypeWindowsLanguage UzbekCyrillicUzbekistan
@@ -1822,6 +2227,7 @@ public static final OpenTypeWindowsLanguage UzbekCyrillicUzbekistan
The uzbek cyrillic Uzbekistan language.
+
### UzbekLatinUzbekistan {#UzbekLatinUzbekistan}
```
public static final OpenTypeWindowsLanguage UzbekLatinUzbekistan
@@ -1830,6 +2236,7 @@ public static final OpenTypeWindowsLanguage UzbekLatinUzbekistan
The uzbek latin Uzbekistan language.
+
### VietnameseVietnam {#VietnameseVietnam}
```
public static final OpenTypeWindowsLanguage VietnameseVietnam
@@ -1838,6 +2245,7 @@ public static final OpenTypeWindowsLanguage VietnameseVietnam
The vietnamese Vietnam language.
+
### WelshUnitedKingdom {#WelshUnitedKingdom}
```
public static final OpenTypeWindowsLanguage WelshUnitedKingdom
@@ -1846,6 +2254,7 @@ public static final OpenTypeWindowsLanguage WelshUnitedKingdom
The welsh United Kingdom language.
+
### WolofSenegal {#WolofSenegal}
```
public static final OpenTypeWindowsLanguage WolofSenegal
@@ -1854,6 +2263,7 @@ public static final OpenTypeWindowsLanguage WolofSenegal
The wolof Senegal language.
+
### YakutRussia {#YakutRussia}
```
public static final OpenTypeWindowsLanguage YakutRussia
@@ -1862,6 +2272,7 @@ public static final OpenTypeWindowsLanguage YakutRussia
The yakut Russia language.
+
### YiPrc {#YiPrc}
```
public static final OpenTypeWindowsLanguage YiPrc
@@ -1870,6 +2281,7 @@ public static final OpenTypeWindowsLanguage YiPrc
The yi PRC language.
+
### YorubaNigeria {#YorubaNigeria}
```
public static final OpenTypeWindowsLanguage YorubaNigeria
@@ -1878,6 +2290,7 @@ public static final OpenTypeWindowsLanguage YorubaNigeria
The yoruba Nigeria language.
+
### values() {#values--}
```
public static OpenTypeWindowsLanguage[] values()
@@ -1936,6 +2349,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -1946,6 +2360,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -1961,6 +2376,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -1976,6 +2392,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -1986,5 +2403,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/opentypewindowsnamerecord/_index.md b/english/java/com.groupdocs.metadata.core/opentypewindowsnamerecord/_index.md
index 9e701cd31a..ecdd5c1c05 100644
--- a/english/java/com.groupdocs.metadata.core/opentypewindowsnamerecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/opentypewindowsnamerecord/_index.md
@@ -12,20 +12,26 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class OpenTypeWindowsNameRecord extends OpenTypeBaseNameRecord
```
-Represents the Name record table value for OpenTypePlatform.Windows platform.
+Represents the Name record table value for
+OpenTypePlatform.Windows
+ platform.
+
**Learn more**
- * [Working with OpenType fonts][]
+* [Working with OpenType fonts](../https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts)
+
+
-[Working with OpenType fonts]: https://docs.groupdocs.com/display/metadatajava/Working+with+OpenType+fonts
## Methods
| Method | Description |
| --- | --- |
-| [getEncoding()](#getEncoding--) | Gets the encoding identifier. |
-| [getLanguage()](#getLanguage--) | Gets the language identifier. |
+| [getEncoding()](#getEncoding--) | Gets the encoding identifier.
+ |
+| [getLanguage()](#getLanguage--) | Gets the language identifier.
+ |
### getEncoding() {#getEncoding--}
```
public final OpenTypeWindowsEncoding getEncoding()
@@ -34,8 +40,10 @@ public final OpenTypeWindowsEncoding getEncoding()
Gets the encoding identifier.
+
**Returns:**
[OpenTypeWindowsEncoding](../../com.groupdocs.metadata.core/opentypewindowsencoding) - The encoding identifier.
+
### getLanguage() {#getLanguage--}
```
public final OpenTypeWindowsLanguage getLanguage()
@@ -44,5 +52,7 @@ public final OpenTypeWindowsLanguage getLanguage()
Gets the language identifier.
+
**Returns:**
[OpenTypeWindowsLanguage](../../com.groupdocs.metadata.core/opentypewindowslanguage) - The language identifier.
+
diff --git a/english/java/com.groupdocs.metadata.core/pageinfo/_index.md b/english/java/com.groupdocs.metadata.core/pageinfo/_index.md
index a7ca2c64b2..9ed1d7c353 100644
--- a/english/java/com.groupdocs.metadata.core/pageinfo/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pageinfo/_index.md
@@ -14,19 +14,24 @@ public class PageInfo
Provides common information about a document page (slide, worksheet, etc).
+
**Learn more**
- * [Get document info][]
+* [Get document info](../https://docs.groupdocs.com/display/metadatajava/Get+document+info)
+
+
-[Get document info]: https://docs.groupdocs.com/display/metadatajava/Get+document+info
## Methods
| Method | Description |
| --- | --- |
-| [getWidth()](#getWidth--) | Gets the width of the page in document default units. |
-| [getHeight()](#getHeight--) | Gets the height of the page in document default units. |
-| [getPageNumber()](#getPageNumber--) | Gets the number of the page. |
+| [getWidth()](#getWidth--) | Gets the width of the page in document default units.
+ |
+| [getHeight()](#getHeight--) | Gets the height of the page in document default units.
+ |
+| [getPageNumber()](#getPageNumber--) | Gets the number of the page.
+ |
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -35,8 +40,10 @@ public final int getWidth()
Gets the width of the page in document default units.
+
**Returns:**
int - The width of the page in document default units.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -45,8 +52,10 @@ public final int getHeight()
Gets the height of the page in document default units.
+
**Returns:**
int - The height of the page in document default units.
+
### getPageNumber() {#getPageNumber--}
```
public final int getPageNumber()
@@ -55,5 +64,7 @@ public final int getPageNumber()
Gets the number of the page.
+
**Returns:**
int - The number of the page.
+
diff --git a/english/java/com.groupdocs.metadata.core/panasonicmakernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/panasonicmakernotepackage/_index.md
index 3115b277a9..e9a3cee9be 100644
--- a/english/java/com.groupdocs.metadata.core/panasonicmakernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/panasonicmakernotepackage/_index.md
@@ -13,23 +13,37 @@ public class PanasonicMakerNotePackage extends MakerNotePackage
```
Represents PANASONIC MakerNote metadata.
+
## Methods
| Method | Description |
| --- | --- |
-| [getImageQuality()](#getImageQuality--) | Gets the image quality. |
-| [getFirmwareVersion()](#getFirmwareVersion--) | Gets the firmware version. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets the white balance. |
-| [getFocusMode()](#getFocusMode--) | Gets the focus mode. |
-| [getAFMode()](#getAFMode--) | Gets the AF mode. |
-| [getImageStabilization()](#getImageStabilization--) | Gets the image stabilization mode. |
-| [getMacroMode()](#getMacroMode--) | Gets the macro mode. |
-| [getShootingMode()](#getShootingMode--) | Gets the shooting mode. |
-| [getAudio()](#getAudio--) | Gets the audio mode. |
-| [getLensType()](#getLensType--) | Gets the type of the lens. |
-| [getLensSerialNumber()](#getLensSerialNumber--) | Gets the lens serial number. |
-| [getAccessoryType()](#getAccessoryType--) | Gets the type of the accessory. |
-| [getAccessorySerialNumber()](#getAccessorySerialNumber--) | Gets the accessory serial number. |
+| [getImageQuality()](#getImageQuality--) | Gets the image quality.
+ |
+| [getFirmwareVersion()](#getFirmwareVersion--) | Gets the firmware version.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets the white balance.
+ |
+| [getFocusMode()](#getFocusMode--) | Gets the focus mode.
+ |
+| [getAFMode()](#getAFMode--) | Gets the AF mode.
+ |
+| [getImageStabilization()](#getImageStabilization--) | Gets the image stabilization mode.
+ |
+| [getMacroMode()](#getMacroMode--) | Gets the macro mode.
+ |
+| [getShootingMode()](#getShootingMode--) | Gets the shooting mode.
+ |
+| [getAudio()](#getAudio--) | Gets the audio mode.
+ |
+| [getLensType()](#getLensType--) | Gets the type of the lens.
+ |
+| [getLensSerialNumber()](#getLensSerialNumber--) | Gets the lens serial number.
+ |
+| [getAccessoryType()](#getAccessoryType--) | Gets the type of the accessory.
+ |
+| [getAccessorySerialNumber()](#getAccessorySerialNumber--) | Gets the accessory serial number.
+ |
### getImageQuality() {#getImageQuality--}
```
public final Integer getImageQuality()
@@ -38,8 +52,10 @@ public final Integer getImageQuality()
Gets the image quality.
+
**Returns:**
java.lang.Integer - The image quality.
+
### getFirmwareVersion() {#getFirmwareVersion--}
```
public final byte[] getFirmwareVersion()
@@ -48,8 +64,10 @@ public final byte[] getFirmwareVersion()
Gets the firmware version.
+
**Returns:**
byte[] - The firmware version.
+
### getWhiteBalance() {#getWhiteBalance--}
```
public final Integer getWhiteBalance()
@@ -58,8 +76,10 @@ public final Integer getWhiteBalance()
Gets the white balance.
+
**Returns:**
java.lang.Integer - The white balance.
+
### getFocusMode() {#getFocusMode--}
```
public final Integer getFocusMode()
@@ -68,8 +88,10 @@ public final Integer getFocusMode()
Gets the focus mode.
+
**Returns:**
java.lang.Integer - The focus mode.
+
### getAFMode() {#getAFMode--}
```
public final byte[] getAFMode()
@@ -78,8 +100,10 @@ public final byte[] getAFMode()
Gets the AF mode.
+
**Returns:**
byte[] - The AF mode.
+
### getImageStabilization() {#getImageStabilization--}
```
public final Integer getImageStabilization()
@@ -88,8 +112,10 @@ public final Integer getImageStabilization()
Gets the image stabilization mode.
+
**Returns:**
java.lang.Integer - The image stabilization mode.
+
### getMacroMode() {#getMacroMode--}
```
public final Integer getMacroMode()
@@ -98,8 +124,10 @@ public final Integer getMacroMode()
Gets the macro mode.
+
**Returns:**
java.lang.Integer - The macro mode.
+
### getShootingMode() {#getShootingMode--}
```
public final Integer getShootingMode()
@@ -108,8 +136,10 @@ public final Integer getShootingMode()
Gets the shooting mode.
+
**Returns:**
java.lang.Integer - The shooting mode.
+
### getAudio() {#getAudio--}
```
public final Integer getAudio()
@@ -118,8 +148,10 @@ public final Integer getAudio()
Gets the audio mode.
+
**Returns:**
java.lang.Integer - The audio mode.
+
### getLensType() {#getLensType--}
```
public final String getLensType()
@@ -128,8 +160,10 @@ public final String getLensType()
Gets the type of the lens.
+
**Returns:**
java.lang.String - The type of the lens.
+
### getLensSerialNumber() {#getLensSerialNumber--}
```
public final String getLensSerialNumber()
@@ -138,8 +172,10 @@ public final String getLensSerialNumber()
Gets the lens serial number.
+
**Returns:**
java.lang.String - The lens serial number.
+
### getAccessoryType() {#getAccessoryType--}
```
public final String getAccessoryType()
@@ -148,8 +184,10 @@ public final String getAccessoryType()
Gets the type of the accessory.
+
**Returns:**
java.lang.String - The type of the accessory.
+
### getAccessorySerialNumber() {#getAccessorySerialNumber--}
```
public final String getAccessorySerialNumber()
@@ -158,5 +196,7 @@ public final String getAccessorySerialNumber()
Gets the accessory serial number.
+
**Returns:**
java.lang.String - The accessory serial number.
+
diff --git a/english/java/com.groupdocs.metadata.core/pdfannotation/_index.md b/english/java/com.groupdocs.metadata.core/pdfannotation/_index.md
index a8d4fc867b..a6e09500c4 100644
--- a/english/java/com.groupdocs.metadata.core/pdfannotation/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfannotation/_index.md
@@ -14,19 +14,24 @@ public class PdfAnnotation extends CustomPackage
Represents an annotation in a PDF document.
+
**Learn more**
- * [Working with metadata in PDF documents][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
+
+
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
## Methods
| Method | Description |
| --- | --- |
-| [getText()](#getText--) | Gets the annotation text. |
-| [getName()](#getName--) | Gets the name of the annotation. |
-| [getPageNumber()](#getPageNumber--) | Gets the number of the page containing the annotation. |
+| [getText()](#getText--) | Gets the annotation text.
+ |
+| [getName()](#getName--) | Gets the name of the annotation.
+ |
+| [getPageNumber()](#getPageNumber--) | Gets the number of the page containing the annotation.
+ |
### getText() {#getText--}
```
public final String getText()
@@ -35,8 +40,10 @@ public final String getText()
Gets the annotation text.
+
**Returns:**
java.lang.String - The annotation text.
+
### getName() {#getName--}
```
public final String getName()
@@ -45,8 +52,10 @@ public final String getName()
Gets the name of the annotation.
+
**Returns:**
java.lang.String - The name of the annotation.
+
### getPageNumber() {#getPageNumber--}
```
public final int getPageNumber()
@@ -55,5 +64,7 @@ public final int getPageNumber()
Gets the number of the page containing the annotation.
+
**Returns:**
int - The number of the page containing the annotation.
+
diff --git a/english/java/com.groupdocs.metadata.core/pdfattachment/_index.md b/english/java/com.groupdocs.metadata.core/pdfattachment/_index.md
index 8ee0c3e267..bb01531444 100644
--- a/english/java/com.groupdocs.metadata.core/pdfattachment/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfattachment/_index.md
@@ -14,19 +14,24 @@ public class PdfAttachment extends CustomPackage
Represents an attachment in a PDF document.
+
**Learn more**
- * [Working with metadata in PDF documents][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
+
+
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the attachment name. |
-| [getDescription()](#getDescription--) | Gets the attachment description. |
-| [getMimeType()](#getMimeType--) | Gets the MIME type of the attachment. |
+| [getName()](#getName--) | Gets the attachment name.
+ |
+| [getDescription()](#getDescription--) | Gets the attachment description.
+ |
+| [getMimeType()](#getMimeType--) | Gets the MIME type of the attachment.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -35,8 +40,10 @@ public final String getName()
Gets the attachment name.
+
**Returns:**
java.lang.String - The attachment name.
+
### getDescription() {#getDescription--}
```
public final String getDescription()
@@ -45,8 +52,10 @@ public final String getDescription()
Gets the attachment description.
+
**Returns:**
java.lang.String - The attachment description.
+
### getMimeType() {#getMimeType--}
```
public final String getMimeType()
@@ -55,5 +64,7 @@ public final String getMimeType()
Gets the MIME type of the attachment.
+
**Returns:**
java.lang.String - The MIME type of the attachment.
+
diff --git a/english/java/com.groupdocs.metadata.core/pdfbookmark/_index.md b/english/java/com.groupdocs.metadata.core/pdfbookmark/_index.md
index 1dcf9f6e91..348d4c8607 100644
--- a/english/java/com.groupdocs.metadata.core/pdfbookmark/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfbookmark/_index.md
@@ -14,17 +14,20 @@ public class PdfBookmark extends CustomPackage
Represents a bookmark in a PDF document.
+
**Learn more**
- * [Working with metadata in PDF documents][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
+
+
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
## Methods
| Method | Description |
| --- | --- |
-| [getTitle()](#getTitle--) | Gets the title of the bookmark. |
+| [getTitle()](#getTitle--) | Gets the title of the bookmark.
+ |
### getTitle() {#getTitle--}
```
public final String getTitle()
@@ -33,5 +36,7 @@ public final String getTitle()
Gets the title of the bookmark.
+
**Returns:**
java.lang.String - The title of the bookmark.
+
diff --git a/english/java/com.groupdocs.metadata.core/pdfformfield/_index.md b/english/java/com.groupdocs.metadata.core/pdfformfield/_index.md
index db1979e9b9..51a9fa89d9 100644
--- a/english/java/com.groupdocs.metadata.core/pdfformfield/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfformfield/_index.md
@@ -14,18 +14,22 @@ public class PdfFormField extends CustomPackage
Represents a form field in a PDF document.
+
**Learn more**
- * [Working with metadata in PDF documents][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
+
+
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the name of the field. |
-| [getValue()](#getValue--) | Gets the field value. |
+| [getName()](#getName--) | Gets the name of the field.
+ |
+| [getValue()](#getValue--) | Gets the field value.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -34,8 +38,10 @@ public final String getName()
Gets the name of the field.
+
**Returns:**
java.lang.String - The name of the field.
+
### getValue() {#getValue--}
```
public final String getValue()
@@ -44,5 +50,7 @@ public final String getValue()
Gets the field value.
+
**Returns:**
java.lang.String - The field value.
+
diff --git a/english/java/com.groupdocs.metadata.core/pdfinspectionpackage/_index.md b/english/java/com.groupdocs.metadata.core/pdfinspectionpackage/_index.md
index c97668d0b1..2c5d82d697 100644
--- a/english/java/com.groupdocs.metadata.core/pdfinspectionpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfinspectionpackage/_index.md
@@ -14,28 +14,42 @@ public final class PdfInspectionPackage extends CustomPackage
Contains information about PDF document parts that can be considered as metadata in some cases.
+
**Learn more**
- * [Working with metadata in PDF documents][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
+
+
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
## Methods
| Method | Description |
| --- | --- |
-| [getAnnotations()](#getAnnotations--) | Gets an array of the annotations. |
-| [getAttachments()](#getAttachments--) | Gets an array of the attachments. |
-| [getBookmarks()](#getBookmarks--) | Gets an array of the bookmarks. |
-| [getFields()](#getFields--) | Gets an array of the form fields. |
-| [getDigitalSignatures()](#getDigitalSignatures--) | Gets an array of the digital signatures. |
-| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
-| [clearAnnotations()](#clearAnnotations--) | Removes all detected annotations from the document. |
-| [clearAttachments()](#clearAttachments--) | Removes all detected attachments from the document. |
-| [clearBookmarks()](#clearBookmarks--) | Removes all detected bookmarks from the document. |
-| [clearFields()](#clearFields--) | Removes all detected form fields from the document. |
-| [clearDigitalSignatures()](#clearDigitalSignatures--) | Removes all detected digital signatures from the document. |
+| [getAnnotations()](#getAnnotations--) | Gets an array of the annotations.
+ |
+| [getAttachments()](#getAttachments--) | Gets an array of the attachments.
+ |
+| [getBookmarks()](#getBookmarks--) | Gets an array of the bookmarks.
+ |
+| [getFields()](#getFields--) | Gets an array of the form fields.
+ |
+| [getDigitalSignatures()](#getDigitalSignatures--) | Gets an array of the digital signatures.
+ |
+| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
+| [clearAnnotations()](#clearAnnotations--) | Removes all detected annotations from the document.
+ |
+| [clearAttachments()](#clearAttachments--) | Removes all detected attachments from the document.
+ |
+| [clearBookmarks()](#clearBookmarks--) | Removes all detected bookmarks from the document.
+ |
+| [clearFields()](#clearFields--) | Removes all detected form fields from the document.
+ |
+| [clearDigitalSignatures()](#clearDigitalSignatures--) | Removes all detected digital signatures from the document.
+ |
### getAnnotations() {#getAnnotations--}
```
public final PdfAnnotation[] getAnnotations()
@@ -44,8 +58,10 @@ public final PdfAnnotation[] getAnnotations()
Gets an array of the annotations.
+
**Returns:**
com.groupdocs.metadata.core.PdfAnnotation[] - An array of the annotations.
+
### getAttachments() {#getAttachments--}
```
public final PdfAttachment[] getAttachments()
@@ -54,8 +70,10 @@ public final PdfAttachment[] getAttachments()
Gets an array of the attachments.
+
**Returns:**
com.groupdocs.metadata.core.PdfAttachment[] - An array of the attachments.
+
### getBookmarks() {#getBookmarks--}
```
public final PdfBookmark[] getBookmarks()
@@ -64,8 +82,10 @@ public final PdfBookmark[] getBookmarks()
Gets an array of the bookmarks.
+
**Returns:**
com.groupdocs.metadata.core.PdfBookmark[] - An array of the bookmarks.
+
### getFields() {#getFields--}
```
public final PdfFormField[] getFields()
@@ -74,8 +94,10 @@ public final PdfFormField[] getFields()
Gets an array of the form fields.
+
**Returns:**
com.groupdocs.metadata.core.PdfFormField[] - An array of the form fields.
+
### getDigitalSignatures() {#getDigitalSignatures--}
```
public final DigitalSignature[] getDigitalSignatures()
@@ -84,8 +106,10 @@ public final DigitalSignature[] getDigitalSignatures()
Gets an array of the digital signatures.
+
**Returns:**
com.groupdocs.metadata.core.DigitalSignature[] - An array of the digital signatures.
+
### removeProperties(Specification specification) {#removeProperties-com.groupdocs.metadata.search.Specification-}
```
public int removeProperties(Specification specification)
@@ -94,23 +118,29 @@ public int removeProperties(Specification specification)
Removes metadata properties satisfying a specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
**Returns:**
int - The number of affected properties.
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
### clearAnnotations() {#clearAnnotations--}
```
public final void clearAnnotations()
@@ -119,6 +149,7 @@ public final void clearAnnotations()
Removes all detected annotations from the document.
+
### clearAttachments() {#clearAttachments--}
```
public final void clearAttachments()
@@ -127,6 +158,7 @@ public final void clearAttachments()
Removes all detected attachments from the document.
+
### clearBookmarks() {#clearBookmarks--}
```
public final void clearBookmarks()
@@ -135,6 +167,7 @@ public final void clearBookmarks()
Removes all detected bookmarks from the document.
+
### clearFields() {#clearFields--}
```
public final void clearFields()
@@ -143,6 +176,7 @@ public final void clearFields()
Removes all detected form fields from the document.
+
### clearDigitalSignatures() {#clearDigitalSignatures--}
```
public final void clearDigitalSignatures()
@@ -151,3 +185,4 @@ public final void clearDigitalSignatures()
Removes all detected digital signatures from the document.
+
diff --git a/english/java/com.groupdocs.metadata.core/pdfpackage/_index.md b/english/java/com.groupdocs.metadata.core/pdfpackage/_index.md
index d0dafd4260..ebddf9d7ed 100644
--- a/english/java/com.groupdocs.metadata.core/pdfpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfpackage/_index.md
@@ -14,15 +14,18 @@ public class PdfPackage extends DocumentPackage
Represents native metadata in a PDF document.
+
**Learn more**
- * [Working with metadata in PDF documents][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
-This code snippet demonstrates how to update built-in metadata properties in a PDF document.
+
+This code snippet demonstrates how to update built-in metadata properties in a PDF document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputPdf)) {
> PdfRootPackage root = metadata.getRootPackageGeneric();
> root.getDocumentProperties().setAuthor("test author");
@@ -34,33 +37,51 @@ This code snippet demonstrates how to update built-in metadata properties in a P
> }
>
> ```
-> ```
+> ````
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the document author. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document author. |
-| [getCreatedDate()](#getCreatedDate--) | Gets the date of document creation. |
-| [setCreatedDate(Date value)](#setCreatedDate-java.util.Date-) | Sets the date of document creation. |
-| [getCreator()](#getCreator--) | Gets the creator of the document. |
-| [setCreator(String value)](#setCreator-java.lang.String-) | Gets the creator of the document. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getModifiedDate()](#getModifiedDate--) | Gets the date of the last modification. |
-| [setModifiedDate(Date value)](#setModifiedDate-java.util.Date-) | Sets the date of the last modification. |
-| [getProducer()](#getProducer--) | Gets the document producer. |
-| [setProducer(String value)](#setProducer-java.lang.String-) | Gets the document producer. |
-| [getSubject()](#getSubject--) | Gets the subject of the document. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject of the document. |
-| [getTitle()](#getTitle--) | Gets the title of the document. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document. |
-| [getTrappedFlag()](#getTrappedFlag--) | Gets the trapped flag. |
-| [setTrappedFlag(Boolean value)](#setTrappedFlag-java.lang.Boolean-) | Sets the trapped flag. |
-| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name. |
+| [getAuthor()](#getAuthor--) | Gets the document author.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document author.
+ |
+| [getCreatedDate()](#getCreatedDate--) | Gets the date of document creation.
+ |
+| [setCreatedDate(Date value)](#setCreatedDate-java.util.Date-) | Sets the date of document creation.
+ |
+| [getCreator()](#getCreator--) | Gets the creator of the document.
+ |
+| [setCreator(String value)](#setCreator-java.lang.String-) | Gets the creator of the document.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getModifiedDate()](#getModifiedDate--) | Gets the date of the last modification.
+ |
+| [setModifiedDate(Date value)](#setModifiedDate-java.util.Date-) | Sets the date of the last modification.
+ |
+| [getProducer()](#getProducer--) | Gets the document producer.
+ |
+| [setProducer(String value)](#setProducer-java.lang.String-) | Gets the document producer.
+ |
+| [getSubject()](#getSubject--) | Gets the subject of the document.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject of the document.
+ |
+| [getTitle()](#getTitle--) | Gets the title of the document.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document.
+ |
+| [getTrappedFlag()](#getTrappedFlag--) | Gets the trapped flag.
+ |
+| [setTrappedFlag(Boolean value)](#setTrappedFlag-java.lang.Boolean-) | Sets the trapped flag.
+ |
+| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -69,8 +90,10 @@ public final String getAuthor()
Gets the document author.
+
**Returns:**
java.lang.String - The document author.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
@@ -79,10 +102,12 @@ public final void setAuthor(String value)
Sets the document author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The document author. |
+| value | java.lang.String | The document author.
+ |
### getCreatedDate() {#getCreatedDate--}
```
@@ -92,8 +117,10 @@ public final Date getCreatedDate()
Gets the date of document creation.
+
**Returns:**
java.util.Date - The date of document creation.
+
### setCreatedDate(Date value) {#setCreatedDate-java.util.Date-}
```
public final void setCreatedDate(Date value)
@@ -102,10 +129,12 @@ public final void setCreatedDate(Date value)
Sets the date of document creation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date of document creation. |
+| value | java.util.Date | The date of document creation.
+ |
### getCreator() {#getCreator--}
```
@@ -115,8 +144,10 @@ public final String getCreator()
Gets the creator of the document.
+
**Returns:**
java.lang.String - The creator of the document.
+
### setCreator(String value) {#setCreator-java.lang.String-}
```
public final void setCreator(String value)
@@ -124,9 +155,9 @@ public final void setCreator(String value)
Gets the creator of the document.
-
Value: The creator of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -140,8 +171,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -150,10 +183,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The keywords. |
+| value | java.lang.String | The keywords.
+ |
### getModifiedDate() {#getModifiedDate--}
```
@@ -163,8 +198,10 @@ public final Date getModifiedDate()
Gets the date of the last modification.
+
**Returns:**
java.util.Date - The date of the last modification.
+
### setModifiedDate(Date value) {#setModifiedDate-java.util.Date-}
```
public final void setModifiedDate(Date value)
@@ -173,10 +210,12 @@ public final void setModifiedDate(Date value)
Sets the date of the last modification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date of the last modification. |
+| value | java.util.Date | The date of the last modification.
+ |
### getProducer() {#getProducer--}
```
@@ -186,8 +225,10 @@ public final String getProducer()
Gets the document producer.
+
**Returns:**
java.lang.String - The document producer.
+
### setProducer(String value) {#setProducer-java.lang.String-}
```
public final void setProducer(String value)
@@ -195,9 +236,9 @@ public final void setProducer(String value)
Gets the document producer.
-
Value: The document producer.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -211,8 +252,10 @@ public final String getSubject()
Gets the subject of the document.
+
**Returns:**
java.lang.String - The subject of the document.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -221,10 +264,12 @@ public final void setSubject(String value)
Sets the subject of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The subject of the document. |
+| value | java.lang.String | The subject of the document.
+ |
### getTitle() {#getTitle--}
```
@@ -234,8 +279,10 @@ public final String getTitle()
Gets the title of the document.
+
**Returns:**
java.lang.String - The title of the document.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -244,10 +291,12 @@ public final void setTitle(String value)
Sets the title of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title of the document. |
+| value | java.lang.String | The title of the document.
+ |
### getTrappedFlag() {#getTrappedFlag--}
```
@@ -257,8 +306,10 @@ public final Boolean getTrappedFlag()
Gets the trapped flag.
+
**Returns:**
java.lang.Boolean - true if the trapped flag is set; otherwise, false .
+
### setTrappedFlag(Boolean value) {#setTrappedFlag-java.lang.Boolean-}
```
public final void setTrappedFlag(Boolean value)
@@ -267,10 +318,12 @@ public final void setTrappedFlag(Boolean value)
Sets the trapped flag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if the trapped flag is set; otherwise, false . |
+| value | java.lang.Boolean | true if the trapped flag is set; otherwise, false .
+ |
### set(String propertyName, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -280,9 +333,12 @@ public final void set(String propertyName, String value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.lang.String | The property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/pdfrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/pdfrootpackage/_index.md
index b1c4313a4b..5892ef1484 100644
--- a/english/java/com.groupdocs.metadata.core/pdfrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdfrootpackage/_index.md
@@ -17,16 +17,19 @@ public class PdfRootPackage extends DocumentRootPackage implements I
Represents the root package allowing working with metadata in a PDF document.
+
**Learn more**
- * [Working with metadata in PDF documents][]
- * [Working with XMP metadata][]
+* [Working with metadata in PDF documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This code sample shows how to extract built-in metadata properties from a PDF document.
+
+This code sample shows how to extract built-in metadata properties from a PDF document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputPdf)) {
> PdfRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getDocumentProperties().getAuthor());
@@ -38,20 +41,23 @@ This code sample shows how to extract built-in metadata properties from a PDF do
> }
>
> ```
-> ```
+> ````
-[Working with metadata in PDF documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PDF+documents
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getPdfType()](#getPdfType--) | Gets the file type metadata package. |
-| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document. |
-| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package. |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
+| [getPdfType()](#getPdfType--) | Gets the file type metadata package.
+ |
+| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document.
+ |
+| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package.
+ |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
### getPdfType() {#getPdfType--}
```
public final PdfTypePackage getPdfType()
@@ -60,18 +66,23 @@ public final PdfTypePackage getPdfType()
Gets the file type metadata package.
+
**Returns:**
[PdfTypePackage](../../com.groupdocs.metadata.core/pdftypepackage) - The file type metadata package.
+
### getInspectionPackage() {#getInspectionPackage--}
```
public final PdfInspectionPackage getInspectionPackage()
```
-Gets a metadata package containing inspection results for the document. The package contains information about document parts that can be considered as metadata in some cases.
+Gets a metadata package containing inspection results for the document.
+The package contains information about document parts that can be considered as metadata in some cases.
+
**Returns:**
[PdfInspectionPackage](../../com.groupdocs.metadata.core/pdfinspectionpackage) - A metadata package containing inspection results for the document.
+
### getDocumentStatistics() {#getDocumentStatistics--}
```
public final DocumentStatistics getDocumentStatistics()
@@ -80,8 +91,10 @@ public final DocumentStatistics getDocumentStatistics()
Gets the document statistics package.
+
**Returns:**
[DocumentStatistics](../../com.groupdocs.metadata.core/documentstatistics) - The document statistics package.
+
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -90,15 +103,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -107,15 +123,18 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/pdftypepackage/_index.md b/english/java/com.groupdocs.metadata.core/pdftypepackage/_index.md
index 2883d4ae64..877a46c951 100644
--- a/english/java/com.groupdocs.metadata.core/pdftypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pdftypepackage/_index.md
@@ -13,11 +13,55 @@ public class PdfTypePackage extends FileTypePackage
```
Represents a metadata package containing PDF-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getVersion()](#getVersion--) | Gets the version of the format. |
+| [getPdfFormat()](#getPdfFormat--) | Gets the detected PDF format.
+ |
+| [isPdfA()](#isPdfA--) | Gets a value indicating whether the document conforms to any PDF/A standard.
+ |
+| [isPdfX()](#isPdfX--) | Gets a value indicating whether the document conforms to any PDF/X standard.
+ |
+| [getVersion()](#getVersion--) | Gets the version of the format.
+ |
+### getPdfFormat() {#getPdfFormat--}
+```
+public final PdfFormat getPdfFormat()
+```
+
+
+Gets the detected PDF format.
+
+
+**Returns:**
+[PdfFormat](../../com.groupdocs.metadata.core/pdfformat) - The detected PDF format.
+
+### isPdfA() {#isPdfA--}
+```
+public final boolean isPdfA()
+```
+
+
+Gets a value indicating whether the document conforms to any PDF/A standard.
+
+
+**Returns:**
+boolean - true if the document is identified as PDF/A; otherwise, false .
+
+### isPdfX() {#isPdfX--}
+```
+public final boolean isPdfX()
+```
+
+
+Gets a value indicating whether the document conforms to any PDF/X standard.
+
+
+**Returns:**
+boolean - true if the document is identified as PDF/X; otherwise, false .
+
### getVersion() {#getVersion--}
```
public final String getVersion()
@@ -26,5 +70,7 @@ public final String getVersion()
Gets the version of the format.
+
**Returns:**
java.lang.String - The version of the format.
+
diff --git a/english/java/com.groupdocs.metadata.core/pngcompressedtextchunk/_index.md b/english/java/com.groupdocs.metadata.core/pngcompressedtextchunk/_index.md
index 5d7890bcd7..a831f5996b 100644
--- a/english/java/com.groupdocs.metadata.core/pngcompressedtextchunk/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pngcompressedtextchunk/_index.md
@@ -13,11 +13,13 @@ public class PngCompressedTextChunk extends PngTextChunk
```
Represents compressed textual data extracted from a PNG image.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCompressionMethod()](#getCompressionMethod--) | Gets the algorithm used to compress the chunk data. |
+| [getCompressionMethod()](#getCompressionMethod--) | Gets the algorithm used to compress the chunk data.
+ |
### getCompressionMethod() {#getCompressionMethod--}
```
public final PngCompressionMethod getCompressionMethod()
@@ -26,5 +28,7 @@ public final PngCompressionMethod getCompressionMethod()
Gets the algorithm used to compress the chunk data.
+
**Returns:**
[PngCompressionMethod](../../com.groupdocs.metadata.core/pngcompressionmethod) - The algorithm used to compress the chunk data.
+
diff --git a/english/java/com.groupdocs.metadata.core/pngcompressionmethod/_index.md b/english/java/com.groupdocs.metadata.core/pngcompressionmethod/_index.md
index 7bcd0ce1da..28563cde3a 100644
--- a/english/java/com.groupdocs.metadata.core/pngcompressionmethod/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pngcompressionmethod/_index.md
@@ -16,11 +16,13 @@ public enum PngCompressionMethod extends Enum implements I
```
Defines compression methods used in the PNG format.
+
## Fields
| Field | Description |
| --- | --- |
-| [Deflate](#Deflate) | Represents the deflate/inflate compression with a sliding window. |
+| [Deflate](#Deflate) | Represents the deflate/inflate compression with a sliding window.
+ |
## Methods
| Method | Description |
@@ -42,6 +44,7 @@ public static final PngCompressionMethod Deflate
Represents the deflate/inflate compression with a sliding window.
+
### values() {#values--}
```
public static PngCompressionMethod[] values()
@@ -100,6 +103,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -110,6 +114,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -125,6 +130,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -140,6 +146,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -150,5 +157,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/pnginternationaltextchunk/_index.md b/english/java/com.groupdocs.metadata.core/pnginternationaltextchunk/_index.md
index 5f4b349977..82ecccc452 100644
--- a/english/java/com.groupdocs.metadata.core/pnginternationaltextchunk/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pnginternationaltextchunk/_index.md
@@ -13,13 +13,17 @@ public class PngInternationalTextChunk extends PngCompressedTextChunk
```
Represents international textual data extracted from a PNG image.
+
## Methods
| Method | Description |
| --- | --- |
-| [isCompressed()](#isCompressed--) | Gets a value indicating whether the chunk is compressed. |
-| [getLanguage()](#getLanguage--) | Gets the human language used by the translated keyword and the text. |
-| [getTranslatedKeyword()](#getTranslatedKeyword--) | Gets the translated keyword that contains a translation of the keyword into the language indicated by the language property. |
+| [isCompressed()](#isCompressed--) | Gets a value indicating whether the chunk is compressed.
+ |
+| [getLanguage()](#getLanguage--) | Gets the human language used by the translated keyword and the text.
+ |
+| [getTranslatedKeyword()](#getTranslatedKeyword--) | Gets the translated keyword that contains a translation of the keyword into the language indicated by the language property.
+ |
### isCompressed() {#isCompressed--}
```
public final boolean isCompressed()
@@ -28,8 +32,10 @@ public final boolean isCompressed()
Gets a value indicating whether the chunk is compressed.
+
**Returns:**
boolean - True, if the chunk is compressed; otherwise, false.
+
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -38,8 +44,10 @@ public final String getLanguage()
Gets the human language used by the translated keyword and the text.
+
**Returns:**
java.lang.String - The human language used by the translated keyword and the text.
+
### getTranslatedKeyword() {#getTranslatedKeyword--}
```
public final String getTranslatedKeyword()
@@ -48,5 +56,7 @@ public final String getTranslatedKeyword()
Gets the translated keyword that contains a translation of the keyword into the language indicated by the language property.
+
**Returns:**
java.lang.String - The translated keyword that contains a translation of the keyword into the language indicated by the language property.
+
diff --git a/english/java/com.groupdocs.metadata.core/pngpackage/_index.md b/english/java/com.groupdocs.metadata.core/pngpackage/_index.md
index fdc29025d0..16d32b42d5 100644
--- a/english/java/com.groupdocs.metadata.core/pngpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pngpackage/_index.md
@@ -13,11 +13,13 @@ public class PngPackage extends CustomPackage
```
Represents native PNG metadata.
+
## Methods
| Method | Description |
| --- | --- |
-| [getTextChunks()](#getTextChunks--) | Gets the collection of text chunks extracted from the image. |
+| [getTextChunks()](#getTextChunks--) | Gets the collection of text chunks extracted from the image.
+ |
### getTextChunks() {#getTextChunks--}
```
public final PngTextChunk[] getTextChunks()
@@ -26,5 +28,7 @@ public final PngTextChunk[] getTextChunks()
Gets the collection of text chunks extracted from the image.
+
**Returns:**
com.groupdocs.metadata.core.PngTextChunk[] - The collection of text chunks extracted from the image.
+
diff --git a/english/java/com.groupdocs.metadata.core/pngrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/pngrootpackage/_index.md
index 54e9096f4a..6960268b93 100644
--- a/english/java/com.groupdocs.metadata.core/pngrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pngrootpackage/_index.md
@@ -17,25 +17,30 @@ public class PngRootPackage extends ImageRootPackage implements IXmp, IExif
Represents the root package intended to work with metadata in a PNG image.
+
**Learn more**
- * [Working with metadata in PNG images][]
- * [Working with EXIF metadata][]
- * [Working with XMP metadata][]
+* [Working with metadata in PNG images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PNG+images)
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with metadata in PNG images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PNG+images
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
-| [getPngPackage()](#getPngPackage--) | Gets the PNG native metadata package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
+| [getPngPackage()](#getPngPackage--) | Gets the PNG native metadata package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -44,15 +49,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -61,17 +69,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -81,15 +92,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -98,17 +112,20 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
### getPngPackage() {#getPngPackage--}
```
@@ -118,5 +135,7 @@ public final PngPackage getPngPackage()
Gets the PNG native metadata package.
+
**Returns:**
[PngPackage](../../com.groupdocs.metadata.core/pngpackage) - The PNG native metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/pngtextchunk/_index.md b/english/java/com.groupdocs.metadata.core/pngtextchunk/_index.md
index 4a1353f48a..5ae44595c1 100644
--- a/english/java/com.groupdocs.metadata.core/pngtextchunk/_index.md
+++ b/english/java/com.groupdocs.metadata.core/pngtextchunk/_index.md
@@ -13,12 +13,15 @@ public class PngTextChunk extends CustomPackage
```
Represents textual data extracted from a PNG image.
+
## Methods
| Method | Description |
| --- | --- |
-| [getKeyword()](#getKeyword--) | Gets the keyword that indicates the type of information represented by the chunk. |
-| [getText()](#getText--) | Gets the actual text string represented by the chunk. |
+| [getKeyword()](#getKeyword--) | Gets the keyword that indicates the type of information represented by the chunk.
+ |
+| [getText()](#getText--) | Gets the actual text string represented by the chunk.
+ |
### getKeyword() {#getKeyword--}
```
public final String getKeyword()
@@ -27,8 +30,10 @@ public final String getKeyword()
Gets the keyword that indicates the type of information represented by the chunk.
+
**Returns:**
java.lang.String - The keyword that indicates the type of information represented by the chunk.
+
### getText() {#getText--}
```
public final String getText()
@@ -37,5 +42,7 @@ public final String getText()
Gets the actual text string represented by the chunk.
+
**Returns:**
java.lang.String - The actual text string represented by the chunk.
+
diff --git a/english/java/com.groupdocs.metadata.core/presentationcomment/_index.md b/english/java/com.groupdocs.metadata.core/presentationcomment/_index.md
index 217dda1939..5092c9141c 100644
--- a/english/java/com.groupdocs.metadata.core/presentationcomment/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationcomment/_index.md
@@ -14,20 +14,26 @@ public final class PresentationComment extends CustomPackage
Represents a user comment in a presentation.
+
**Learn more**
- * [Working with metadata in Presentations][]
+* [Working with metadata in Presentations](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations)
+
+
-[Working with metadata in Presentations]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the author of the comment. |
-| [getCreatedTime()](#getCreatedTime--) | Gets the created time of the comment. |
-| [getSlideNumber()](#getSlideNumber--) | Gets the slide number the comment belongs to. |
-| [getText()](#getText--) | Gets the text of the comment. |
+| [getAuthor()](#getAuthor--) | Gets the author of the comment.
+ |
+| [getCreatedTime()](#getCreatedTime--) | Gets the created time of the comment.
+ |
+| [getSlideNumber()](#getSlideNumber--) | Gets the slide number the comment belongs to.
+ |
+| [getText()](#getText--) | Gets the text of the comment.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -36,8 +42,10 @@ public final String getAuthor()
Gets the author of the comment.
+
**Returns:**
java.lang.String - The author of the comment.
+
### getCreatedTime() {#getCreatedTime--}
```
public final Date getCreatedTime()
@@ -46,8 +54,10 @@ public final Date getCreatedTime()
Gets the created time of the comment.
+
**Returns:**
java.util.Date - The created time of the comment.
+
### getSlideNumber() {#getSlideNumber--}
```
public final int getSlideNumber()
@@ -56,8 +66,10 @@ public final int getSlideNumber()
Gets the slide number the comment belongs to.
+
**Returns:**
int - The slide number the comment belongs to.
+
### getText() {#getText--}
```
public final String getText()
@@ -66,5 +78,7 @@ public final String getText()
Gets the text of the comment.
+
**Returns:**
java.lang.String - The comment text.
+
diff --git a/english/java/com.groupdocs.metadata.core/presentationformat/_index.md b/english/java/com.groupdocs.metadata.core/presentationformat/_index.md
index 5c9d524603..8f336065ff 100644
--- a/english/java/com.groupdocs.metadata.core/presentationformat/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationformat/_index.md
@@ -16,20 +16,31 @@ public enum PresentationFormat extends Enum implements IEnum
```
Defines various presentation subformats.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The format is not recognized. |
-| [Ppt](#Ppt) | Represents the .PPT PowerPoint format. |
-| [Pptx](#Pptx) | Represents the .PPTX PowerPoint format. |
-| [Potm](#Potm) | Represents the .POTM PowerPoint format. |
-| [Potx](#Potx) | Represents the .POTX PowerPoint format. |
-| [Pptm](#Pptm) | Represents the .PPTM PowerPoint format. |
-| [Pps](#Pps) | Represents the .PPS PowerPoint format. |
-| [Ppsx](#Ppsx) | Represents the .PPSX PowerPoint format. |
-| [Ppsm](#Ppsm) | Represents the .PPSM PowerPoint format. |
-| [Pot](#Pot) | Represents the .POT PowerPoint format. |
+| [Unknown](#Unknown) | The format is not recognized.
+ |
+| [Ppt](#Ppt) | Represents the .PPT PowerPoint format.
+ |
+| [Pptx](#Pptx) | Represents the .PPTX PowerPoint format.
+ |
+| [Potm](#Potm) | Represents the .POTM PowerPoint format.
+ |
+| [Potx](#Potx) | Represents the .POTX PowerPoint format.
+ |
+| [Pptm](#Pptm) | Represents the .PPTM PowerPoint format.
+ |
+| [Pps](#Pps) | Represents the .PPS PowerPoint format.
+ |
+| [Ppsx](#Ppsx) | Represents the .PPSX PowerPoint format.
+ |
+| [Ppsm](#Ppsm) | Represents the .PPSM PowerPoint format.
+ |
+| [Pot](#Pot) | Represents the .POT PowerPoint format.
+ |
## Methods
| Method | Description |
@@ -51,27 +62,35 @@ public static final PresentationFormat Unknown
The format is not recognized.
+
### Ppt {#Ppt}
```
public static final PresentationFormat Ppt
```
-Represents the .PPT PowerPoint format. A file with PPT extension represents PowerPoint file that consists of a collection of slides for displaying as SlideShow. It specifies the Binary File Format used by Microsoft PowerPoint 97-2003. A PPT file can contain several different types of information such as text, bulleted points, images, multimedia and other embedded OLE objects. Learn more about this file format [here][] .
+Represents the .PPT PowerPoint format.
+A file with PPT extension represents PowerPoint file that consists of a collection of slides for displaying as SlideShow.
+It specifies the Binary File Format used by Microsoft PowerPoint 97-2003. A PPT file can contain several different types of information such as text,
+bulleted points, images, multimedia and other embedded OLE objects.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/ppt/)
+.
-[here]: https://wiki.fileformat.com/presentation/ppt/
-
### Pptx {#Pptx}
```
public static final PresentationFormat Pptx
```
-Represents the .PPTX PowerPoint format. Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application. Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based on the Microsoft PowerPoint open XML presentation file format. Learn more about this file format [here][] .
-
+Represents the .PPTX PowerPoint format.
+Files with PPTX extension are presentation files created with popular Microsoft PowerPoint application.
+Unlike the previous version of presentation file format PPT which was binary, the PPTX format is based on the Microsoft PowerPoint open XML presentation file format.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pptx/)
+.
-[here]: https://wiki.fileformat.com/presentation/pptx/
### Potm {#Potm}
```
@@ -79,21 +98,27 @@ public static final PresentationFormat Potm
```
-Represents the .POTM PowerPoint format. Files with POTM extension are Microsoft PowerPoint template files with support for Macros. POTM files are created with PowerPoint 2007 or above and contains default settings that can be used to create further presentation files. Learn more about this file format [here][] .
+Represents the .POTM PowerPoint format.
+Files with POTM extension are Microsoft PowerPoint template files with support for Macros.
+POTM files are created with PowerPoint 2007 or above and contains default settings that can be used to create further presentation files.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/potm/)
+.
-[here]: https://wiki.fileformat.com/presentation/potm/
-
### Potx {#Potx}
```
public static final PresentationFormat Potx
```
-Represents the .POTX PowerPoint format. Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. This format was created to replace the POT file format that is based on the binary file format and is supported with PowerPoint 97-2003. Learn more about this file format [here][] .
-
+Represents the .POTX PowerPoint format.
+Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above.
+This format was created to replace the POT file format that is based on the binary file format and is supported with PowerPoint 97-2003.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/potx/)
+.
-[here]: https://wiki.fileformat.com/presentation/potx/
### Pptm {#Pptm}
```
@@ -101,21 +126,26 @@ public static final PresentationFormat Pptm
```
-Represents the .PPTM PowerPoint format. Files with PPTM extension are Macro-enabled Presentation files that are created with Microsoft PowerPoint 2007 or higher versions. They are similar to PPTX files with the difference that the lateral can't execute macros though they can contain macros. Learn more about this file format [here][] .
+Represents the .PPTM PowerPoint format.
+Files with PPTM extension are Macro-enabled Presentation files that are created with Microsoft PowerPoint 2007 or higher versions.
+They are similar to PPTX files with the difference that the lateral can't execute macros though they can contain macros.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pptm/)
+.
-[here]: https://wiki.fileformat.com/presentation/pptm/
-
### Pps {#Pps}
```
public static final PresentationFormat Pps
```
-Represents the .PPS PowerPoint format. PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose. PPS file reading and creation is supported by Microsoft PowerPoint 97-2003. Learn more about this file format [here][] .
-
+Represents the .PPS PowerPoint format.
+PPS, PowerPoint Slide Show, files are created using Microsoft PowerPoint for Slide Show purpose. PPS file reading and creation is supported by Microsoft PowerPoint 97-2003.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pps/)
+.
-[here]: https://wiki.fileformat.com/presentation/pps/
### Ppsx {#Ppsx}
```
@@ -123,21 +153,27 @@ public static final PresentationFormat Ppsx
```
-Represents the .PPSX PowerPoint format. PPSX, Power Point Slide Show, files are created using Microsoft PowerPoint 2007 and above for Slide Show purpose. It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions. Learn more about this file format [here][] .
+Represents the .PPSX PowerPoint format.
+PPSX, Power Point Slide Show, files are created using Microsoft PowerPoint 2007 and above for Slide Show purpose.
+It is an update to the PPS file format that was supported by Microsoft PowerPoint 97-2003 versions.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/ppsx/)
+.
-[here]: https://wiki.fileformat.com/presentation/ppsx/
-
### Ppsm {#Ppsm}
```
public static final PresentationFormat Ppsm
```
-Represents the .PPSM PowerPoint format. Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft PowerPoint 2007 or higher. Another similar file format is PPTM which differs in opening with Microsoft PowerPoint in editable format instead of running as Slide Show Learn more about this file format [here][] .
-
+Represents the .PPSM PowerPoint format.
+Files with PPSM extension represent Macro-enabled Slide Show file format created with Microsoft PowerPoint 2007 or higher.
+Another similar file format is PPTM which differs in opening with Microsoft PowerPoint in editable format instead of running as Slide Show
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/ppsm/)
+.
-[here]: https://wiki.fileformat.com/presentation/ppsm/
### Pot {#Pot}
```
@@ -145,11 +181,15 @@ public static final PresentationFormat Pot
```
-Represents the .POT PowerPoint format. Files with .POT extension represent Microsoft PowerPoint template files created by PowerPoint 97-2003 versions. Files created with these versions of Microsoft PowerPoint are in binary format as compared to those created in Office OpenXML file formats using the higher versions of PowerPoint. Learn more about this file format [here][] .
+Represents the .POT PowerPoint format.
+Files with .POT extension represent Microsoft PowerPoint template files created by PowerPoint 97-2003 versions.
+Files created with these versions of Microsoft PowerPoint are in binary format as compared to those created in Office OpenXML
+file formats using the higher versions of PowerPoint.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/presentation/pot/)
+.
-[here]: https://wiki.fileformat.com/presentation/pot/
-
### values() {#values--}
```
public static PresentationFormat[] values()
@@ -208,6 +248,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -218,6 +259,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -233,6 +275,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -248,6 +291,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -258,5 +302,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/presentationinspectionpackage/_index.md b/english/java/com.groupdocs.metadata.core/presentationinspectionpackage/_index.md
index ed09f59c6b..a382663c74 100644
--- a/english/java/com.groupdocs.metadata.core/presentationinspectionpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationinspectionpackage/_index.md
@@ -14,22 +14,30 @@ public final class PresentationInspectionPackage extends CustomPackage
Contains information about presentation parts that can be considered as metadata in some cases.
+
**Learn more**
- * [Working with metadata in Presentations][]
+* [Working with metadata in Presentations](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations)
+
+
-[Working with metadata in Presentations]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations
## Methods
| Method | Description |
| --- | --- |
-| [getHiddenSlides()](#getHiddenSlides--) | Gets an array of the hidden slides. |
-| [getComments()](#getComments--) | Gets an array of the comments. |
-| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification. |
-| [clearComments()](#clearComments--) | Removes all detected user comments from the presentation. |
-| [clearHiddenSlides()](#clearHiddenSlides--) | Removes all detected hidden slides from the presentation. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [getHiddenSlides()](#getHiddenSlides--) | Gets an array of the hidden slides.
+ |
+| [getComments()](#getComments--) | Gets an array of the comments.
+ |
+| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification.
+ |
+| [clearComments()](#clearComments--) | Removes all detected user comments from the presentation.
+ |
+| [clearHiddenSlides()](#clearHiddenSlides--) | Removes all detected hidden slides from the presentation.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
### getHiddenSlides() {#getHiddenSlides--}
```
public final PresentationSlide[] getHiddenSlides()
@@ -38,8 +46,10 @@ public final PresentationSlide[] getHiddenSlides()
Gets an array of the hidden slides.
+
**Returns:**
com.groupdocs.metadata.core.PresentationSlide[] - The hidden slides.
+
### getComments() {#getComments--}
```
public final PresentationComment[] getComments()
@@ -48,8 +58,10 @@ public final PresentationComment[] getComments()
Gets an array of the comments.
+
**Returns:**
com.groupdocs.metadata.core.PresentationComment[] - The comments.
+
### removeProperties(Specification specification) {#removeProperties-com.groupdocs.metadata.search.Specification-}
```
public int removeProperties(Specification specification)
@@ -58,13 +70,16 @@ public int removeProperties(Specification specification)
Removes metadata properties satisfying a specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
**Returns:**
int - The number of affected properties.
+
### clearComments() {#clearComments--}
```
public final void clearComments()
@@ -73,6 +88,7 @@ public final void clearComments()
Removes all detected user comments from the presentation.
+
### clearHiddenSlides() {#clearHiddenSlides--}
```
public final void clearHiddenSlides()
@@ -81,13 +97,17 @@ public final void clearHiddenSlides()
Removes all detected hidden slides from the presentation.
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/presentationpackage/_index.md b/english/java/com.groupdocs.metadata.core/presentationpackage/_index.md
index 9140c90781..b1ec965930 100644
--- a/english/java/com.groupdocs.metadata.core/presentationpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationpackage/_index.md
@@ -14,15 +14,18 @@ public class PresentationPackage extends DocumentPackage
Represents a native metadata package in a presentation.
+
**Learn more**
- * [Working with metadata in Presentations][]
+* [Working with metadata in Presentations](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations)
-This example demonstrates how to update built-in metadata properties in a presentation.
+
+This example demonstrates how to update built-in metadata properties in a presentation.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputPptx)) {
> PresentationRootPackage root = metadata.getRootPackageGeneric();
> root.getDocumentProperties().setAuthor("test author");
@@ -35,59 +38,103 @@ This example demonstrates how to update built-in metadata properties in a presen
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Presentations]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations
## Methods
| Method | Description |
| --- | --- |
-| [getApplicationTemplate()](#getApplicationTemplate--) | Gets the application template. |
-| [setApplicationTemplate(String value)](#setApplicationTemplate-java.lang.String-) | Sets the application template. |
-| [getAuthor()](#getAuthor--) | Gets the document's author. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document's author. |
-| [getCategory()](#getCategory--) | Gets the category. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category. |
-| [getComments()](#getComments--) | Gets the comments. |
-| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments. |
-| [getCompany()](#getCompany--) | Gets the company. |
-| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company. |
-| [getContentStatus()](#getContentStatus--) | Gets the content status. |
-| [setContentStatus(String value)](#setContentStatus-java.lang.String-) | Sets the content status. |
-| [getContentType()](#getContentType--) | Gets the content type. |
-| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type. |
-| [getCreatedTime()](#getCreatedTime--) | Gets the document created date. |
-| [setCreatedTime(Date value)](#setCreatedTime-java.util.Date-) | Sets the document created date. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getLastPrintedDate()](#getLastPrintedDate--) | Gets the last printed date. |
-| [setLastPrintedDate(Date value)](#setLastPrintedDate-java.util.Date-) | Sets the last printed date. |
-| [getLastSavedTime()](#getLastSavedTime--) | Gets the date and time when the presentation was modified last time. |
-| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last author. |
-| [setLastSavedBy(String value)](#setLastSavedBy-java.lang.String-) | Sets the name of the last author. |
-| [getManager()](#getManager--) | Gets the manager. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets the manager. |
-| [getNameOfApplication()](#getNameOfApplication--) | Gets the name of the application created the document. |
-| [getRevisionNumber()](#getRevisionNumber--) | Gets the revision number. |
-| [setRevisionNumber(int value)](#setRevisionNumber-int-) | Sets the revision number. |
-| [getSubject()](#getSubject--) | Gets the subject. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject. |
-| [getTitle()](#getTitle--) | Gets the title of the document. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document. |
-| [getVersion()](#getVersion--) | Gets the application version. |
-| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base. |
-| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base. |
-| [getPresentationFormat()](#getPresentationFormat--) | Gets the presentation format. |
-| [getSharedDoc()](#getSharedDoc--) | Gets a value indicating whether the presentation is shared between multiple people. |
-| [setSharedDoc(boolean value)](#setSharedDoc-boolean-) | Sets a value indicating whether the presentation is shared between multiple people. |
-| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the total editing time of the document. |
-| [setTotalEditingTime(double value)](#setTotalEditingTime-double-) | Sets the total editing time of the document. |
-| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name. |
+| [getApplicationTemplate()](#getApplicationTemplate--) | Gets the application template.
+ |
+| [setApplicationTemplate(String value)](#setApplicationTemplate-java.lang.String-) | Sets the application template.
+ |
+| [getAuthor()](#getAuthor--) | Gets the document's author.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document's author.
+ |
+| [getCategory()](#getCategory--) | Gets the category.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category.
+ |
+| [getComments()](#getComments--) | Gets the comments.
+ |
+| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments.
+ |
+| [getCompany()](#getCompany--) | Gets the company.
+ |
+| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company.
+ |
+| [getContentStatus()](#getContentStatus--) | Gets the content status.
+ |
+| [setContentStatus(String value)](#setContentStatus-java.lang.String-) | Sets the content status.
+ |
+| [getContentType()](#getContentType--) | Gets the content type.
+ |
+| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type.
+ |
+| [getCreatedTime()](#getCreatedTime--) | Gets the document created date.
+ |
+| [setCreatedTime(Date value)](#setCreatedTime-java.util.Date-) | Sets the document created date.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getLastPrintedDate()](#getLastPrintedDate--) | Gets the last printed date.
+ |
+| [setLastPrintedDate(Date value)](#setLastPrintedDate-java.util.Date-) | Sets the last printed date.
+ |
+| [getLastSavedTime()](#getLastSavedTime--) | Gets the date and time when the presentation was modified last time.
+ |
+| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last author.
+ |
+| [setLastSavedBy(String value)](#setLastSavedBy-java.lang.String-) | Sets the name of the last author.
+ |
+| [getManager()](#getManager--) | Gets the manager.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets the manager.
+ |
+| [getNameOfApplication()](#getNameOfApplication--) | Gets the name of the application created the document.
+ |
+| [getRevisionNumber()](#getRevisionNumber--) | Gets the revision number.
+ |
+| [setRevisionNumber(int value)](#setRevisionNumber-int-) | Sets the revision number.
+ |
+| [getSubject()](#getSubject--) | Gets the subject.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject.
+ |
+| [getTitle()](#getTitle--) | Gets the title of the document.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document.
+ |
+| [getVersion()](#getVersion--) | Gets the application version.
+ |
+| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base.
+ |
+| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base.
+ |
+| [getPresentationFormat()](#getPresentationFormat--) | Gets the presentation format.
+ |
+| [getSharedDoc()](#getSharedDoc--) | Gets a value indicating whether the presentation is shared between multiple people.
+ |
+| [setSharedDoc(boolean value)](#setSharedDoc-boolean-) | Sets a value indicating whether the presentation is shared between multiple people.
+ |
+| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the total editing time of the document.
+ |
+| [setTotalEditingTime(double value)](#setTotalEditingTime-double-) | Sets the total editing time of the document.
+ |
+| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name.
+ |
### getApplicationTemplate() {#getApplicationTemplate--}
```
public final String getApplicationTemplate()
@@ -96,8 +143,10 @@ public final String getApplicationTemplate()
Gets the application template.
+
**Returns:**
java.lang.String - The application template.
+
### setApplicationTemplate(String value) {#setApplicationTemplate-java.lang.String-}
```
public final void setApplicationTemplate(String value)
@@ -106,10 +155,12 @@ public final void setApplicationTemplate(String value)
Sets the application template.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The application template. |
+| value | java.lang.String | The application template.
+ |
### getAuthor() {#getAuthor--}
```
@@ -119,8 +170,10 @@ public final String getAuthor()
Gets the document's author.
+
**Returns:**
java.lang.String - The author.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
@@ -129,10 +182,12 @@ public final void setAuthor(String value)
Sets the document's author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author. |
+| value | java.lang.String | The author.
+ |
### getCategory() {#getCategory--}
```
@@ -142,8 +197,10 @@ public final String getCategory()
Gets the category.
+
**Returns:**
java.lang.String - The category.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
@@ -152,10 +209,12 @@ public final void setCategory(String value)
Sets the category.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The category. |
+| value | java.lang.String | The category.
+ |
### getComments() {#getComments--}
```
@@ -165,8 +224,10 @@ public final String getComments()
Gets the comments.
+
**Returns:**
java.lang.String - The comments.
+
### setComments(String value) {#setComments-java.lang.String-}
```
public final void setComments(String value)
@@ -175,10 +236,12 @@ public final void setComments(String value)
Sets the comments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The comments. |
+| value | java.lang.String | The comments.
+ |
### getCompany() {#getCompany--}
```
@@ -188,8 +251,10 @@ public final String getCompany()
Gets the company.
+
**Returns:**
java.lang.String - The company.
+
### setCompany(String value) {#setCompany-java.lang.String-}
```
public final void setCompany(String value)
@@ -198,10 +263,12 @@ public final void setCompany(String value)
Sets the company.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The company. |
+| value | java.lang.String | The company.
+ |
### getContentStatus() {#getContentStatus--}
```
@@ -211,12 +278,19 @@ public final String getContentStatus()
Gets the content status. Can be updated in a PPTX document only.
+
**Returns:**
java.lang.String - The content status.
---------------------
+
+
+*** ** * ** ***
Can be updated in a PPTX document only. Read-only for other supported formats.
+
+
+
+
### setContentStatus(String value) {#setContentStatus-java.lang.String-}
```
public final void setContentStatus(String value)
@@ -225,14 +299,21 @@ public final void setContentStatus(String value)
Sets the content status. Can be updated in a PPTX document only.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The content status.
---------------------
+
+
+*** ** * ** ***
+
+Can be updated in a PPTX document only. Read-only for other supported formats.
-Can be updated in a PPTX document only. Read-only for other supported formats. |
+
+
+ |
### getContentType() {#getContentType--}
```
@@ -242,12 +323,19 @@ public final String getContentType()
Gets the content type. Can be updated in a PPTX document only.
+
**Returns:**
java.lang.String - The type of the content.
---------------------
+
+
+*** ** * ** ***
Can be updated in a PPTX document only. Read-only for other supported formats.
+
+
+
+
### setContentType(String value) {#setContentType-java.lang.String-}
```
public final void setContentType(String value)
@@ -256,14 +344,21 @@ public final void setContentType(String value)
Sets the content type. Can be updated in a PPTX document only.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The type of the content.
---------------------
+
+
+*** ** * ** ***
-Can be updated in a PPTX document only. Read-only for other supported formats. |
+Can be updated in a PPTX document only. Read-only for other supported formats.
+
+
+
+ |
### getCreatedTime() {#getCreatedTime--}
```
@@ -273,8 +368,10 @@ public final Date getCreatedTime()
Gets the document created date.
+
**Returns:**
java.util.Date - The document created date.
+
### setCreatedTime(Date value) {#setCreatedTime-java.util.Date-}
```
public final void setCreatedTime(Date value)
@@ -283,10 +380,12 @@ public final void setCreatedTime(Date value)
Sets the document created date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The document created date. |
+| value | java.util.Date | The document created date.
+ |
### getKeywords() {#getKeywords--}
```
@@ -296,8 +395,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -306,10 +407,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The keywords. |
+| value | java.lang.String | The keywords.
+ |
### getLastPrintedDate() {#getLastPrintedDate--}
```
@@ -319,8 +422,10 @@ public final Date getLastPrintedDate()
Gets the last printed date.
+
**Returns:**
java.util.Date - The last printed date.
+
### setLastPrintedDate(Date value) {#setLastPrintedDate-java.util.Date-}
```
public final void setLastPrintedDate(Date value)
@@ -329,10 +434,12 @@ public final void setLastPrintedDate(Date value)
Sets the last printed date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The last printed date. |
+| value | java.util.Date | The last printed date.
+ |
### getLastSavedTime() {#getLastSavedTime--}
```
@@ -342,8 +449,10 @@ public final Date getLastSavedTime()
Gets the date and time when the presentation was modified last time.
+
**Returns:**
java.util.Date - The last saved time.
+
### getLastSavedBy() {#getLastSavedBy--}
```
public final String getLastSavedBy()
@@ -352,8 +461,10 @@ public final String getLastSavedBy()
Gets the name of the last author.
+
**Returns:**
java.lang.String - The last saved by.
+
### setLastSavedBy(String value) {#setLastSavedBy-java.lang.String-}
```
public final void setLastSavedBy(String value)
@@ -362,10 +473,12 @@ public final void setLastSavedBy(String value)
Sets the name of the last author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The last saved by. |
+| value | java.lang.String | The last saved by.
+ |
### getManager() {#getManager--}
```
@@ -375,8 +488,10 @@ public final String getManager()
Gets the manager.
+
**Returns:**
java.lang.String - The manager.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
@@ -385,10 +500,12 @@ public final void setManager(String value)
Sets the manager.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The manager. |
+| value | java.lang.String | The manager.
+ |
### getNameOfApplication() {#getNameOfApplication--}
```
@@ -398,8 +515,10 @@ public final String getNameOfApplication()
Gets the name of the application created the document.
+
**Returns:**
java.lang.String - The name of the application.
+
### getRevisionNumber() {#getRevisionNumber--}
```
public final int getRevisionNumber()
@@ -408,8 +527,10 @@ public final int getRevisionNumber()
Gets the revision number.
+
**Returns:**
int - The revision number.
+
### setRevisionNumber(int value) {#setRevisionNumber-int-}
```
public final void setRevisionNumber(int value)
@@ -418,10 +539,12 @@ public final void setRevisionNumber(int value)
Sets the revision number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The revision number. |
+| value | int | The revision number.
+ |
### getSubject() {#getSubject--}
```
@@ -431,8 +554,10 @@ public final String getSubject()
Gets the subject.
+
**Returns:**
java.lang.String - The subject.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -441,10 +566,12 @@ public final void setSubject(String value)
Sets the subject.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The subject. |
+| value | java.lang.String | The subject.
+ |
### getTitle() {#getTitle--}
```
@@ -454,8 +581,10 @@ public final String getTitle()
Gets the title of the document.
+
**Returns:**
java.lang.String - The title.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -464,10 +593,12 @@ public final void setTitle(String value)
Sets the title of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title. |
+| value | java.lang.String | The title.
+ |
### getVersion() {#getVersion--}
```
@@ -477,8 +608,10 @@ public final String getVersion()
Gets the application version.
+
**Returns:**
java.lang.String - The application version.
+
### getHyperlinkBase() {#getHyperlinkBase--}
```
public final String getHyperlinkBase()
@@ -487,12 +620,19 @@ public final String getHyperlinkBase()
Gets the hyperlink base.
+
**Returns:**
java.lang.String - The hyperlink base.
---------------------
+
+
+*** ** * ** ***
Read-only in old PPT.
+
+
+
+
### setHyperlinkBase(String value) {#setHyperlinkBase-java.lang.String-}
```
public final void setHyperlinkBase(String value)
@@ -501,14 +641,21 @@ public final void setHyperlinkBase(String value)
Sets the hyperlink base.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The hyperlink base.
---------------------
+
+
+*** ** * ** ***
+
+Read-only in old PPT.
-Read-only in old PPT. |
+
+
+ |
### getPresentationFormat() {#getPresentationFormat--}
```
@@ -518,8 +665,10 @@ public final String getPresentationFormat()
Gets the presentation format.
+
**Returns:**
java.lang.String - The presentation format.
+
### getSharedDoc() {#getSharedDoc--}
```
public final boolean getSharedDoc()
@@ -528,12 +677,19 @@ public final boolean getSharedDoc()
Gets a value indicating whether the presentation is shared between multiple people. Can be updated in a PPTX document only.
+
**Returns:**
boolean - true if the presentation shared between multiple people; otherwise, false .
---------------------
+
+
+*** ** * ** ***
Can be updated in a PPTX document only. Read-only for other formats like PPT, POT etc.
+
+
+
+
### setSharedDoc(boolean value) {#setSharedDoc-boolean-}
```
public final void setSharedDoc(boolean value)
@@ -542,14 +698,21 @@ public final void setSharedDoc(boolean value)
Sets a value indicating whether the presentation is shared between multiple people. Can be updated in a PPTX document only.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | boolean | true if the presentation shared between multiple people; otherwise, false .
---------------------
+
-Can be updated in a PPTX document only. Read-only for other formats like PPT, POT etc. |
+*** ** * ** ***
+
+Can be updated in a PPTX document only. Read-only for other formats like PPT, POT etc.
+
+
+
+ |
### getTotalEditingTime() {#getTotalEditingTime--}
```
@@ -559,8 +722,10 @@ public final double getTotalEditingTime()
Gets the total editing time of the document.
+
**Returns:**
double - The total editing time of the document.
+
### setTotalEditingTime(double value) {#setTotalEditingTime-double-}
```
public final void setTotalEditingTime(double value)
@@ -569,10 +734,12 @@ public final void setTotalEditingTime(double value)
Sets the total editing time of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | double | The total editing time of the document. |
+| value | double | The total editing time of the document.
+ |
### set(String propertyName, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -582,11 +749,14 @@ public final void set(String propertyName, String value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.lang.String | The property value.
+ |
### set(String propertyName, boolean value) {#set-java.lang.String-boolean-}
```
@@ -596,11 +766,14 @@ public final void set(String propertyName, boolean value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | boolean | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | boolean | The property value.
+ |
### set(String propertyName, Date value) {#set-java.lang.String-java.util.Date-}
```
@@ -610,11 +783,14 @@ public final void set(String propertyName, Date value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.util.Date | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.util.Date | The property value.
+ |
### set(String propertyName, int value) {#set-java.lang.String-int-}
```
@@ -624,11 +800,14 @@ public final void set(String propertyName, int value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | int | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | int | The property value.
+ |
### set(String propertyName, double value) {#set-java.lang.String-double-}
```
@@ -638,9 +817,12 @@ public final void set(String propertyName, double value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | double | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | double | The property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/presentationrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/presentationrootpackage/_index.md
index 3492ec4892..8a856fe641 100644
--- a/english/java/com.groupdocs.metadata.core/presentationrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationrootpackage/_index.md
@@ -14,15 +14,18 @@ public class PresentationRootPackage extends DocumentRootPackage
+This example shows how to extract built-in metadata properties from a presentation.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputPpt)) {
> PresentationRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getDocumentProperties().getAuthor());
@@ -36,17 +39,19 @@ This example shows how to extract built-in metadata properties from a presentati
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Presentations]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations
## Methods
| Method | Description |
| --- | --- |
-| [getPresentationType()](#getPresentationType--) | Gets the file type metadata package. |
-| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document. |
-| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package. |
+| [getPresentationType()](#getPresentationType--) | Gets the file type metadata package.
+ |
+| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document.
+ |
+| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package.
+ |
### getPresentationType() {#getPresentationType--}
```
public final PresentationTypePackage getPresentationType()
@@ -55,18 +60,23 @@ public final PresentationTypePackage getPresentationType()
Gets the file type metadata package.
+
**Returns:**
[PresentationTypePackage](../../com.groupdocs.metadata.core/presentationtypepackage) - The file type metadata package.
+
### getInspectionPackage() {#getInspectionPackage--}
```
public final PresentationInspectionPackage getInspectionPackage()
```
-Gets a metadata package containing inspection results for the document. The package contains information about document parts that can be considered as metadata in some cases.
+Gets a metadata package containing inspection results for the document.
+The package contains information about document parts that can be considered as metadata in some cases.
+
**Returns:**
[PresentationInspectionPackage](../../com.groupdocs.metadata.core/presentationinspectionpackage) - A metadata package containing inspection results for the document.
+
### getDocumentStatistics() {#getDocumentStatistics--}
```
public final DocumentStatistics getDocumentStatistics()
@@ -75,5 +85,7 @@ public final DocumentStatistics getDocumentStatistics()
Gets the document statistics package.
+
**Returns:**
[DocumentStatistics](../../com.groupdocs.metadata.core/documentstatistics) - The document statistics package.
+
diff --git a/english/java/com.groupdocs.metadata.core/presentationslide/_index.md b/english/java/com.groupdocs.metadata.core/presentationslide/_index.md
index b078e31162..46f5622770 100644
--- a/english/java/com.groupdocs.metadata.core/presentationslide/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationslide/_index.md
@@ -14,19 +14,24 @@ public final class PresentationSlide extends CustomPackage
Represents a slide in a presentation.
+
**Learn more**
- * [Working with metadata in Presentations][]
+* [Working with metadata in Presentations](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations)
+
+
-[Working with metadata in Presentations]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Presentations
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the slide name. |
-| [getNumber()](#getNumber--) | Gets the slide number. |
-| [getSlideId()](#getSlideId--) | Gets the slide id. |
+| [getName()](#getName--) | Gets the slide name.
+ |
+| [getNumber()](#getNumber--) | Gets the slide number.
+ |
+| [getSlideId()](#getSlideId--) | Gets the slide id.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -35,8 +40,10 @@ public final String getName()
Gets the slide name.
+
**Returns:**
java.lang.String - The slide name.
+
### getNumber() {#getNumber--}
```
public final int getNumber()
@@ -45,8 +52,10 @@ public final int getNumber()
Gets the slide number.
+
**Returns:**
int - The slide number.
+
### getSlideId() {#getSlideId--}
```
public final long getSlideId()
@@ -55,5 +64,7 @@ public final long getSlideId()
Gets the slide id.
+
**Returns:**
long - The slide identifier.
+
diff --git a/english/java/com.groupdocs.metadata.core/presentationtypepackage/_index.md b/english/java/com.groupdocs.metadata.core/presentationtypepackage/_index.md
index 79dd4b4ca3..6cd0a6c5e6 100644
--- a/english/java/com.groupdocs.metadata.core/presentationtypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/presentationtypepackage/_index.md
@@ -13,11 +13,13 @@ public class PresentationTypePackage extends FileTypePackage
```
Represents a metadata package containing presentation-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getPresentationFormat()](#getPresentationFormat--) | Gets the exact presentation format. |
+| [getPresentationFormat()](#getPresentationFormat--) | Gets the exact presentation format.
+ |
### getPresentationFormat() {#getPresentationFormat--}
```
public final PresentationFormat getPresentationFormat()
@@ -26,5 +28,7 @@ public final PresentationFormat getPresentationFormat()
Gets the exact presentation format.
+
**Returns:**
[PresentationFormat](../../com.groupdocs.metadata.core/presentationformat) - The exact presentation format.
+
diff --git a/english/java/com.groupdocs.metadata.core/projectmanagementpackage/_index.md b/english/java/com.groupdocs.metadata.core/projectmanagementpackage/_index.md
index 165a7814ed..1005e5cd5f 100644
--- a/english/java/com.groupdocs.metadata.core/projectmanagementpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/projectmanagementpackage/_index.md
@@ -14,15 +14,18 @@ public final class ProjectManagementPackage extends DocumentPackage
Represents a native metadata package in a project management file.
+
**Learn more**
- * [Working with metadata in ProjectManagement formats][]
+* [Working with metadata in ProjectManagement formats](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+ProjectManagement+formats)
-This code sample demonstrates how to update built-in properties in a ProjectManagement document.
+
+This code sample demonstrates how to update built-in properties in a ProjectManagement document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputMpp)) {
> ProjectManagementRootPackage root = metadata.getRootPackageGeneric();
> root.getDocumentProperties().setAuthor("test author");
@@ -35,50 +38,85 @@ This code sample demonstrates how to update built-in properties in a ProjectMana
> }
>
> ```
-> ```
+> ````
-[Working with metadata in ProjectManagement formats]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+ProjectManagement+formats
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the author of the project. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the author of the project. |
-| [getCategory()](#getCategory--) | Gets the category. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category. |
-| [getComments()](#getComments--) | Gets the user comments. |
-| [setComments(String value)](#setComments-java.lang.String-) | Sets the user comments. |
-| [getCompany()](#getCompany--) | Gets the company. |
-| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company. |
-| [getCreationDate()](#getCreationDate--) | Gets the creation date. |
-| [setCreationDate(Date value)](#setCreationDate-java.util.Date-) | Sets the creation date. |
-| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base. |
-| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getLastAuthor()](#getLastAuthor--) | Gets the last author. |
-| [setLastAuthor(String value)](#setLastAuthor-java.lang.String-) | Sets the last author. |
-| [getRevision()](#getRevision--) | Gets the revision number. |
-| [setRevision(int value)](#setRevision-int-) | Sets the revision number. |
-| [getSubject()](#getSubject--) | Gets the subject. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject. |
-| [getTitle()](#getTitle--) | Gets the title. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title. |
-| [getTemplate()](#getTemplate--) | Gets the template. |
-| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets the template. |
-| [getManager()](#getManager--) | Gets the project manager. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets the project manager. |
-| [getLastSaved()](#getLastSaved--) | Gets the date when the project was saved last time. |
-| [setLastSaved(Date value)](#setLastSaved-java.util.Date-) | Sets the date when the project was saved last time. |
-| [getSaveVersion()](#getSaveVersion--) | Gets the version of Microsoft Office Project from which a project file was saved. |
-| [getLastPrinted()](#getLastPrinted--) | Gets the project's last print time. |
-| [setLastPrinted(Date value)](#setLastPrinted-java.util.Date-) | Sets the project's last print time. |
-| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name. |
+| [getAuthor()](#getAuthor--) | Gets the author of the project.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the author of the project.
+ |
+| [getCategory()](#getCategory--) | Gets the category.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category.
+ |
+| [getComments()](#getComments--) | Gets the user comments.
+ |
+| [setComments(String value)](#setComments-java.lang.String-) | Sets the user comments.
+ |
+| [getCompany()](#getCompany--) | Gets the company.
+ |
+| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company.
+ |
+| [getCreationDate()](#getCreationDate--) | Gets the creation date.
+ |
+| [setCreationDate(Date value)](#setCreationDate-java.util.Date-) | Sets the creation date.
+ |
+| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base.
+ |
+| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getLastAuthor()](#getLastAuthor--) | Gets the last author.
+ |
+| [setLastAuthor(String value)](#setLastAuthor-java.lang.String-) | Sets the last author.
+ |
+| [getRevision()](#getRevision--) | Gets the revision number.
+ |
+| [setRevision(int value)](#setRevision-int-) | Sets the revision number.
+ |
+| [getSubject()](#getSubject--) | Gets the subject.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject.
+ |
+| [getTitle()](#getTitle--) | Gets the title.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title.
+ |
+| [getTemplate()](#getTemplate--) | Gets the template.
+ |
+| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets the template.
+ |
+| [getManager()](#getManager--) | Gets the project manager.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets the project manager.
+ |
+| [getLastSaved()](#getLastSaved--) | Gets the date when the project was saved last time.
+ |
+| [setLastSaved(Date value)](#setLastSaved-java.util.Date-) | Sets the date when the project was saved last time.
+ |
+| [getSaveVersion()](#getSaveVersion--) | Gets the version of Microsoft Office Project from which a project file was saved.
+ |
+| [getLastPrinted()](#getLastPrinted--) | Gets the project's last print time.
+ |
+| [setLastPrinted(Date value)](#setLastPrinted-java.util.Date-) | Sets the project's last print time.
+ |
+| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -87,8 +125,10 @@ public final String getAuthor()
Gets the author of the project.
+
**Returns:**
java.lang.String - The author of the project.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
@@ -97,10 +137,12 @@ public final void setAuthor(String value)
Sets the author of the project.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author of the project. |
+| value | java.lang.String | The author of the project.
+ |
### getCategory() {#getCategory--}
```
@@ -110,8 +152,10 @@ public final String getCategory()
Gets the category.
+
**Returns:**
java.lang.String - The category.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
@@ -120,10 +164,12 @@ public final void setCategory(String value)
Sets the category.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The category. |
+| value | java.lang.String | The category.
+ |
### getComments() {#getComments--}
```
@@ -133,8 +179,10 @@ public final String getComments()
Gets the user comments.
+
**Returns:**
java.lang.String - The user comments.
+
### setComments(String value) {#setComments-java.lang.String-}
```
public final void setComments(String value)
@@ -143,10 +191,12 @@ public final void setComments(String value)
Sets the user comments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The user comments. |
+| value | java.lang.String | The user comments.
+ |
### getCompany() {#getCompany--}
```
@@ -156,8 +206,10 @@ public final String getCompany()
Gets the company.
+
**Returns:**
java.lang.String - The company.
+
### setCompany(String value) {#setCompany-java.lang.String-}
```
public final void setCompany(String value)
@@ -166,10 +218,12 @@ public final void setCompany(String value)
Sets the company.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The company. |
+| value | java.lang.String | The company.
+ |
### getCreationDate() {#getCreationDate--}
```
@@ -179,8 +233,10 @@ public final Date getCreationDate()
Gets the creation date.
+
**Returns:**
java.util.Date - The creation date.
+
### setCreationDate(Date value) {#setCreationDate-java.util.Date-}
```
public final void setCreationDate(Date value)
@@ -189,10 +245,12 @@ public final void setCreationDate(Date value)
Sets the creation date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The creation date. |
+| value | java.util.Date | The creation date.
+ |
### getHyperlinkBase() {#getHyperlinkBase--}
```
@@ -202,8 +260,10 @@ public final String getHyperlinkBase()
Gets the hyperlink base.
+
**Returns:**
java.lang.String - The hyperlink base.
+
### setHyperlinkBase(String value) {#setHyperlinkBase-java.lang.String-}
```
public final void setHyperlinkBase(String value)
@@ -212,10 +272,12 @@ public final void setHyperlinkBase(String value)
Sets the hyperlink base.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The hyperlink base. |
+| value | java.lang.String | The hyperlink base.
+ |
### getKeywords() {#getKeywords--}
```
@@ -225,8 +287,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -235,10 +299,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The keywords. |
+| value | java.lang.String | The keywords.
+ |
### getLastAuthor() {#getLastAuthor--}
```
@@ -248,8 +314,10 @@ public final String getLastAuthor()
Gets the last author.
+
**Returns:**
java.lang.String - The last author.
+
### setLastAuthor(String value) {#setLastAuthor-java.lang.String-}
```
public final void setLastAuthor(String value)
@@ -258,10 +326,12 @@ public final void setLastAuthor(String value)
Sets the last author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The last author. |
+| value | java.lang.String | The last author.
+ |
### getRevision() {#getRevision--}
```
@@ -271,8 +341,10 @@ public final int getRevision()
Gets the revision number.
+
**Returns:**
int - The revision number.
+
### setRevision(int value) {#setRevision-int-}
```
public final void setRevision(int value)
@@ -281,10 +353,12 @@ public final void setRevision(int value)
Sets the revision number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The revision number. |
+| value | int | The revision number.
+ |
### getSubject() {#getSubject--}
```
@@ -294,8 +368,10 @@ public final String getSubject()
Gets the subject.
+
**Returns:**
java.lang.String - The subject.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -304,10 +380,12 @@ public final void setSubject(String value)
Sets the subject.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The subject. |
+| value | java.lang.String | The subject.
+ |
### getTitle() {#getTitle--}
```
@@ -317,8 +395,10 @@ public final String getTitle()
Gets the title.
+
**Returns:**
java.lang.String - The title.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -327,10 +407,12 @@ public final void setTitle(String value)
Sets the title.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title. |
+| value | java.lang.String | The title.
+ |
### getTemplate() {#getTemplate--}
```
@@ -340,8 +422,10 @@ public final String getTemplate()
Gets the template.
+
**Returns:**
java.lang.String - The template.
+
### setTemplate(String value) {#setTemplate-java.lang.String-}
```
public final void setTemplate(String value)
@@ -350,10 +434,12 @@ public final void setTemplate(String value)
Sets the template.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The template. |
+| value | java.lang.String | The template.
+ |
### getManager() {#getManager--}
```
@@ -363,8 +449,10 @@ public final String getManager()
Gets the project manager.
+
**Returns:**
java.lang.String - The project manager.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
@@ -373,10 +461,12 @@ public final void setManager(String value)
Sets the project manager.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The project manager. |
+| value | java.lang.String | The project manager.
+ |
### getLastSaved() {#getLastSaved--}
```
@@ -386,8 +476,10 @@ public final Date getLastSaved()
Gets the date when the project was saved last time.
+
**Returns:**
java.util.Date - The date when the project was saved last time.
+
### setLastSaved(Date value) {#setLastSaved-java.util.Date-}
```
public final void setLastSaved(Date value)
@@ -396,10 +488,12 @@ public final void setLastSaved(Date value)
Sets the date when the project was saved last time.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date when the project was saved last time. |
+| value | java.util.Date | The date when the project was saved last time.
+ |
### getSaveVersion() {#getSaveVersion--}
```
@@ -409,8 +503,10 @@ public final int getSaveVersion()
Gets the version of Microsoft Office Project from which a project file was saved.
+
**Returns:**
int - The version of Microsoft Office Project from which a project file was saved.
+
### getLastPrinted() {#getLastPrinted--}
```
public final Date getLastPrinted()
@@ -419,8 +515,10 @@ public final Date getLastPrinted()
Gets the project's last print time.
+
**Returns:**
java.util.Date - The project's last print time.
+
### setLastPrinted(Date value) {#setLastPrinted-java.util.Date-}
```
public final void setLastPrinted(Date value)
@@ -429,10 +527,12 @@ public final void setLastPrinted(Date value)
Sets the project's last print time.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The project's last print time. |
+| value | java.util.Date | The project's last print time.
+ |
### set(String propertyName, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -442,11 +542,14 @@ public final void set(String propertyName, String value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.lang.String | The property value.
+ |
### set(String propertyName, double value) {#set-java.lang.String-double-}
```
@@ -456,11 +559,14 @@ public final void set(String propertyName, double value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | double | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | double | The property value.
+ |
### set(String propertyName, boolean value) {#set-java.lang.String-boolean-}
```
@@ -470,11 +576,14 @@ public final void set(String propertyName, boolean value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | boolean | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | boolean | The property value.
+ |
### set(String propertyName, Date value) {#set-java.lang.String-java.util.Date-}
```
@@ -484,11 +593,14 @@ public final void set(String propertyName, Date value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.util.Date | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.util.Date | The property value.
+ |
### set(String propertyName, int value) {#set-java.lang.String-int-}
```
@@ -498,9 +610,12 @@ public final void set(String propertyName, int value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | int | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | int | The property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/projectmanagementrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/projectmanagementrootpackage/_index.md
index cf5199406b..63e9a72516 100644
--- a/english/java/com.groupdocs.metadata.core/projectmanagementrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/projectmanagementrootpackage/_index.md
@@ -14,15 +14,18 @@ public class ProjectManagementRootPackage extends DocumentRootPackage
+This code sample demonstrates how to extract built-in properties of a ProjectManagement document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputMpp)) {
> ProjectManagementRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getDocumentProperties().getAuthor());
@@ -36,7 +39,6 @@ This code sample demonstrates how to extract built-in properties of a ProjectMan
> }
>
> ```
-> ```
+> ````
-[Working with metadata in ProjectManagement formats]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+ProjectManagement+formats
diff --git a/english/java/com.groupdocs.metadata.core/propertyaccesslevels/_index.md b/english/java/com.groupdocs.metadata.core/propertyaccesslevels/_index.md
index 58f38017fe..4c3394aadf 100644
--- a/english/java/com.groupdocs.metadata.core/propertyaccesslevels/_index.md
+++ b/english/java/com.groupdocs.metadata.core/propertyaccesslevels/_index.md
@@ -16,16 +16,29 @@ public final class PropertyAccessLevels implements IEnumValue
```
Defines access levels for metadata properties.
+
## Fields
| Field | Description |
| --- | --- |
-| [Read](#Read) | The property is read-only. |
-| [Update](#Update) | It is possible to update the property using the MetadataPackage.UpdateProperties method. |
-| [Remove](#Remove) | The property can be removed through the MetadataPackage.RemoveProperties method. |
-| [Add](#Add) | It is possible to update the property using the MetadataPackage.AddProperties method. |
-| [Full](#Full) | Grants full access to the property. |
-| [AddOrUpdate](#AddOrUpdate) | It is allowed to add and update the property. |
+| [Read](#Read) | The property is read-only.
+ |
+| [Update](#Update) | It is possible to update the property using the
+MetadataPackage.UpdateProperties
+ method.
+ |
+| [Remove](#Remove) | The property can be removed through the
+MetadataPackage.RemoveProperties
+ method.
+ |
+| [Add](#Add) | It is possible to update the property using the
+MetadataPackage.AddProperties
+ method.
+ |
+| [Full](#Full) | Grants full access to the property.
+ |
+| [AddOrUpdate](#AddOrUpdate) | It is allowed to add and update the property.
+ |
## Methods
| Method | Description |
@@ -48,13 +61,17 @@ public static final PropertyAccessLevels Read
The property is read-only.
+
### Update {#Update}
```
public static final PropertyAccessLevels Update
```
-It is possible to update the property using the MetadataPackage.UpdateProperties method.
+It is possible to update the property using the
+MetadataPackage.UpdateProperties
+ method.
+
### Remove {#Remove}
```
@@ -62,7 +79,10 @@ public static final PropertyAccessLevels Remove
```
-The property can be removed through the MetadataPackage.RemoveProperties method.
+The property can be removed through the
+MetadataPackage.RemoveProperties
+ method.
+
### Add {#Add}
```
@@ -70,7 +90,10 @@ public static final PropertyAccessLevels Add
```
-It is possible to update the property using the MetadataPackage.AddProperties method.
+It is possible to update the property using the
+MetadataPackage.AddProperties
+ method.
+
### Full {#Full}
```
@@ -80,6 +103,7 @@ public static final PropertyAccessLevels Full
Grants full access to the property.
+
### AddOrUpdate {#AddOrUpdate}
```
public static final PropertyAccessLevels AddOrUpdate
@@ -88,6 +112,7 @@ public static final PropertyAccessLevels AddOrUpdate
It is allowed to add and update the property. All other operations are restricted.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static PropertyAccessLevels getByRawValue(int rawValue)
@@ -121,6 +146,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -131,6 +157,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -146,6 +173,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +189,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -171,6 +200,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -181,6 +211,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/propertydescriptor/_index.md b/english/java/com.groupdocs.metadata.core/propertydescriptor/_index.md
index 10d3cbdb6b..f6f2e7b2e4 100644
--- a/english/java/com.groupdocs.metadata.core/propertydescriptor/_index.md
+++ b/english/java/com.groupdocs.metadata.core/propertydescriptor/_index.md
@@ -13,15 +13,21 @@ public class PropertyDescriptor
```
Represents a descriptor of a property that can be accessed through the GroupDocs.Metadata search engine.
+
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the property name. |
-| [getType()](#getType--) | Gets the property type. |
-| [getAccessLevel()](#getAccessLevel--) | Gets the property access level. |
-| [getTags()](#getTags--) | Gets a collection of tags associated with the property. |
-| [getInterpreter()](#getInterpreter--) | Gets the property value interpreter. |
+| [getName()](#getName--) | Gets the property name.
+ |
+| [getType()](#getType--) | Gets the property type.
+ |
+| [getAccessLevel()](#getAccessLevel--) | Gets the property access level.
+ |
+| [getTags()](#getTags--) | Gets a collection of tags associated with the property.
+ |
+| [getInterpreter()](#getInterpreter--) | Gets the property value interpreter.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -30,8 +36,10 @@ public final String getName()
Gets the property name.
+
**Returns:**
java.lang.String - The property name.
+
### getType() {#getType--}
```
public final MetadataPropertyType getType()
@@ -40,8 +48,10 @@ public final MetadataPropertyType getType()
Gets the property type.
+
**Returns:**
[MetadataPropertyType](../../com.groupdocs.metadata.core/metadatapropertytype) - The property type.
+
### getAccessLevel() {#getAccessLevel--}
```
public PropertyAccessLevels getAccessLevel()
@@ -50,8 +60,10 @@ public PropertyAccessLevels getAccessLevel()
Gets the property access level.
+
**Returns:**
[PropertyAccessLevels](../../com.groupdocs.metadata.core/propertyaccesslevels) - The property access level.
+
### getTags() {#getTags--}
```
public final IReadOnlyList getTags()
@@ -60,8 +72,10 @@ public final IReadOnlyList getTags()
Gets a collection of tags associated with the property.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection of tags associated with the property.
+
### getInterpreter() {#getInterpreter--}
```
public final ValueInterpreter getInterpreter()
@@ -70,5 +84,7 @@ public final ValueInterpreter getInterpreter()
Gets the property value interpreter.
+
**Returns:**
[ValueInterpreter](../../com.groupdocs.metadata.core/valueinterpreter) - The property value interpreter.
+
diff --git a/english/java/com.groupdocs.metadata.core/propertyvalue/_index.md b/english/java/com.groupdocs.metadata.core/propertyvalue/_index.md
index e19a15a0b0..1048e7fe86 100644
--- a/english/java/com.groupdocs.metadata.core/propertyvalue/_index.md
+++ b/english/java/com.groupdocs.metadata.core/propertyvalue/_index.md
@@ -13,48 +13,102 @@ public class PropertyValue
```
Represents a property value.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [PropertyValue(int value)](#PropertyValue-int-) | Initializes a new instance of the PropertyValue class with an integer value. |
-| [PropertyValue(long value)](#PropertyValue-long-) | Initializes a new instance of the PropertyValue class with a long value. |
-| [PropertyValue(boolean value)](#PropertyValue-boolean-) | Initializes a new instance of the PropertyValue class with a boolean value. |
-| [PropertyValue(double value)](#PropertyValue-double-) | Initializes a new instance of the PropertyValue class with a double value. |
-| [PropertyValue(String value)](#PropertyValue-java.lang.String-) | Initializes a new instance of the PropertyValue class with a string value. |
-| [PropertyValue(Date value)](#PropertyValue-java.util.Date-) | Initializes a new instance of the PropertyValue class with a DateTime value. |
-| [PropertyValue(String[] values)](#PropertyValue-java.lang.String---) | Initializes a new instance of the PropertyValue class with a string array. |
-| [PropertyValue(byte[] values)](#PropertyValue-byte---) | Initializes a new instance of the PropertyValue class with a byte array. |
-| [PropertyValue(double[] values)](#PropertyValue-double---) | Initializes a new instance of the PropertyValue class with an array of double values. |
-| [PropertyValue(int[] values)](#PropertyValue-int---) | Initializes a new instance of the PropertyValue class with an array of integer values. |
-| [PropertyValue(long[] values)](#PropertyValue-long---) | Initializes a new instance of the PropertyValue class with an array of long values. |
-| [PropertyValue(PropertyValue[] values)](#PropertyValue-com.groupdocs.metadata.core.PropertyValue---) | Initializes a new instance of the PropertyValue class with an array of metadata property values. |
+| [PropertyValue(int value)](#PropertyValue-int-) | Initializes a new instance of the
+PropertyValue
+ class with an integer value.
+ |
+| [PropertyValue(long value)](#PropertyValue-long-) | Initializes a new instance of the
+PropertyValue
+ class with a long value.
+ |
+| [PropertyValue(boolean value)](#PropertyValue-boolean-) | Initializes a new instance of the
+PropertyValue
+ class with a boolean value.
+ |
+| [PropertyValue(double value)](#PropertyValue-double-) | Initializes a new instance of the
+PropertyValue
+ class with a double value.
+ |
+| [PropertyValue(String value)](#PropertyValue-java.lang.String-) | Initializes a new instance of the
+PropertyValue
+ class with a string value.
+ |
+| [PropertyValue(Date value)](#PropertyValue-java.util.Date-) | Initializes a new instance of the
+PropertyValue
+ class with a
+DateTime
+ value.
+ |
+| [PropertyValue(String[] values)](#PropertyValue-java.lang.String---) | Initializes a new instance of the
+PropertyValue
+ class with a string array.
+ |
+| [PropertyValue(byte[] values)](#PropertyValue-byte---) | Initializes a new instance of the
+PropertyValue
+ class with a byte array.
+ |
+| [PropertyValue(double[] values)](#PropertyValue-double---) | Initializes a new instance of the
+PropertyValue
+ class with an array of double values.
+ |
+| [PropertyValue(int[] values)](#PropertyValue-int---) | Initializes a new instance of the
+PropertyValue
+ class with an array of integer values.
+ |
+| [PropertyValue(long[] values)](#PropertyValue-long---) | Initializes a new instance of the
+PropertyValue
+ class with an array of long values.
+ |
+| [PropertyValue(PropertyValue[] values)](#PropertyValue-com.groupdocs.metadata.core.PropertyValue---) | Initializes a new instance of the
+PropertyValue
+ class with an array of metadata property values.
+ |
| [PropertyValue(PropertyValue value)](#PropertyValue-com.groupdocs.metadata.core.PropertyValue-) | |
| [PropertyValue(UUID value)](#PropertyValue-java.util.UUID-) | |
-| [PropertyValue(Object value)](#PropertyValue-java.lang.Object-) | Initializes a new instance of the PropertyValue class with a generic object value. |
+| [PropertyValue(Object value)](#PropertyValue-java.lang.Object-) | Initializes a new instance of the
+PropertyValue
+ class with a generic object value.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getType()](#getType--) | Gets the MetadataPropertyType . |
-| [getRawValue()](#getRawValue--) | Gets the raw value. |
+| [getType()](#getType--) | Gets the
+MetadataPropertyType
+.
+ |
+| [getRawValue()](#getRawValue--) | Gets the raw value.
+ |
| [getEmpty()](#getEmpty--) | |
-| [toArray(Class elementType)](#-TElement-toArray-java.lang.Class-TElement--) | Converts the property value to an array of the specified type. |
-| [toClass(Class type)](#-T-toClass-java.lang.Class-T--) | Converts the property value to a reference type. |
-| [toString()](#toString--) | Returns a string that represents the property value. |
-| [acceptValue(ValueAcceptor valueAcceptor)](#acceptValue-com.groupdocs.metadata.core.ValueAcceptor-) | Extracts the property value using a custom ValueAcceptor. |
+| [toArray(Class elementType)](#-TElement-toArray-java.lang.Class-TElement--) | Converts the property value to an array of the specified type.
+ |
+| [toClass(Class type)](#-T-toClass-java.lang.Class-T--) | Converts the property value to a reference type.
+ |
+| [toString()](#toString--) | Returns a string that represents the property value.
+ |
+| [acceptValue(ValueAcceptor valueAcceptor)](#acceptValue-com.groupdocs.metadata.core.ValueAcceptor-) | Extracts the property value using a custom ValueAcceptor.
+ |
### PropertyValue(int value) {#PropertyValue-int-}
```
public PropertyValue(int value)
```
-Initializes a new instance of the PropertyValue class with an integer value.
+Initializes a new instance of the
+PropertyValue
+ class with an integer value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | An int value. |
+| value | int | An int value.
+ |
### PropertyValue(long value) {#PropertyValue-long-}
```
@@ -62,12 +116,16 @@ public PropertyValue(long value)
```
-Initializes a new instance of the PropertyValue class with a long value.
+Initializes a new instance of the
+PropertyValue
+ class with a long value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | A long value. |
+| value | long | A long value.
+ |
### PropertyValue(boolean value) {#PropertyValue-boolean-}
```
@@ -75,12 +133,16 @@ public PropertyValue(boolean value)
```
-Initializes a new instance of the PropertyValue class with a boolean value.
+Initializes a new instance of the
+PropertyValue
+ class with a boolean value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | boolean | A bool value. |
+| value | boolean | A bool value.
+ |
### PropertyValue(double value) {#PropertyValue-double-}
```
@@ -88,12 +150,16 @@ public PropertyValue(double value)
```
-Initializes a new instance of the PropertyValue class with a double value.
+Initializes a new instance of the
+PropertyValue
+ class with a double value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | double | A double value. |
+| value | double | A double value.
+ |
### PropertyValue(String value) {#PropertyValue-java.lang.String-}
```
@@ -101,12 +167,16 @@ public PropertyValue(String value)
```
-Initializes a new instance of the PropertyValue class with a string value.
+Initializes a new instance of the
+PropertyValue
+ class with a string value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A string value. |
+| value | java.lang.String | A string value.
+ |
### PropertyValue(Date value) {#PropertyValue-java.util.Date-}
```
@@ -114,12 +184,18 @@ public PropertyValue(Date value)
```
-Initializes a new instance of the PropertyValue class with a DateTime value.
+Initializes a new instance of the
+PropertyValue
+ class with a
+DateTime
+ value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | A DateTime value. |
+| value | java.util.Date | A DateTime value.
+ |
### PropertyValue(String[] values) {#PropertyValue-java.lang.String---}
```
@@ -127,12 +203,16 @@ public PropertyValue(String[] values)
```
-Initializes a new instance of the PropertyValue class with a string array.
+Initializes a new instance of the
+PropertyValue
+ class with a string array.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| values | java.lang.String[] | A string array. |
+| values | java.lang.String[] | A string array.
+ |
### PropertyValue(byte[] values) {#PropertyValue-byte---}
```
@@ -140,12 +220,16 @@ public PropertyValue(byte[] values)
```
-Initializes a new instance of the PropertyValue class with a byte array.
+Initializes a new instance of the
+PropertyValue
+ class with a byte array.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| values | byte[] | A byte array. |
+| values | byte[] | A byte array.
+ |
### PropertyValue(double[] values) {#PropertyValue-double---}
```
@@ -153,12 +237,16 @@ public PropertyValue(double[] values)
```
-Initializes a new instance of the PropertyValue class with an array of double values.
+Initializes a new instance of the
+PropertyValue
+ class with an array of double values.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| values | double[] | An array of double values. |
+| values | double[] | An array of double values.
+ |
### PropertyValue(int[] values) {#PropertyValue-int---}
```
@@ -166,12 +254,16 @@ public PropertyValue(int[] values)
```
-Initializes a new instance of the PropertyValue class with an array of integer values.
+Initializes a new instance of the
+PropertyValue
+ class with an array of integer values.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| values | int[] | An array of integer values. |
+| values | int[] | An array of integer values.
+ |
### PropertyValue(long[] values) {#PropertyValue-long---}
```
@@ -179,12 +271,16 @@ public PropertyValue(long[] values)
```
-Initializes a new instance of the PropertyValue class with an array of long values.
+Initializes a new instance of the
+PropertyValue
+ class with an array of long values.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| values | long[] | An array of long values. |
+| values | long[] | An array of long values.
+ |
### PropertyValue(PropertyValue[] values) {#PropertyValue-com.groupdocs.metadata.core.PropertyValue---}
```
@@ -192,12 +288,16 @@ public PropertyValue(PropertyValue[] values)
```
-Initializes a new instance of the PropertyValue class with an array of metadata property values.
+Initializes a new instance of the
+PropertyValue
+ class with an array of metadata property values.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| values | [PropertyValue\[\]](../../com.groupdocs.metadata.core/propertyvalue) | An array of metadata property values. |
+| values | [PropertyValue\[\]](../../com.groupdocs.metadata.core/propertyvalue) | An array of metadata property values.
+ |
### PropertyValue(PropertyValue value) {#PropertyValue-com.groupdocs.metadata.core.PropertyValue-}
```
@@ -227,12 +327,16 @@ public PropertyValue(Object value)
```
-Initializes a new instance of the PropertyValue class with a generic object value.
+Initializes a new instance of the
+PropertyValue
+ class with a generic object value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Object | An object value. |
+| value | java.lang.Object | An object value.
+ |
### getType() {#getType--}
```
@@ -240,10 +344,14 @@ public final MetadataPropertyType getType()
```
-Gets the MetadataPropertyType .
+Gets the
+MetadataPropertyType
+.
+
**Returns:**
[MetadataPropertyType](../../com.groupdocs.metadata.core/metadatapropertytype) - The type of the property.
+
### getRawValue() {#getRawValue--}
```
public final Object getRawValue()
@@ -252,8 +360,10 @@ public final Object getRawValue()
Gets the raw value.
+
**Returns:**
java.lang.Object - The raw value.
+
### getEmpty() {#getEmpty--}
```
public static PropertyValue getEmpty()
@@ -272,6 +382,7 @@ public final TElement[] toArray(Class elementType)
Converts the property value to an array of the specified type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -280,7 +391,10 @@ Converts the property value to an array of the specified type.
**Returns:**
TElement[] - The value represented as an array of the specified type or null if there is no such conversion.
- TElement : The type of an element.
+
+TElement
+: The type of an element.
+
### toClass(Class type) {#-T-toClass-java.lang.Class-T--}
```
public final T toClass(Class type)
@@ -289,6 +403,7 @@ public final T toClass(Class type)
Converts the property value to a reference type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -297,7 +412,10 @@ Converts the property value to a reference type.
**Returns:**
T - The converted value or null if there is no such conversion.
- T : The exact type to convert to.
+
+T
+: The exact type to convert to.
+
### toString() {#toString--}
```
public String toString()
@@ -306,8 +424,10 @@ public String toString()
Returns a string that represents the property value.
+
**Returns:**
java.lang.String - A string that represents the property value.
+
### acceptValue(ValueAcceptor valueAcceptor) {#acceptValue-com.groupdocs.metadata.core.ValueAcceptor-}
```
public void acceptValue(ValueAcceptor valueAcceptor)
@@ -316,8 +436,10 @@ public void acceptValue(ValueAcceptor valueAcceptor)
Extracts the property value using a custom ValueAcceptor.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| valueAcceptor | [ValueAcceptor](../../com.groupdocs.metadata.core/valueacceptor) | An acceptor that extracts the value. |
+| valueAcceptor | [ValueAcceptor](../../com.groupdocs.metadata.core/valueacceptor) | An acceptor that extracts the value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/psdcolormode/_index.md b/english/java/com.groupdocs.metadata.core/psdcolormode/_index.md
index 56b3ad001e..a524907b3a 100644
--- a/english/java/com.groupdocs.metadata.core/psdcolormode/_index.md
+++ b/english/java/com.groupdocs.metadata.core/psdcolormode/_index.md
@@ -16,18 +16,27 @@ public enum PsdColorMode extends Enum implements IEnumValue
```
Represents the psd file format color mode.
+
## Fields
| Field | Description |
| --- | --- |
-| [Bitmap](#Bitmap) | The bitmap color mode. |
-| [Grayscale](#Grayscale) | The grayscale mode. |
-| [Indexed](#Indexed) | The indexed color mode. |
-| [Rgb](#Rgb) | The RGB color mode. |
-| [Cmyk](#Cmyk) | The CMYK color mode. |
-| [Multichannel](#Multichannel) | The multichannel color mode. |
-| [Duotone](#Duotone) | The duotone color mode. |
-| [Lab](#Lab) | The LAB color mode. |
+| [Bitmap](#Bitmap) | The bitmap color mode.
+ |
+| [Grayscale](#Grayscale) | The grayscale mode.
+ |
+| [Indexed](#Indexed) | The indexed color mode.
+ |
+| [Rgb](#Rgb) | The RGB color mode.
+ |
+| [Cmyk](#Cmyk) | The CMYK color mode.
+ |
+| [Multichannel](#Multichannel) | The multichannel color mode.
+ |
+| [Duotone](#Duotone) | The duotone color mode.
+ |
+| [Lab](#Lab) | The LAB color mode.
+ |
## Methods
| Method | Description |
@@ -49,6 +58,7 @@ public static final PsdColorMode Bitmap
The bitmap color mode.
+
### Grayscale {#Grayscale}
```
public static final PsdColorMode Grayscale
@@ -57,6 +67,7 @@ public static final PsdColorMode Grayscale
The grayscale mode.
+
### Indexed {#Indexed}
```
public static final PsdColorMode Indexed
@@ -65,6 +76,7 @@ public static final PsdColorMode Indexed
The indexed color mode.
+
### Rgb {#Rgb}
```
public static final PsdColorMode Rgb
@@ -73,6 +85,7 @@ public static final PsdColorMode Rgb
The RGB color mode.
+
### Cmyk {#Cmyk}
```
public static final PsdColorMode Cmyk
@@ -81,6 +94,7 @@ public static final PsdColorMode Cmyk
The CMYK color mode.
+
### Multichannel {#Multichannel}
```
public static final PsdColorMode Multichannel
@@ -89,6 +103,7 @@ public static final PsdColorMode Multichannel
The multichannel color mode.
+
### Duotone {#Duotone}
```
public static final PsdColorMode Duotone
@@ -97,6 +112,7 @@ public static final PsdColorMode Duotone
The duotone color mode.
+
### Lab {#Lab}
```
public static final PsdColorMode Lab
@@ -105,6 +121,7 @@ public static final PsdColorMode Lab
The LAB color mode.
+
### values() {#values--}
```
public static PsdColorMode[] values()
@@ -163,6 +180,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -173,6 +191,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -188,6 +207,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -203,6 +223,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -213,5 +234,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/psdcompressionmethod/_index.md b/english/java/com.groupdocs.metadata.core/psdcompressionmethod/_index.md
index 3c58c7bbac..eb4e818cb8 100644
--- a/english/java/com.groupdocs.metadata.core/psdcompressionmethod/_index.md
+++ b/english/java/com.groupdocs.metadata.core/psdcompressionmethod/_index.md
@@ -16,14 +16,19 @@ public enum PsdCompressionMethod extends Enum implements I
```
Defines the compression method used for image data.
+
## Fields
| Field | Description |
| --- | --- |
-| [Raw](#Raw) | No compression. |
-| [Rle](#Rle) | RLE compressed. |
-| [ZipWithoutPrediction](#ZipWithoutPrediction) | ZIP without prediction. |
-| [ZipWithPrediction](#ZipWithPrediction) | ZIP with prediction. |
+| [Raw](#Raw) | No compression.
+ |
+| [Rle](#Rle) | RLE compressed.
+ |
+| [ZipWithoutPrediction](#ZipWithoutPrediction) | ZIP without prediction.
+ |
+| [ZipWithPrediction](#ZipWithPrediction) | ZIP with prediction.
+ |
## Methods
| Method | Description |
@@ -43,7 +48,9 @@ public static final PsdCompressionMethod Raw
```
-No compression. The image data stored as raw bytes in RGBA planar order. That means that first all R data is written, then all G is written, then all B and finally all A data is written.
+No compression. The image data stored as raw bytes in RGBA planar order.
+That means that first all R data is written, then all G is written, then all B and finally all A data is written.
+
### Rle {#Rle}
```
@@ -51,7 +58,10 @@ public static final PsdCompressionMethod Rle
```
-RLE compressed. The image data starts with the byte counts for all the scan lines (rows \* channels), with each count stored as a two-byte value. The RLE compressed data follows, with each scan line compressed separately. The RLE compression is the same compression algorithm used by the Macintosh ROM routine PackBits and the TIFF standard.
+RLE compressed. The image data starts with the byte counts for all the scan lines (rows \* channels), with each
+count stored as a two-byte value. The RLE compressed data follows, with each scan line compressed separately.
+The RLE compression is the same compression algorithm used by the Macintosh ROM routine PackBits and the TIFF standard.
+
### ZipWithoutPrediction {#ZipWithoutPrediction}
```
@@ -61,6 +71,7 @@ public static final PsdCompressionMethod ZipWithoutPrediction
ZIP without prediction.
+
### ZipWithPrediction {#ZipWithPrediction}
```
public static final PsdCompressionMethod ZipWithPrediction
@@ -69,6 +80,7 @@ public static final PsdCompressionMethod ZipWithPrediction
ZIP with prediction.
+
### values() {#values--}
```
public static PsdCompressionMethod[] values()
@@ -127,6 +139,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +150,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +166,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +182,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +193,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/psdlayer/_index.md b/english/java/com.groupdocs.metadata.core/psdlayer/_index.md
index 6685eb631d..761c1963ad 100644
--- a/english/java/com.groupdocs.metadata.core/psdlayer/_index.md
+++ b/english/java/com.groupdocs.metadata.core/psdlayer/_index.md
@@ -14,28 +14,42 @@ public final class PsdLayer extends CustomPackage
Represents a layer in a PSD file.
+
**Learn more**
- * [Working with metadata in PSD images][]
+* [Working with metadata in PSD images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images)
+
+
-[Working with metadata in PSD images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images
## Methods
| Method | Description |
| --- | --- |
-| [getBitsPerPixel()](#getBitsPerPixel--) | Gets the bits per pixel value. |
-| [getChannelCount()](#getChannelCount--) | Gets the number of channels. |
-| [getFlags()](#getFlags--) | Gets the layer flags. |
-| [getLength()](#getLength--) | Gets the overall layer length in bytes. |
-| [getOpacity()](#getOpacity--) | Gets the layer opacity. |
-| [getTop()](#getTop--) | Gets the top layer position. |
-| [getLeft()](#getLeft--) | Gets the left layer position. |
-| [getBottom()](#getBottom--) | Gets the bottom layer position. |
-| [getRight()](#getRight--) | Gets the right layer position. |
-| [getHeight()](#getHeight--) | Gets the height. |
-| [getWidth()](#getWidth--) | Gets the width. |
-| [getName()](#getName--) | Gets the layer name. |
+| [getBitsPerPixel()](#getBitsPerPixel--) | Gets the bits per pixel value.
+ |
+| [getChannelCount()](#getChannelCount--) | Gets the number of channels.
+ |
+| [getFlags()](#getFlags--) | Gets the layer flags.
+ |
+| [getLength()](#getLength--) | Gets the overall layer length in bytes.
+ |
+| [getOpacity()](#getOpacity--) | Gets the layer opacity.
+ |
+| [getTop()](#getTop--) | Gets the top layer position.
+ |
+| [getLeft()](#getLeft--) | Gets the left layer position.
+ |
+| [getBottom()](#getBottom--) | Gets the bottom layer position.
+ |
+| [getRight()](#getRight--) | Gets the right layer position.
+ |
+| [getHeight()](#getHeight--) | Gets the height.
+ |
+| [getWidth()](#getWidth--) | Gets the width.
+ |
+| [getName()](#getName--) | Gets the layer name.
+ |
### getBitsPerPixel() {#getBitsPerPixel--}
```
public final int getBitsPerPixel()
@@ -44,8 +58,10 @@ public final int getBitsPerPixel()
Gets the bits per pixel value.
+
**Returns:**
int - The bits per pixel value.
+
### getChannelCount() {#getChannelCount--}
```
public final int getChannelCount()
@@ -54,8 +70,10 @@ public final int getChannelCount()
Gets the number of channels.
+
**Returns:**
int - The number of channels.
+
### getFlags() {#getFlags--}
```
public final PsdLayerFlags getFlags()
@@ -64,8 +82,10 @@ public final PsdLayerFlags getFlags()
Gets the layer flags.
+
**Returns:**
[PsdLayerFlags](../../com.groupdocs.metadata.core/psdlayerflags) - The flags.
+
### getLength() {#getLength--}
```
public final long getLength()
@@ -74,8 +94,10 @@ public final long getLength()
Gets the overall layer length in bytes.
+
**Returns:**
long - The overall layer length in bytes.
+
### getOpacity() {#getOpacity--}
```
public final byte getOpacity()
@@ -84,8 +106,10 @@ public final byte getOpacity()
Gets the layer opacity. 0 = transparent, 255 = opaque.
+
**Returns:**
byte - The opacity.
+
### getTop() {#getTop--}
```
public final int getTop()
@@ -94,8 +118,10 @@ public final int getTop()
Gets the top layer position.
+
**Returns:**
int - The top layer position.
+
### getLeft() {#getLeft--}
```
public final int getLeft()
@@ -104,8 +130,10 @@ public final int getLeft()
Gets the left layer position.
+
**Returns:**
int - The left layer position.
+
### getBottom() {#getBottom--}
```
public final int getBottom()
@@ -114,8 +142,10 @@ public final int getBottom()
Gets the bottom layer position.
+
**Returns:**
int - The bottom layer position.
+
### getRight() {#getRight--}
```
public final int getRight()
@@ -124,8 +154,10 @@ public final int getRight()
Gets the right layer position.
+
**Returns:**
int - The right layer position.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -134,8 +166,10 @@ public final int getHeight()
Gets the height.
+
**Returns:**
int - The height.
+
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -144,8 +178,10 @@ public final int getWidth()
Gets the width.
+
**Returns:**
int - The width.
+
### getName() {#getName--}
```
public final String getName()
@@ -154,5 +190,7 @@ public final String getName()
Gets the layer name.
+
**Returns:**
java.lang.String - The layer name.
+
diff --git a/english/java/com.groupdocs.metadata.core/psdlayerflags/_index.md b/english/java/com.groupdocs.metadata.core/psdlayerflags/_index.md
index 49f8f9df02..338b1cf9fe 100644
--- a/english/java/com.groupdocs.metadata.core/psdlayerflags/_index.md
+++ b/english/java/com.groupdocs.metadata.core/psdlayerflags/_index.md
@@ -16,17 +16,25 @@ public final class PsdLayerFlags implements IEnumValue
```
The Photoshop layer flags.
+
## Fields
| Field | Description |
| --- | --- |
-| [None](#None) | No flags are set. |
-| [TransparencyProtected](#TransparencyProtected) | The transparency protected flag. |
-| [Visible](#Visible) | The visibility flag. |
-| [Obsolete](#Obsolete) | The obsolete flag. |
-| [HasUsefulInformation](#HasUsefulInformation) | Defines if bit 4 has useful information. |
-| [PixelDataIrrelevantToAppearanceInDocument](#PixelDataIrrelevantToAppearanceInDocument) | The pixel data is irrelevant to appearance in a document. |
-| [Undocumented](#Undocumented) | An undocumented flag. |
+| [None](#None) | No flags are set.
+ |
+| [TransparencyProtected](#TransparencyProtected) | The transparency protected flag.
+ |
+| [Visible](#Visible) | The visibility flag.
+ |
+| [Obsolete](#Obsolete) | The obsolete flag.
+ |
+| [HasUsefulInformation](#HasUsefulInformation) | Defines if bit 4 has useful information.
+ |
+| [PixelDataIrrelevantToAppearanceInDocument](#PixelDataIrrelevantToAppearanceInDocument) | The pixel data is irrelevant to appearance in a document.
+ |
+| [Undocumented](#Undocumented) | An undocumented flag.
+ |
## Methods
| Method | Description |
@@ -49,6 +57,7 @@ public static final PsdLayerFlags None
No flags are set.
+
### TransparencyProtected {#TransparencyProtected}
```
public static final PsdLayerFlags TransparencyProtected
@@ -57,6 +66,7 @@ public static final PsdLayerFlags TransparencyProtected
The transparency protected flag.
+
### Visible {#Visible}
```
public static final PsdLayerFlags Visible
@@ -65,6 +75,7 @@ public static final PsdLayerFlags Visible
The visibility flag.
+
### Obsolete {#Obsolete}
```
public static final PsdLayerFlags Obsolete
@@ -73,6 +84,7 @@ public static final PsdLayerFlags Obsolete
The obsolete flag.
+
### HasUsefulInformation {#HasUsefulInformation}
```
public static final PsdLayerFlags HasUsefulInformation
@@ -81,6 +93,7 @@ public static final PsdLayerFlags HasUsefulInformation
Defines if bit 4 has useful information. 1 for Photoshop 5.0 and later,
+
### PixelDataIrrelevantToAppearanceInDocument {#PixelDataIrrelevantToAppearanceInDocument}
```
public static final PsdLayerFlags PixelDataIrrelevantToAppearanceInDocument
@@ -89,6 +102,7 @@ public static final PsdLayerFlags PixelDataIrrelevantToAppearanceInDocument
The pixel data is irrelevant to appearance in a document.
+
### Undocumented {#Undocumented}
```
public static final PsdLayerFlags Undocumented
@@ -97,6 +111,7 @@ public static final PsdLayerFlags Undocumented
An undocumented flag.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static PsdLayerFlags getByRawValue(int rawValue)
@@ -130,6 +145,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -140,6 +156,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -155,6 +172,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -170,6 +188,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -180,6 +199,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -190,6 +210,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/psdpackage/_index.md b/english/java/com.groupdocs.metadata.core/psdpackage/_index.md
index 89aea7b67c..9270c561ff 100644
--- a/english/java/com.groupdocs.metadata.core/psdpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/psdpackage/_index.md
@@ -14,23 +14,32 @@ public final class PsdPackage extends CustomPackage
Represents native Photoshop metadata.
+
**Learn more**
- * [Working with metadata in PSD images][]
+* [Working with metadata in PSD images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images)
+
+
-[Working with metadata in PSD images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images
## Methods
| Method | Description |
| --- | --- |
-| [getChannelCount()](#getChannelCount--) | Gets the number of channels. |
-| [getColorMode()](#getColorMode--) | Gets the psd color mode. |
-| [getCompression()](#getCompression--) | Gets the compression method used for image data. |
-| [getPhotoshopVersion()](#getPhotoshopVersion--) | Gets the Photoshop version. |
-| [getHeight()](#getHeight--) | Gets the height of the image. |
-| [getWidth()](#getWidth--) | Gets PSD width of the image. |
-| [getLayers()](#getLayers--) | Gets the Photoshop layers. |
+| [getChannelCount()](#getChannelCount--) | Gets the number of channels.
+ |
+| [getColorMode()](#getColorMode--) | Gets the psd color mode.
+ |
+| [getCompression()](#getCompression--) | Gets the compression method used for image data.
+ |
+| [getPhotoshopVersion()](#getPhotoshopVersion--) | Gets the Photoshop version.
+ |
+| [getHeight()](#getHeight--) | Gets the height of the image.
+ |
+| [getWidth()](#getWidth--) | Gets PSD width of the image.
+ |
+| [getLayers()](#getLayers--) | Gets the Photoshop layers.
+ |
### getChannelCount() {#getChannelCount--}
```
public final int getChannelCount()
@@ -39,8 +48,10 @@ public final int getChannelCount()
Gets the number of channels.
+
**Returns:**
int - The number of channels.
+
### getColorMode() {#getColorMode--}
```
public final PsdColorMode getColorMode()
@@ -49,8 +60,10 @@ public final PsdColorMode getColorMode()
Gets the psd color mode.
+
**Returns:**
[PsdColorMode](../../com.groupdocs.metadata.core/psdcolormode) - The color mode.
+
### getCompression() {#getCompression--}
```
public final PsdCompressionMethod getCompression()
@@ -59,8 +72,10 @@ public final PsdCompressionMethod getCompression()
Gets the compression method used for image data.
+
**Returns:**
[PsdCompressionMethod](../../com.groupdocs.metadata.core/psdcompressionmethod) - The compression method.
+
### getPhotoshopVersion() {#getPhotoshopVersion--}
```
public final int getPhotoshopVersion()
@@ -69,8 +84,10 @@ public final int getPhotoshopVersion()
Gets the Photoshop version.
+
**Returns:**
int - The photoshop version.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -79,8 +96,10 @@ public final int getHeight()
Gets the height of the image.
+
**Returns:**
int - The height of the image.
+
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -89,8 +108,10 @@ public final int getWidth()
Gets PSD width of the image.
+
**Returns:**
int - The width of the image.
+
### getLayers() {#getLayers--}
```
public final PsdLayer[] getLayers()
@@ -99,5 +120,7 @@ public final PsdLayer[] getLayers()
Gets the Photoshop layers.
+
**Returns:**
com.groupdocs.metadata.core.PsdLayer[] - The Photoshop layers.
+
diff --git a/english/java/com.groupdocs.metadata.core/psdrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/psdrootpackage/_index.md
index c634111eeb..200e6b6605 100644
--- a/english/java/com.groupdocs.metadata.core/psdrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/psdrootpackage/_index.md
@@ -17,18 +17,21 @@ public class PsdRootPackage extends ImageRootPackage implements IXmp, IIptc, IEx
Represents the root package allowing working with metadata in a Photoshop Document.
+
**Learn more**
- * [Working with metadata in PSD images][]
- * [Working with EXIF metadata][]
- * [Working with XMP metadata][]
- * [Working with IPTC IIM metadata][]
+* [Working with metadata in PSD images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images)
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
-This code sample demonstrates how to read the header of a PSD file and extract some information about the PSD layers.
+
+This code sample demonstrates how to read the header of a PSD file and extract some information about the PSD layers.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.PsdWithIptc)) {
> PsdRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getPsdPackage().getChannelCount());
@@ -48,25 +51,29 @@ This code sample demonstrates how to read the header of a PSD file and extract s
> }
>
> ```
-> ```
+> ````
-[Working with metadata in PSD images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+PSD+images
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
-| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package. |
-| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package. |
-| [getImageResourcePackage()](#getImageResourcePackage--) | Gets the Photoshop Image Resource metadata package. |
-| [getPsdPackage()](#getPsdPackage--) | Gets the metadata package containing information about the PSD file. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
+| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package.
+ |
+| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package.
+ |
+| [getImageResourcePackage()](#getImageResourcePackage--) | Gets the Photoshop Image Resource metadata package.
+ |
+| [getPsdPackage()](#getPsdPackage--) | Gets the metadata package containing information about the PSD file.
+ |
| [copyTo(MetadataPackage metadata)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | |
### getXmpPackage() {#getXmpPackage--}
```
@@ -76,15 +83,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -93,17 +103,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -113,15 +126,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -130,17 +146,20 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
### getIptcPackage() {#getIptcPackage--}
```
@@ -150,15 +169,18 @@ public final IptcRecordSet getIptcPackage()
Gets the IPTC metadata package.
+
**Returns:**
[IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) - The IPTC metadata package.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
### setIptcPackage(IptcRecordSet value) {#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-}
```
public final void setIptcPackage(IptcRecordSet value)
@@ -167,17 +189,20 @@ public final void setIptcPackage(IptcRecordSet value)
Sets the IPTC metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) | The IPTC metadata package.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata |
+ |
### getImageResourcePackage() {#getImageResourcePackage--}
```
@@ -185,10 +210,13 @@ public final ImageResourcePackage getImageResourcePackage()
```
-Gets the Photoshop Image Resource metadata package. Image resource blocks are the basic building unit of Photoshop native file format.
+Gets the Photoshop Image Resource metadata package.
+Image resource blocks are the basic building unit of Photoshop native file format.
+
**Returns:**
[ImageResourcePackage](../../com.groupdocs.metadata.core/imageresourcepackage) - The Image Resource metadata package.
+
### getPsdPackage() {#getPsdPackage--}
```
public final PsdPackage getPsdPackage()
@@ -197,8 +225,10 @@ public final PsdPackage getPsdPackage()
Gets the metadata package containing information about the PSD file.
+
**Returns:**
[PsdPackage](../../com.groupdocs.metadata.core/psdpackage) - The metadata package containing information about the PSD file.
+
### copyTo(MetadataPackage metadata) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-}
```
public void copyTo(MetadataPackage metadata)
diff --git a/english/java/com.groupdocs.metadata.core/rarfile/_index.md b/english/java/com.groupdocs.metadata.core/rarfile/_index.md
index 5822938a48..0fdc19613e 100644
--- a/english/java/com.groupdocs.metadata.core/rarfile/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rarfile/_index.md
@@ -14,19 +14,29 @@ public final class RarFile extends CustomPackage
Represents metadata associated with an archived file or directory.
---------------------
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getCompressedSize()](#getCompressedSize--) | Gets the compressed size in bytes. |
-| [getUncompressedSize()](#getUncompressedSize--) | Gets the uncompressed size in bytes. |
-| [getName()](#getName--) | Gets the entry name. |
-| [getModificationDateTime()](#getModificationDateTime--) | Gets the last modification date and time. |
+| [getCompressedSize()](#getCompressedSize--) | Gets the compressed size in bytes.
+ |
+| [getUncompressedSize()](#getUncompressedSize--) | Gets the uncompressed size in bytes.
+ |
+| [getName()](#getName--) | Gets the entry name.
+ |
+| [getModificationDateTime()](#getModificationDateTime--) | Gets the last modification date and time.
+ |
### getCompressedSize() {#getCompressedSize--}
```
public final long getCompressedSize()
@@ -34,9 +44,9 @@ public final long getCompressedSize()
Gets the compressed size in bytes.
-
Value: The compressed size in bytes.
+
**Returns:**
long
### getUncompressedSize() {#getUncompressedSize--}
@@ -46,9 +56,9 @@ public final long getUncompressedSize()
Gets the uncompressed size in bytes.
-
Value: The uncompressed size in bytes.
+
**Returns:**
long
### getName() {#getName--}
@@ -58,9 +68,9 @@ public final String getName()
Gets the entry name.
-
Value: The entry name. It can be a file or directory name.
+
**Returns:**
java.lang.String
### getModificationDateTime() {#getModificationDateTime--}
@@ -70,8 +80,8 @@ public final Date getModificationDateTime()
Gets the last modification date and time.
-
Value: The last modification date and time.
+
**Returns:**
java.util.Date
diff --git a/english/java/com.groupdocs.metadata.core/rarpackage/_index.md b/english/java/com.groupdocs.metadata.core/rarpackage/_index.md
index 2a225236b5..bb4c64c32e 100644
--- a/english/java/com.groupdocs.metadata.core/rarpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rarpackage/_index.md
@@ -14,39 +14,38 @@ public final class RarPackage extends CustomPackage
Represents ZIP archive metadata.
---------------------
+
+
+*** ** * ** ***
> ```
-> The following code snippet shows how to get metadata from a ZIP archive.
>
-> Encoding encoding = Encoding.GetEncoding(866);
-> using (Metadata metadata = new Metadata(Constants.InputRar))
-> {
-> var root = metadata.GetRootPackage();
-> Console.WriteLine(root.RarPackage.TotalEntries);
-> foreach (var file in root.RarPackage.Files)
-> {
-> Console.WriteLine(file.Name);
-> Console.WriteLine(file.CompressedSize);
-> Console.WriteLine(file.ModificationDateTime);
-> Console.WriteLine(file.UncompressedSize);
-> // Use a specific encoding for the file names
-> Console.WriteLine(encoding.GetString(file.RawName));
-> }
-> }
+> The following code snippet shows how to get metadata from a ZIP archive.
+>
+>
> ```
---------------------
+
+
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getFiles()](#getFiles--) | Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive. |
-| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive. |
+| [getFiles()](#getFiles--) | Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
+ |
+| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive.
+ |
### getFiles() {#getFiles--}
```
public final RarFile[] getFiles()
@@ -54,9 +53,9 @@ public final RarFile[] getFiles()
Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
-
Value: An array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
+
**Returns:**
com.groupdocs.metadata.core.RarFile[]
### getTotalEntries() {#getTotalEntries--}
@@ -66,8 +65,8 @@ public final long getTotalEntries()
Gets the total number of entries inside the ZIP archive.
-
Value: The total number of entries inside the ZIP archive.
+
**Returns:**
long
diff --git a/english/java/com.groupdocs.metadata.core/rarrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/rarrootpackage/_index.md
index 8b45ec76c4..60a0a75bfc 100644
--- a/english/java/com.groupdocs.metadata.core/rarrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rarrootpackage/_index.md
@@ -14,38 +14,36 @@ public class RarRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a ZIP archive.
---------------------
+
+
+*** ** * ** ***
> ```
-> The following code snippet shows how to get metadata from a ZIP archive.
>
-> Encoding encoding = Encoding.GetEncoding(866);
-> using (Metadata metadata = new Metadata(Constants.InputRar))
-> {
-> var root = metadata.GetRootPackage();
-> Console.WriteLine(root.RarPackage.TotalEntries);
-> foreach (var file in root.RarPackage.Files)
-> {
-> Console.WriteLine(file.Name);
-> Console.WriteLine(file.CompressedSize);
-> Console.WriteLine(file.ModificationDateTime);
-> Console.WriteLine(file.UncompressedSize);
-> // Use a specific encoding for the file names
-> Console.WriteLine(encoding.GetString(file.RawName));
-> }
-> }
+> The following code snippet shows how to get metadata from a ZIP archive.
+>
+>
> ```
---------------------
+
+
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getRarPackage()](#getRarPackage--) | Gets the ZIP metadata package. |
+| [getRarPackage()](#getRarPackage--) | Gets the ZIP metadata package.
+ |
### getRarPackage() {#getRarPackage--}
```
public final RarPackage getRarPackage()
@@ -53,14 +51,19 @@ public final RarPackage getRarPackage()
Gets the ZIP metadata package.
-
Value: The ZIP metadata package.
---------------------
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
**Returns:**
[RarPackage](../../com.groupdocs.metadata.core/rarpackage)
diff --git a/english/java/com.groupdocs.metadata.core/rawdictionarybasepackage/_index.md b/english/java/com.groupdocs.metadata.core/rawdictionarybasepackage/_index.md
index f2d14d32a5..9eb2765af1 100644
--- a/english/java/com.groupdocs.metadata.core/rawdictionarybasepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawdictionarybasepackage/_index.md
@@ -14,21 +14,28 @@ public abstract class RawDictionaryBasePackage extends CustomPackage
Provides an abstract base class for EXIF metadata dictionaries.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
## Methods
| Method | Description |
| --- | --- |
-| [toList()](#toList--) | Creates a list from the package. |
-| [get_Item(long tagId)](#get-Item-long-) | Gets the Raw tag with the specified id. |
-| [remove(long tagId)](#remove-long-) | Removes the property with the specified id. |
-| [set(RawTag tag)](#set-com.groupdocs.metadata.core.RawTag-) | Adds or replaces the specified tag. |
-| [clear()](#clear--) | Removes all Raw tags stored in the package. |
+| [toList()](#toList--) | Creates a list from the package.
+ |
+| [get_Item(long tagId)](#get-Item-long-) | Gets the Raw tag with the specified id.
+ |
+| [remove(long tagId)](#remove-long-) | Removes the property with the specified id.
+ |
+| [set(RawTag tag)](#set-com.groupdocs.metadata.core.RawTag-) | Adds or replaces the specified tag.
+ |
+| [clear()](#clear--) | Removes all Raw tags stored in the package.
+ |
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -37,8 +44,10 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains all Raw tags from the package.
+
### get_Item(long tagId) {#get-Item-long-}
```
public final RawTag get_Item(long tagId)
@@ -47,13 +56,16 @@ public final RawTag get_Item(long tagId)
Gets the Raw tag with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagId | long | The id of the tag to retrieve. |
+| tagId | long | The id of the tag to retrieve.
+ |
**Returns:**
[RawTag](../../com.groupdocs.metadata.core/rawtag) - The RawTag with the specified tag id.
+
### remove(long tagId) {#remove-long-}
```
public final boolean remove(long tagId)
@@ -62,13 +74,16 @@ public final boolean remove(long tagId)
Removes the property with the specified id.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagId | long | A Raw tag id. |
+| tagId | long | A Raw tag id.
+ |
**Returns:**
boolean - True if the specified Raw tag is found and removed; otherwise, false.
+
### set(RawTag tag) {#set-com.groupdocs.metadata.core.RawTag-}
```
public final void set(RawTag tag)
@@ -77,10 +92,12 @@ public final void set(RawTag tag)
Adds or replaces the specified tag.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tag | [RawTag](../../com.groupdocs.metadata.core/rawtag) | The tag to set. |
+| tag | [RawTag](../../com.groupdocs.metadata.core/rawtag) | The tag to set.
+ |
### clear() {#clear--}
```
@@ -90,3 +107,4 @@ public final void clear()
Removes all Raw tags stored in the package.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawexiftagpackage/_index.md b/english/java/com.groupdocs.metadata.core/rawexiftagpackage/_index.md
index 71e2dbb0f7..21c199e877 100644
--- a/english/java/com.groupdocs.metadata.core/rawexiftagpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawexiftagpackage/_index.md
@@ -13,93 +13,177 @@ public abstract class RawExifTagPackage extends RawDictionaryBasePackage
```
Represents Exif tags.
+
## Methods
| Method | Description |
| --- | --- |
-| [getRawMakerNotePackage()](#getRawMakerNotePackage--) | Gets the Manufacturer notes (MakerNote). |
-| [getInteroperabilityIFDPointerPackage()](#getInteroperabilityIFDPointerPackage--) | Gets the Interoperability tag (Interoperability IFD Pointer). |
-| [getInteroperabilityIFDPointer()](#getInteroperabilityIFDPointer--) | Gets the Interoperability tag (Interoperability IFD Pointer). |
-| [getExposureTime()](#getExposureTime--) | Gets the Exposure time. |
-| [getFNumber()](#getFNumber--) | Gets the F number. |
-| [getExposureProgram()](#getExposureProgram--) | Gets the Exposure program. |
-| [getSpectralSensitivity()](#getSpectralSensitivity--) | Gets the Spectral sensitivity. |
-| [getPhotographicSensitivity()](#getPhotographicSensitivity--) | Gets the Photographic Sensitivity. |
-| [getOECF()](#getOECF--) | Gets the Optoelectric conversion factor. |
-| [getSensitivityType()](#getSensitivityType--) | Gets the Sensitivity Type. |
-| [getStandardOutputSensitivity()](#getStandardOutputSensitivity--) | Gets the Standard Output Sensitivity. |
-| [getRecommendedExposureIndex()](#getRecommendedExposureIndex--) | Gets the Recommended ExposureIndexs. |
-| [getISOSpeed()](#getISOSpeed--) | Gets the ISO Speed. |
-| [getISOSpeedLatitudeyyy()](#getISOSpeedLatitudeyyy--) | Gets the ISO Speed Latitude yyy. |
-| [getISOSpeedLatitudezzz()](#getISOSpeedLatitudezzz--) | Gets the ISO Speed Latitude zzz. |
-| [getExifVersion()](#getExifVersion--) | Gets the ExifVersion. |
-| [getDateTimeOriginal()](#getDateTimeOriginal--) | Gets the Date and time of original data generation. |
-| [getDateTimeDigitized()](#getDateTimeDigitized--) | Gets the Date and time of digital data generation. |
-| [getOffsetTime()](#getOffsetTime--) | Gets the Offset data of DateTime. |
-| [getOffsetTimeOriginal()](#getOffsetTimeOriginal--) | Gets the Offset data of DateTimeOriginal. |
-| [getOffsetTimeDigitized()](#getOffsetTimeDigitized--) | Gets the Offset data of DateTimeDigitized. |
-| [getComponentsConfiguration()](#getComponentsConfiguration--) | Gets the Meaning of each component. |
-| [getShutterSpeedValue()](#getShutterSpeedValue--) | Gets the Shutter speed. |
-| [getApertureValue()](#getApertureValue--) | Gets the Aperture. |
-| [getBrightnessValue()](#getBrightnessValue--) | Gets the Brightness. |
-| [getExposureBiasValue()](#getExposureBiasValue--) | Gets the Exposure bias. |
-| [getMaxApertureValue()](#getMaxApertureValue--) | Gets the Maximum lens aperture. |
-| [getSubjectDistance()](#getSubjectDistance--) | Gets the Subject distance. |
-| [getMeteringMode()](#getMeteringMode--) | Gets the Metering mode. |
-| [getLightSource()](#getLightSource--) | Gets the Light source. |
-| [getFlash()](#getFlash--) | Gets the Flash. |
-| [getFocalLength()](#getFocalLength--) | Gets the Lens focal length. |
-| [getSubjectArea()](#getSubjectArea--) | Gets the Subject area. |
-| [getUserComment()](#getUserComment--) | Gets the User comments. |
-| [getSubSecTime()](#getSubSecTime--) | Gets the DateTime subseconds. |
-| [getSubSecTimeOriginal()](#getSubSecTimeOriginal--) | Gets the DateTimeOriginal subseconds. |
-| [getSubSecTimeDigitized()](#getSubSecTimeDigitized--) | Gets the DateTimeDigitized subseconds. |
-| [getTemperature()](#getTemperature--) | Gets the Temperature. |
-| [getHumidity()](#getHumidity--) | Gets the Humidity. |
-| [getPressure()](#getPressure--) | Gets the Pressure. |
-| [getWaterDepth()](#getWaterDepth--) | Gets the WaterDepth. |
-| [getAcceleration()](#getAcceleration--) | Gets the Acceleration. |
-| [getCameraElevationAngle()](#getCameraElevationAngle--) | Gets the Camera elevation angle. |
-| [getFlashpixVersion()](#getFlashpixVersion--) | Gets the Temperature. |
-| [getColorSpace()](#getColorSpace--) | Gets the Color space information . |
-| [getPixelXDimension()](#getPixelXDimension--) | Gets the Valid image width. |
-| [getPixelYDimension()](#getPixelYDimension--) | Gets the Valid image height. |
-| [getRelatedSoundFile()](#getRelatedSoundFile--) | Gets the Related audio file. |
-| [getFlashEnergy()](#getFlashEnergy--) | Gets the Flash energy. |
-| [getSpatialFrequencyResponse()](#getSpatialFrequencyResponse--) | Gets the Spatial frequency response. |
-| [getFocalPlaneXResolution()](#getFocalPlaneXResolution--) | Gets Focal plane X resolution. |
-| [getFocalPlaneYResolution()](#getFocalPlaneYResolution--) | Gets the Focal plane Y resolution. |
-| [getFocalPlaneResolutionUnit()](#getFocalPlaneResolutionUnit--) | Gets the Focal plane resolution unit. |
-| [getSubjectLocation()](#getSubjectLocation--) | Gets the Subject location. |
-| [getExposureIndex()](#getExposureIndex--) | Gets the Exposure index. |
-| [getSensingMethod()](#getSensingMethod--) | Gets the Sensing method. |
-| [getFileSource()](#getFileSource--) | Gets the File source. |
-| [getSceneType()](#getSceneType--) | Gets the Scene Type. |
-| [getCFAPattern()](#getCFAPattern--) | Gets the CFA pattern. |
-| [getCustomRendered()](#getCustomRendered--) | Gets the Custom image processing. |
-| [getExposureMode()](#getExposureMode--) | Gets the Exposure mode. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets the White balance. |
-| [getDigitalZoomRatio()](#getDigitalZoomRatio--) | Gets the Digital zoom ratio. |
-| [getFocalLengthIn35mmFilm()](#getFocalLengthIn35mmFilm--) | Gets the Focal length in 35 mm film. |
-| [getSceneCaptureType()](#getSceneCaptureType--) | Gets the Scene capture type. |
-| [getGainControl()](#getGainControl--) | Gets the Gain control. |
-| [getContrast()](#getContrast--) | Gets the Contrast. |
-| [getSaturation()](#getSaturation--) | Gets the Saturation. |
-| [getSharpness()](#getSharpness--) | Gets the Sharpness. |
-| [getDeviceSettingDescription()](#getDeviceSettingDescription--) | Gets the Device settings description. |
-| [getSubjectDistanceRange()](#getSubjectDistanceRange--) | Gets the Subject distance range. |
-| [getImageUniqueID()](#getImageUniqueID--) | Gets the Unique image ID. |
-| [getCameraOwnerName()](#getCameraOwnerName--) | Gets the Camera Owner Name. |
-| [getBodySerialNumber()](#getBodySerialNumber--) | Gets the Body Serial Number. |
-| [getLensSpecification()](#getLensSpecification--) | Gets the Lens Specification. |
-| [getLensModel()](#getLensModel--) | Gets the Lens Model. |
-| [getLensMake()](#getLensMake--) | Gets the Lens Make. |
-| [getLensSerialNumber()](#getLensSerialNumber--) | Gets the Lens Serial Number. |
-| [getCompositeImage()](#getCompositeImage--) | Gets the Composite image. |
-| [getSourceImageNumberOfCompositeImage()](#getSourceImageNumberOfCompositeImage--) | Gets the Source image number of composite image. |
-| [getSourceExposureTimesOfCompositeImage()](#getSourceExposureTimesOfCompositeImage--) | Gets the Source exposure times of composite image. |
-| [getGamma()](#getGamma--) | Gets the Gamma. |
-| [getMakerNote()](#getMakerNote--) | Gets the Standard Output Sensitivity. |
+| [getRawMakerNotePackage()](#getRawMakerNotePackage--) | Gets the Manufacturer notes (MakerNote).
+ |
+| [getInteroperabilityIFDPointerPackage()](#getInteroperabilityIFDPointerPackage--) | Gets the Interoperability tag (Interoperability IFD Pointer).
+ |
+| [getInteroperabilityIFDPointer()](#getInteroperabilityIFDPointer--) | Gets the Interoperability tag (Interoperability IFD Pointer).
+ |
+| [getExposureTime()](#getExposureTime--) | Gets the Exposure time.
+ |
+| [getFNumber()](#getFNumber--) | Gets the F number.
+ |
+| [getExposureProgram()](#getExposureProgram--) | Gets the Exposure program.
+ |
+| [getSpectralSensitivity()](#getSpectralSensitivity--) | Gets the Spectral sensitivity.
+ |
+| [getPhotographicSensitivity()](#getPhotographicSensitivity--) | Gets the Photographic Sensitivity.
+ |
+| [getOECF()](#getOECF--) | Gets the Optoelectric conversion factor.
+ |
+| [getSensitivityType()](#getSensitivityType--) | Gets the Sensitivity Type.
+ |
+| [getStandardOutputSensitivity()](#getStandardOutputSensitivity--) | Gets the Standard Output Sensitivity.
+ |
+| [getRecommendedExposureIndex()](#getRecommendedExposureIndex--) | Gets the Recommended ExposureIndexs.
+ |
+| [getISOSpeed()](#getISOSpeed--) | Gets the ISO Speed.
+ |
+| [getISOSpeedLatitudeyyy()](#getISOSpeedLatitudeyyy--) | Gets the ISO Speed Latitude yyy.
+ |
+| [getISOSpeedLatitudezzz()](#getISOSpeedLatitudezzz--) | Gets the ISO Speed Latitude zzz.
+ |
+| [getExifVersion()](#getExifVersion--) | Gets the ExifVersion.
+ |
+| [getDateTimeOriginal()](#getDateTimeOriginal--) | Gets the Date and time of original data generation.
+ |
+| [getDateTimeDigitized()](#getDateTimeDigitized--) | Gets the Date and time of digital data generation.
+ |
+| [getOffsetTime()](#getOffsetTime--) | Gets the Offset data of DateTime.
+ |
+| [getOffsetTimeOriginal()](#getOffsetTimeOriginal--) | Gets the Offset data of DateTimeOriginal.
+ |
+| [getOffsetTimeDigitized()](#getOffsetTimeDigitized--) | Gets the Offset data of DateTimeDigitized.
+ |
+| [getComponentsConfiguration()](#getComponentsConfiguration--) | Gets the Meaning of each component.
+ |
+| [getShutterSpeedValue()](#getShutterSpeedValue--) | Gets the Shutter speed.
+ |
+| [getApertureValue()](#getApertureValue--) | Gets the Aperture.
+ |
+| [getBrightnessValue()](#getBrightnessValue--) | Gets the Brightness.
+ |
+| [getExposureBiasValue()](#getExposureBiasValue--) | Gets the Exposure bias.
+ |
+| [getMaxApertureValue()](#getMaxApertureValue--) | Gets the Maximum lens aperture.
+ |
+| [getSubjectDistance()](#getSubjectDistance--) | Gets the Subject distance.
+ |
+| [getMeteringMode()](#getMeteringMode--) | Gets the Metering mode.
+ |
+| [getLightSource()](#getLightSource--) | Gets the Light source.
+ |
+| [getFlash()](#getFlash--) | Gets the Flash.
+ |
+| [getFocalLength()](#getFocalLength--) | Gets the Lens focal length.
+ |
+| [getSubjectArea()](#getSubjectArea--) | Gets the Subject area.
+ |
+| [getUserComment()](#getUserComment--) | Gets the User comments.
+ |
+| [getSubSecTime()](#getSubSecTime--) | Gets the DateTime subseconds.
+ |
+| [getSubSecTimeOriginal()](#getSubSecTimeOriginal--) | Gets the DateTimeOriginal subseconds.
+ |
+| [getSubSecTimeDigitized()](#getSubSecTimeDigitized--) | Gets the DateTimeDigitized subseconds.
+ |
+| [getTemperature()](#getTemperature--) | Gets the Temperature.
+ |
+| [getHumidity()](#getHumidity--) | Gets the Humidity.
+ |
+| [getPressure()](#getPressure--) | Gets the Pressure.
+ |
+| [getWaterDepth()](#getWaterDepth--) | Gets the WaterDepth.
+ |
+| [getAcceleration()](#getAcceleration--) | Gets the Acceleration.
+ |
+| [getCameraElevationAngle()](#getCameraElevationAngle--) | Gets the Camera elevation angle.
+ |
+| [getFlashpixVersion()](#getFlashpixVersion--) | Gets the Temperature.
+ |
+| [getColorSpace()](#getColorSpace--) | Gets the Color space information .
+ |
+| [getPixelXDimension()](#getPixelXDimension--) | Gets the Valid image width.
+ |
+| [getPixelYDimension()](#getPixelYDimension--) | Gets the Valid image height.
+ |
+| [getRelatedSoundFile()](#getRelatedSoundFile--) | Gets the Related audio file.
+ |
+| [getFlashEnergy()](#getFlashEnergy--) | Gets the Flash energy.
+ |
+| [getSpatialFrequencyResponse()](#getSpatialFrequencyResponse--) | Gets the Spatial frequency response.
+ |
+| [getFocalPlaneXResolution()](#getFocalPlaneXResolution--) | Gets Focal plane X resolution.
+ |
+| [getFocalPlaneYResolution()](#getFocalPlaneYResolution--) | Gets the Focal plane Y resolution.
+ |
+| [getFocalPlaneResolutionUnit()](#getFocalPlaneResolutionUnit--) | Gets the Focal plane resolution unit.
+ |
+| [getSubjectLocation()](#getSubjectLocation--) | Gets the Subject location.
+ |
+| [getExposureIndex()](#getExposureIndex--) | Gets the Exposure index.
+ |
+| [getSensingMethod()](#getSensingMethod--) | Gets the Sensing method.
+ |
+| [getFileSource()](#getFileSource--) | Gets the File source.
+ |
+| [getSceneType()](#getSceneType--) | Gets the Scene Type.
+ |
+| [getCFAPattern()](#getCFAPattern--) | Gets the CFA pattern.
+ |
+| [getCustomRendered()](#getCustomRendered--) | Gets the Custom image processing.
+ |
+| [getExposureMode()](#getExposureMode--) | Gets the Exposure mode.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets the White balance.
+ |
+| [getDigitalZoomRatio()](#getDigitalZoomRatio--) | Gets the Digital zoom ratio.
+ |
+| [getFocalLengthIn35mmFilm()](#getFocalLengthIn35mmFilm--) | Gets the Focal length in 35 mm film.
+ |
+| [getSceneCaptureType()](#getSceneCaptureType--) | Gets the Scene capture type.
+ |
+| [getGainControl()](#getGainControl--) | Gets the Gain control.
+ |
+| [getContrast()](#getContrast--) | Gets the Contrast.
+ |
+| [getSaturation()](#getSaturation--) | Gets the Saturation.
+ |
+| [getSharpness()](#getSharpness--) | Gets the Sharpness.
+ |
+| [getDeviceSettingDescription()](#getDeviceSettingDescription--) | Gets the Device settings description.
+ |
+| [getSubjectDistanceRange()](#getSubjectDistanceRange--) | Gets the Subject distance range.
+ |
+| [getImageUniqueID()](#getImageUniqueID--) | Gets the Unique image ID.
+ |
+| [getCameraOwnerName()](#getCameraOwnerName--) | Gets the Camera Owner Name.
+ |
+| [getBodySerialNumber()](#getBodySerialNumber--) | Gets the Body Serial Number.
+ |
+| [getLensSpecification()](#getLensSpecification--) | Gets the Lens Specification.
+ |
+| [getLensModel()](#getLensModel--) | Gets the Lens Model.
+ |
+| [getLensMake()](#getLensMake--) | Gets the Lens Make.
+ |
+| [getLensSerialNumber()](#getLensSerialNumber--) | Gets the Lens Serial Number.
+ |
+| [getCompositeImage()](#getCompositeImage--) | Gets the Composite image.
+ |
+| [getSourceImageNumberOfCompositeImage()](#getSourceImageNumberOfCompositeImage--) | Gets the Source image number of composite image.
+ |
+| [getSourceExposureTimesOfCompositeImage()](#getSourceExposureTimesOfCompositeImage--) | Gets the Source exposure times of composite image.
+ |
+| [getGamma()](#getGamma--) | Gets the Gamma.
+ |
+| [getMakerNote()](#getMakerNote--) | Gets the Standard Output Sensitivity.
+ |
### getRawMakerNotePackage() {#getRawMakerNotePackage--}
```
public RawMakerNotePackage getRawMakerNotePackage()
@@ -108,8 +192,10 @@ public RawMakerNotePackage getRawMakerNotePackage()
Gets the Manufacturer notes (MakerNote).
+
**Returns:**
[RawMakerNotePackage](../../com.groupdocs.metadata.core/rawmakernotepackage) - The Manufacturer notes (MakerNote).
+
### getInteroperabilityIFDPointerPackage() {#getInteroperabilityIFDPointerPackage--}
```
public final InteroperabilityIFDPointerPackage getInteroperabilityIFDPointerPackage()
@@ -118,8 +204,10 @@ public final InteroperabilityIFDPointerPackage getInteroperabilityIFDPointerPack
Gets the Interoperability tag (Interoperability IFD Pointer).
+
**Returns:**
[InteroperabilityIFDPointerPackage](../../com.groupdocs.metadata.core/interoperabilityifdpointerpackage) - The Interoperability tag (Interoperability IFD Pointer).
+
### getInteroperabilityIFDPointer() {#getInteroperabilityIFDPointer--}
```
public final long getInteroperabilityIFDPointer()
@@ -128,8 +216,10 @@ public final long getInteroperabilityIFDPointer()
Gets the Interoperability tag (Interoperability IFD Pointer).
+
**Returns:**
long - The Interoperability tag (Interoperability IFD Pointer).
+
### getExposureTime() {#getExposureTime--}
```
public final float getExposureTime()
@@ -138,8 +228,10 @@ public final float getExposureTime()
Gets the Exposure time.
+
**Returns:**
float - The Exposure time.
+
### getFNumber() {#getFNumber--}
```
public final float getFNumber()
@@ -148,8 +240,10 @@ public final float getFNumber()
Gets the F number.
+
**Returns:**
float - The F number.
+
### getExposureProgram() {#getExposureProgram--}
```
public final int getExposureProgram()
@@ -158,8 +252,10 @@ public final int getExposureProgram()
Gets the Exposure program.
+
**Returns:**
int - The Exposure program.
+
### getSpectralSensitivity() {#getSpectralSensitivity--}
```
public final String getSpectralSensitivity()
@@ -168,8 +264,10 @@ public final String getSpectralSensitivity()
Gets the Spectral sensitivity.
+
**Returns:**
java.lang.String - The Spectral sensitivity.
+
### getPhotographicSensitivity() {#getPhotographicSensitivity--}
```
public final int getPhotographicSensitivity()
@@ -178,8 +276,10 @@ public final int getPhotographicSensitivity()
Gets the Photographic Sensitivity.
+
**Returns:**
int - The Photographic Sensitivity.
+
### getOECF() {#getOECF--}
```
public final byte[] getOECF()
@@ -188,8 +288,10 @@ public final byte[] getOECF()
Gets the Optoelectric conversion factor.
+
**Returns:**
byte[] - The Optoelectric conversion factor.
+
### getSensitivityType() {#getSensitivityType--}
```
public final int getSensitivityType()
@@ -198,8 +300,10 @@ public final int getSensitivityType()
Gets the Sensitivity Type.
+
**Returns:**
int - The Sensitivity Type.
+
### getStandardOutputSensitivity() {#getStandardOutputSensitivity--}
```
public final long getStandardOutputSensitivity()
@@ -208,8 +312,10 @@ public final long getStandardOutputSensitivity()
Gets the Standard Output Sensitivity.
+
**Returns:**
long - The Standard Output Sensitivity.
+
### getRecommendedExposureIndex() {#getRecommendedExposureIndex--}
```
public final long getRecommendedExposureIndex()
@@ -218,8 +324,10 @@ public final long getRecommendedExposureIndex()
Gets the Recommended ExposureIndexs.
+
**Returns:**
long - The Recommended ExposureIndex.
+
### getISOSpeed() {#getISOSpeed--}
```
public final long getISOSpeed()
@@ -228,8 +336,10 @@ public final long getISOSpeed()
Gets the ISO Speed.
+
**Returns:**
long - The ISO Speed.
+
### getISOSpeedLatitudeyyy() {#getISOSpeedLatitudeyyy--}
```
public final long getISOSpeedLatitudeyyy()
@@ -238,8 +348,10 @@ public final long getISOSpeedLatitudeyyy()
Gets the ISO Speed Latitude yyy.
+
**Returns:**
long - The ISO Speed Latitude yyy.
+
### getISOSpeedLatitudezzz() {#getISOSpeedLatitudezzz--}
```
public final long getISOSpeedLatitudezzz()
@@ -248,8 +360,10 @@ public final long getISOSpeedLatitudezzz()
Gets the ISO Speed Latitude zzz.
+
**Returns:**
long - The ISO Speed Latitude zzz.
+
### getExifVersion() {#getExifVersion--}
```
public final byte[] getExifVersion()
@@ -258,8 +372,10 @@ public final byte[] getExifVersion()
Gets the ExifVersion.
+
**Returns:**
byte[] - The ExifVersion.
+
### getDateTimeOriginal() {#getDateTimeOriginal--}
```
public final String getDateTimeOriginal()
@@ -268,8 +384,10 @@ public final String getDateTimeOriginal()
Gets the Date and time of original data generation.
+
**Returns:**
java.lang.String - The Date and time of original data generation.
+
### getDateTimeDigitized() {#getDateTimeDigitized--}
```
public final String getDateTimeDigitized()
@@ -278,8 +396,10 @@ public final String getDateTimeDigitized()
Gets the Date and time of digital data generation.
+
**Returns:**
java.lang.String - The Date and time of digital data generation.
+
### getOffsetTime() {#getOffsetTime--}
```
public final String getOffsetTime()
@@ -288,8 +408,10 @@ public final String getOffsetTime()
Gets the Offset data of DateTime.
+
**Returns:**
java.lang.String - The Offset data of DateTime.
+
### getOffsetTimeOriginal() {#getOffsetTimeOriginal--}
```
public final String getOffsetTimeOriginal()
@@ -298,8 +420,10 @@ public final String getOffsetTimeOriginal()
Gets the Offset data of DateTimeOriginal.
+
**Returns:**
java.lang.String - The Offset data of DateTimeOriginal.
+
### getOffsetTimeDigitized() {#getOffsetTimeDigitized--}
```
public final String getOffsetTimeDigitized()
@@ -308,8 +432,10 @@ public final String getOffsetTimeDigitized()
Gets the Offset data of DateTimeDigitized.
+
**Returns:**
java.lang.String - The Offset data of DateTimeDigitized.
+
### getComponentsConfiguration() {#getComponentsConfiguration--}
```
public final byte[] getComponentsConfiguration()
@@ -318,8 +444,10 @@ public final byte[] getComponentsConfiguration()
Gets the Meaning of each component.
+
**Returns:**
byte[] - The Meaning of each component.
+
### getShutterSpeedValue() {#getShutterSpeedValue--}
```
public final float getShutterSpeedValue()
@@ -328,8 +456,10 @@ public final float getShutterSpeedValue()
Gets the Shutter speed.
+
**Returns:**
float - The Shutter speed.
+
### getApertureValue() {#getApertureValue--}
```
public final float getApertureValue()
@@ -338,8 +468,10 @@ public final float getApertureValue()
Gets the Aperture.
+
**Returns:**
float - The Aperture.
+
### getBrightnessValue() {#getBrightnessValue--}
```
public final float getBrightnessValue()
@@ -348,8 +480,10 @@ public final float getBrightnessValue()
Gets the Brightness.
+
**Returns:**
float - The Brightness.
+
### getExposureBiasValue() {#getExposureBiasValue--}
```
public final float getExposureBiasValue()
@@ -358,8 +492,10 @@ public final float getExposureBiasValue()
Gets the Exposure bias.
+
**Returns:**
float - The Exposure bias.
+
### getMaxApertureValue() {#getMaxApertureValue--}
```
public final float getMaxApertureValue()
@@ -368,8 +504,10 @@ public final float getMaxApertureValue()
Gets the Maximum lens aperture.
+
**Returns:**
float - The Maximum lens aperture.
+
### getSubjectDistance() {#getSubjectDistance--}
```
public final float getSubjectDistance()
@@ -378,8 +516,10 @@ public final float getSubjectDistance()
Gets the Subject distance.
+
**Returns:**
float - The Subject distance.
+
### getMeteringMode() {#getMeteringMode--}
```
public final int getMeteringMode()
@@ -388,8 +528,10 @@ public final int getMeteringMode()
Gets the Metering mode.
+
**Returns:**
int - The Metering mode.
+
### getLightSource() {#getLightSource--}
```
public final int getLightSource()
@@ -398,8 +540,10 @@ public final int getLightSource()
Gets the Light source.
+
**Returns:**
int - The Light source.
+
### getFlash() {#getFlash--}
```
public final int getFlash()
@@ -408,8 +552,10 @@ public final int getFlash()
Gets the Flash.
+
**Returns:**
int - The Flash.
+
### getFocalLength() {#getFocalLength--}
```
public final float getFocalLength()
@@ -418,8 +564,10 @@ public final float getFocalLength()
Gets the Lens focal length.
+
**Returns:**
float - The Lens focal length.
+
### getSubjectArea() {#getSubjectArea--}
```
public final int getSubjectArea()
@@ -428,8 +576,10 @@ public final int getSubjectArea()
Gets the Subject area.
+
**Returns:**
int - The Subject area.
+
### getUserComment() {#getUserComment--}
```
public final byte[] getUserComment()
@@ -438,8 +588,10 @@ public final byte[] getUserComment()
Gets the User comments.
+
**Returns:**
byte[] - The User comments.
+
### getSubSecTime() {#getSubSecTime--}
```
public final String getSubSecTime()
@@ -448,8 +600,10 @@ public final String getSubSecTime()
Gets the DateTime subseconds.
+
**Returns:**
java.lang.String - The DateTime subseconds.
+
### getSubSecTimeOriginal() {#getSubSecTimeOriginal--}
```
public final String getSubSecTimeOriginal()
@@ -458,8 +612,10 @@ public final String getSubSecTimeOriginal()
Gets the DateTimeOriginal subseconds.
+
**Returns:**
java.lang.String - The DateTimeOriginal subseconds.
+
### getSubSecTimeDigitized() {#getSubSecTimeDigitized--}
```
public final String getSubSecTimeDigitized()
@@ -468,8 +624,10 @@ public final String getSubSecTimeDigitized()
Gets the DateTimeDigitized subseconds.
+
**Returns:**
java.lang.String - The DateTimeDigitized subseconds.
+
### getTemperature() {#getTemperature--}
```
public final float getTemperature()
@@ -478,8 +636,10 @@ public final float getTemperature()
Gets the Temperature.
+
**Returns:**
float - The Temperature.
+
### getHumidity() {#getHumidity--}
```
public final float getHumidity()
@@ -488,8 +648,10 @@ public final float getHumidity()
Gets the Humidity.
+
**Returns:**
float - The Humidity.
+
### getPressure() {#getPressure--}
```
public final float getPressure()
@@ -498,8 +660,10 @@ public final float getPressure()
Gets the Pressure.
+
**Returns:**
float - The Pressure.
+
### getWaterDepth() {#getWaterDepth--}
```
public final float getWaterDepth()
@@ -508,8 +672,10 @@ public final float getWaterDepth()
Gets the WaterDepth.
+
**Returns:**
float - The WaterDepth.
+
### getAcceleration() {#getAcceleration--}
```
public final float getAcceleration()
@@ -518,8 +684,10 @@ public final float getAcceleration()
Gets the Acceleration.
+
**Returns:**
float - The Acceleration.
+
### getCameraElevationAngle() {#getCameraElevationAngle--}
```
public final float getCameraElevationAngle()
@@ -528,8 +696,10 @@ public final float getCameraElevationAngle()
Gets the Camera elevation angle.
+
**Returns:**
float - The Camera elevation angle.
+
### getFlashpixVersion() {#getFlashpixVersion--}
```
public final byte[] getFlashpixVersion()
@@ -538,8 +708,10 @@ public final byte[] getFlashpixVersion()
Gets the Temperature.
+
**Returns:**
byte[] - The Temperature.
+
### getColorSpace() {#getColorSpace--}
```
public final int getColorSpace()
@@ -548,8 +720,10 @@ public final int getColorSpace()
Gets the Color space information .
+
**Returns:**
int - The Color space information .
+
### getPixelXDimension() {#getPixelXDimension--}
```
public final long getPixelXDimension()
@@ -558,8 +732,10 @@ public final long getPixelXDimension()
Gets the Valid image width.
+
**Returns:**
long - The Valid image width.
+
### getPixelYDimension() {#getPixelYDimension--}
```
public final long getPixelYDimension()
@@ -568,8 +744,10 @@ public final long getPixelYDimension()
Gets the Valid image height.
+
**Returns:**
long - The Valid image height.
+
### getRelatedSoundFile() {#getRelatedSoundFile--}
```
public final String getRelatedSoundFile()
@@ -578,8 +756,10 @@ public final String getRelatedSoundFile()
Gets the Related audio file.
+
**Returns:**
java.lang.String - The Related audio file.
+
### getFlashEnergy() {#getFlashEnergy--}
```
public final float getFlashEnergy()
@@ -588,8 +768,10 @@ public final float getFlashEnergy()
Gets the Flash energy.
+
**Returns:**
float - The Flash energy.
+
### getSpatialFrequencyResponse() {#getSpatialFrequencyResponse--}
```
public final byte[] getSpatialFrequencyResponse()
@@ -598,8 +780,10 @@ public final byte[] getSpatialFrequencyResponse()
Gets the Spatial frequency response.
+
**Returns:**
byte[] - The Spatial frequency response.
+
### getFocalPlaneXResolution() {#getFocalPlaneXResolution--}
```
public final float getFocalPlaneXResolution()
@@ -608,8 +792,10 @@ public final float getFocalPlaneXResolution()
Gets Focal plane X resolution.
+
**Returns:**
float - The Focal plane X resolution.
+
### getFocalPlaneYResolution() {#getFocalPlaneYResolution--}
```
public final float getFocalPlaneYResolution()
@@ -618,8 +804,10 @@ public final float getFocalPlaneYResolution()
Gets the Focal plane Y resolution.
+
**Returns:**
float - The Focal plane Y resolution.
+
### getFocalPlaneResolutionUnit() {#getFocalPlaneResolutionUnit--}
```
public final int getFocalPlaneResolutionUnit()
@@ -628,8 +816,10 @@ public final int getFocalPlaneResolutionUnit()
Gets the Focal plane resolution unit.
+
**Returns:**
int - The Focal plane resolution unit.
+
### getSubjectLocation() {#getSubjectLocation--}
```
public final int getSubjectLocation()
@@ -638,8 +828,10 @@ public final int getSubjectLocation()
Gets the Subject location.
+
**Returns:**
int - The Subject location.
+
### getExposureIndex() {#getExposureIndex--}
```
public final float getExposureIndex()
@@ -648,8 +840,10 @@ public final float getExposureIndex()
Gets the Exposure index.
+
**Returns:**
float - The Exposure index.
+
### getSensingMethod() {#getSensingMethod--}
```
public final int getSensingMethod()
@@ -658,8 +852,10 @@ public final int getSensingMethod()
Gets the Sensing method.
+
**Returns:**
int - The Sensing method.
+
### getFileSource() {#getFileSource--}
```
public final byte[] getFileSource()
@@ -668,8 +864,10 @@ public final byte[] getFileSource()
Gets the File source.
+
**Returns:**
byte[] - The File source.
+
### getSceneType() {#getSceneType--}
```
public final byte[] getSceneType()
@@ -678,8 +876,10 @@ public final byte[] getSceneType()
Gets the Scene Type.
+
**Returns:**
byte[] - The Scene Type.
+
### getCFAPattern() {#getCFAPattern--}
```
public final byte[] getCFAPattern()
@@ -688,8 +888,10 @@ public final byte[] getCFAPattern()
Gets the CFA pattern.
+
**Returns:**
byte[] - The CFA pattern.
+
### getCustomRendered() {#getCustomRendered--}
```
public final int getCustomRendered()
@@ -698,8 +900,10 @@ public final int getCustomRendered()
Gets the Custom image processing.
+
**Returns:**
int - The Custom image processing.
+
### getExposureMode() {#getExposureMode--}
```
public final int getExposureMode()
@@ -708,8 +912,10 @@ public final int getExposureMode()
Gets the Exposure mode.
+
**Returns:**
int - The Exposure mode.
+
### getWhiteBalance() {#getWhiteBalance--}
```
public final int getWhiteBalance()
@@ -718,8 +924,10 @@ public final int getWhiteBalance()
Gets the White balance.
+
**Returns:**
int - The White balance.
+
### getDigitalZoomRatio() {#getDigitalZoomRatio--}
```
public final float getDigitalZoomRatio()
@@ -728,8 +936,10 @@ public final float getDigitalZoomRatio()
Gets the Digital zoom ratio.
+
**Returns:**
float - The Digital zoom ratio.
+
### getFocalLengthIn35mmFilm() {#getFocalLengthIn35mmFilm--}
```
public final int getFocalLengthIn35mmFilm()
@@ -738,8 +948,10 @@ public final int getFocalLengthIn35mmFilm()
Gets the Focal length in 35 mm film.
+
**Returns:**
int - The Focal length in 35 mm film.
+
### getSceneCaptureType() {#getSceneCaptureType--}
```
public final int getSceneCaptureType()
@@ -748,8 +960,10 @@ public final int getSceneCaptureType()
Gets the Scene capture type.
+
**Returns:**
int - The Scene capture type.
+
### getGainControl() {#getGainControl--}
```
public final float getGainControl()
@@ -758,8 +972,10 @@ public final float getGainControl()
Gets the Gain control.
+
**Returns:**
float - The Gain control.
+
### getContrast() {#getContrast--}
```
public final int getContrast()
@@ -768,8 +984,10 @@ public final int getContrast()
Gets the Contrast.
+
**Returns:**
int - The Contrast.
+
### getSaturation() {#getSaturation--}
```
public final int getSaturation()
@@ -778,8 +996,10 @@ public final int getSaturation()
Gets the Saturation.
+
**Returns:**
int - The Saturation.
+
### getSharpness() {#getSharpness--}
```
public final int getSharpness()
@@ -788,8 +1008,10 @@ public final int getSharpness()
Gets the Sharpness.
+
**Returns:**
int - The Sharpness.
+
### getDeviceSettingDescription() {#getDeviceSettingDescription--}
```
public final byte[] getDeviceSettingDescription()
@@ -798,8 +1020,10 @@ public final byte[] getDeviceSettingDescription()
Gets the Device settings description.
+
**Returns:**
byte[] - The Device settings description.
+
### getSubjectDistanceRange() {#getSubjectDistanceRange--}
```
public final int getSubjectDistanceRange()
@@ -808,8 +1032,10 @@ public final int getSubjectDistanceRange()
Gets the Subject distance range.
+
**Returns:**
int - The Subject distance range.
+
### getImageUniqueID() {#getImageUniqueID--}
```
public final String getImageUniqueID()
@@ -818,8 +1044,10 @@ public final String getImageUniqueID()
Gets the Unique image ID.
+
**Returns:**
java.lang.String - The Unique image ID.
+
### getCameraOwnerName() {#getCameraOwnerName--}
```
public final String getCameraOwnerName()
@@ -828,8 +1056,10 @@ public final String getCameraOwnerName()
Gets the Camera Owner Name.
+
**Returns:**
java.lang.String - The Camera Owner Name.
+
### getBodySerialNumber() {#getBodySerialNumber--}
```
public final String getBodySerialNumber()
@@ -838,8 +1068,10 @@ public final String getBodySerialNumber()
Gets the Body Serial Number.
+
**Returns:**
java.lang.String - The Body Serial Number.
+
### getLensSpecification() {#getLensSpecification--}
```
public final double[] getLensSpecification()
@@ -848,8 +1080,10 @@ public final double[] getLensSpecification()
Gets the Lens Specification.
+
**Returns:**
double[] - The Lens Specification.
+
### getLensModel() {#getLensModel--}
```
public final String getLensModel()
@@ -858,8 +1092,10 @@ public final String getLensModel()
Gets the Lens Model.
+
**Returns:**
java.lang.String - The Lens Model.
+
### getLensMake() {#getLensMake--}
```
public final String getLensMake()
@@ -868,8 +1104,10 @@ public final String getLensMake()
Gets the Lens Make.
+
**Returns:**
java.lang.String - The Lens Make.
+
### getLensSerialNumber() {#getLensSerialNumber--}
```
public final String getLensSerialNumber()
@@ -878,8 +1116,10 @@ public final String getLensSerialNumber()
Gets the Lens Serial Number.
+
**Returns:**
java.lang.String - The Lens Serial Number.
+
### getCompositeImage() {#getCompositeImage--}
```
public final int getCompositeImage()
@@ -888,8 +1128,10 @@ public final int getCompositeImage()
Gets the Composite image.
+
**Returns:**
int - The Composite image.
+
### getSourceImageNumberOfCompositeImage() {#getSourceImageNumberOfCompositeImage--}
```
public final int getSourceImageNumberOfCompositeImage()
@@ -898,8 +1140,10 @@ public final int getSourceImageNumberOfCompositeImage()
Gets the Source image number of composite image.
+
**Returns:**
int - The Source image number of composite image.
+
### getSourceExposureTimesOfCompositeImage() {#getSourceExposureTimesOfCompositeImage--}
```
public final byte[] getSourceExposureTimesOfCompositeImage()
@@ -908,8 +1152,10 @@ public final byte[] getSourceExposureTimesOfCompositeImage()
Gets the Source exposure times of composite image.
+
**Returns:**
byte[] - The Source exposure times of composite image.
+
### getGamma() {#getGamma--}
```
public final float getGamma()
@@ -918,8 +1164,10 @@ public final float getGamma()
Gets the Gamma.
+
**Returns:**
float - The Gamma.
+
### getMakerNote() {#getMakerNote--}
```
public final long getMakerNote()
@@ -928,5 +1176,7 @@ public final long getMakerNote()
Gets the Standard Output Sensitivity.
+
**Returns:**
long - The Standard Output Sensitivity.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawifd1package/_index.md b/english/java/com.groupdocs.metadata.core/rawifd1package/_index.md
index 60a7c86149..bffcb2450a 100644
--- a/english/java/com.groupdocs.metadata.core/rawifd1package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawifd1package/_index.md
@@ -13,12 +13,15 @@ public final class RawIFD1Package extends RawDictionaryBasePackage
```
Represents IFD1 tags.
+
## Methods
| Method | Description |
| --- | --- |
-| [getThumbnailOffset()](#getThumbnailOffset--) | Gets the ThumbnailOffset. |
-| [getThumbnailLenght()](#getThumbnailLenght--) | Gets the ThumbnailLenght. |
+| [getThumbnailOffset()](#getThumbnailOffset--) | Gets the ThumbnailOffset.
+ |
+| [getThumbnailLenght()](#getThumbnailLenght--) | Gets the ThumbnailLenght.
+ |
### getThumbnailOffset() {#getThumbnailOffset--}
```
public final long getThumbnailOffset()
@@ -27,8 +30,10 @@ public final long getThumbnailOffset()
Gets the ThumbnailOffset.
+
**Returns:**
long - The ThumbnailOffset.
+
### getThumbnailLenght() {#getThumbnailLenght--}
```
public final long getThumbnailLenght()
@@ -37,5 +42,7 @@ public final long getThumbnailLenght()
Gets the ThumbnailLenght.
+
**Returns:**
long - The ThumbnailLenght.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawifd2package/_index.md b/english/java/com.groupdocs.metadata.core/rawifd2package/_index.md
index ecb24cb053..42dab5b892 100644
--- a/english/java/com.groupdocs.metadata.core/rawifd2package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawifd2package/_index.md
@@ -13,23 +13,37 @@ public final class RawIFD2Package extends RawDictionaryBasePackage
```
Represents IFD1 tags.
+
## Methods
| Method | Description |
| --- | --- |
-| [getImageWidth()](#getImageWidth--) | Gets the image width. |
-| [getImageHeight()](#getImageHeight--) | Gets the image height. |
-| [getBitsPerSample()](#getBitsPerSample--) | Gets the image BitsPerSample. |
-| [getCompression()](#getCompression--) | Gets the image Compression. |
-| [getPhotometricInterpretation()](#getPhotometricInterpretation--) | Gets the image PhotometricInterpretation. |
-| [getStripOffset()](#getStripOffset--) | Gets the image StripOffset. |
-| [getSamplesPerPixel()](#getSamplesPerPixel--) | Gets the SamplesPerPixel. |
-| [getRowPerStrip()](#getRowPerStrip--) | Gets the RowPerStrip. |
-| [getStripByteCounts()](#getStripByteCounts--) | Gets the StripByteCounts. |
-| [getPlanarConfiguration()](#getPlanarConfiguration--) | Gets the PlanarConfiguration. |
-| [getUnknown1()](#getUnknown1--) | Gets the Unknown1. |
-| [getUnknown2()](#getUnknown2--) | Gets the Unknown2. |
-| [getUnknown3()](#getUnknown3--) | Gets the Unknown3. |
+| [getImageWidth()](#getImageWidth--) | Gets the image width.
+ |
+| [getImageHeight()](#getImageHeight--) | Gets the image height.
+ |
+| [getBitsPerSample()](#getBitsPerSample--) | Gets the image BitsPerSample.
+ |
+| [getCompression()](#getCompression--) | Gets the image Compression.
+ |
+| [getPhotometricInterpretation()](#getPhotometricInterpretation--) | Gets the image PhotometricInterpretation.
+ |
+| [getStripOffset()](#getStripOffset--) | Gets the image StripOffset.
+ |
+| [getSamplesPerPixel()](#getSamplesPerPixel--) | Gets the SamplesPerPixel.
+ |
+| [getRowPerStrip()](#getRowPerStrip--) | Gets the RowPerStrip.
+ |
+| [getStripByteCounts()](#getStripByteCounts--) | Gets the StripByteCounts.
+ |
+| [getPlanarConfiguration()](#getPlanarConfiguration--) | Gets the PlanarConfiguration.
+ |
+| [getUnknown1()](#getUnknown1--) | Gets the Unknown1.
+ |
+| [getUnknown2()](#getUnknown2--) | Gets the Unknown2.
+ |
+| [getUnknown3()](#getUnknown3--) | Gets the Unknown3.
+ |
### getImageWidth() {#getImageWidth--}
```
public final int getImageWidth()
@@ -38,8 +52,10 @@ public final int getImageWidth()
Gets the image width.
+
**Returns:**
int - The image width.
+
### getImageHeight() {#getImageHeight--}
```
public final int getImageHeight()
@@ -48,8 +64,10 @@ public final int getImageHeight()
Gets the image height.
+
**Returns:**
int - The image height.
+
### getBitsPerSample() {#getBitsPerSample--}
```
public final int[] getBitsPerSample()
@@ -58,8 +76,10 @@ public final int[] getBitsPerSample()
Gets the image BitsPerSample.
+
**Returns:**
int[] - The image BitsPerSample.
+
### getCompression() {#getCompression--}
```
public final int getCompression()
@@ -68,8 +88,10 @@ public final int getCompression()
Gets the image Compression.
+
**Returns:**
int - The image Compression.
+
### getPhotometricInterpretation() {#getPhotometricInterpretation--}
```
public final int getPhotometricInterpretation()
@@ -78,8 +100,10 @@ public final int getPhotometricInterpretation()
Gets the image PhotometricInterpretation.
+
**Returns:**
int - The image PhotometricInterpretation.
+
### getStripOffset() {#getStripOffset--}
```
public final long getStripOffset()
@@ -88,8 +112,10 @@ public final long getStripOffset()
Gets the image StripOffset.
+
**Returns:**
long - The image StripOffset.
+
### getSamplesPerPixel() {#getSamplesPerPixel--}
```
public final int getSamplesPerPixel()
@@ -98,8 +124,10 @@ public final int getSamplesPerPixel()
Gets the SamplesPerPixel.
+
**Returns:**
int - The SamplesPerPixel.
+
### getRowPerStrip() {#getRowPerStrip--}
```
public final int getRowPerStrip()
@@ -108,8 +136,10 @@ public final int getRowPerStrip()
Gets the RowPerStrip.
+
**Returns:**
int - The RowPerStrip.
+
### getStripByteCounts() {#getStripByteCounts--}
```
public final long getStripByteCounts()
@@ -118,8 +148,10 @@ public final long getStripByteCounts()
Gets the StripByteCounts.
+
**Returns:**
long - The StripByteCounts.
+
### getPlanarConfiguration() {#getPlanarConfiguration--}
```
public final int getPlanarConfiguration()
@@ -128,8 +160,10 @@ public final int getPlanarConfiguration()
Gets the PlanarConfiguration.
+
**Returns:**
int - The PlanarConfiguration.
+
### getUnknown1() {#getUnknown1--}
```
public final long getUnknown1()
@@ -138,8 +172,10 @@ public final long getUnknown1()
Gets the Unknown1.
+
**Returns:**
long - The Unknown1.
+
### getUnknown2() {#getUnknown2--}
```
public final long getUnknown2()
@@ -148,8 +184,10 @@ public final long getUnknown2()
Gets the Unknown2.
+
**Returns:**
long - The Unknown2.
+
### getUnknown3() {#getUnknown3--}
```
public final long[] getUnknown3()
@@ -158,5 +196,7 @@ public final long[] getUnknown3()
Gets the Unknown3.
+
**Returns:**
long[] - The Unknown3.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawifd3package/_index.md b/english/java/com.groupdocs.metadata.core/rawifd3package/_index.md
index 9e31111e2d..cd4589a2cf 100644
--- a/english/java/com.groupdocs.metadata.core/rawifd3package/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawifd3package/_index.md
@@ -13,19 +13,29 @@ public final class RawIFD3Package extends RawDictionaryBasePackage
```
Represents IFD1 tags.
+
## Methods
| Method | Description |
| --- | --- |
-| [getImageWidth()](#getImageWidth--) | Gets the image width. |
-| [getImageHeight()](#getImageHeight--) | Gets the image height. |
-| [getCompression()](#getCompression--) | Gets the image Compression. |
-| [getStripOffset()](#getStripOffset--) | Gets the image StripOffset. |
-| [getStripByteCounts()](#getStripByteCounts--) | Gets the image StripByteCounts. |
-| [getUnknown1()](#getUnknown1--) | Gets the Unknown1. |
-| [getUnknown2()](#getUnknown2--) | Gets the Unknown2. |
-| [getUnknown3()](#getUnknown3--) | Gets the Unknown3. |
-| [getUnknown4()](#getUnknown4--) | Gets the Unknown4. |
+| [getImageWidth()](#getImageWidth--) | Gets the image width.
+ |
+| [getImageHeight()](#getImageHeight--) | Gets the image height.
+ |
+| [getCompression()](#getCompression--) | Gets the image Compression.
+ |
+| [getStripOffset()](#getStripOffset--) | Gets the image StripOffset.
+ |
+| [getStripByteCounts()](#getStripByteCounts--) | Gets the image StripByteCounts.
+ |
+| [getUnknown1()](#getUnknown1--) | Gets the Unknown1.
+ |
+| [getUnknown2()](#getUnknown2--) | Gets the Unknown2.
+ |
+| [getUnknown3()](#getUnknown3--) | Gets the Unknown3.
+ |
+| [getUnknown4()](#getUnknown4--) | Gets the Unknown4.
+ |
### getImageWidth() {#getImageWidth--}
```
public final int getImageWidth()
@@ -34,8 +44,10 @@ public final int getImageWidth()
Gets the image width.
+
**Returns:**
int - The image width.
+
### getImageHeight() {#getImageHeight--}
```
public final int getImageHeight()
@@ -44,8 +56,10 @@ public final int getImageHeight()
Gets the image height.
+
**Returns:**
int - The image height.
+
### getCompression() {#getCompression--}
```
public final int getCompression()
@@ -54,8 +68,10 @@ public final int getCompression()
Gets the image Compression.
+
**Returns:**
int - The image Compression.
+
### getStripOffset() {#getStripOffset--}
```
public final long getStripOffset()
@@ -64,8 +80,10 @@ public final long getStripOffset()
Gets the image StripOffset.
+
**Returns:**
long - The image StripOffset.
+
### getStripByteCounts() {#getStripByteCounts--}
```
public final long getStripByteCounts()
@@ -74,8 +92,10 @@ public final long getStripByteCounts()
Gets the image StripByteCounts.
+
**Returns:**
long - The image StripByteCounts.
+
### getUnknown1() {#getUnknown1--}
```
public final long getUnknown1()
@@ -84,8 +104,10 @@ public final long getUnknown1()
Gets the Unknown1.
+
**Returns:**
long - The Unknown1.
+
### getUnknown2() {#getUnknown2--}
```
public final long getUnknown2()
@@ -94,8 +116,10 @@ public final long getUnknown2()
Gets the Unknown2.
+
**Returns:**
long - The Unknown2.
+
### getUnknown3() {#getUnknown3--}
```
public final int[] getUnknown3()
@@ -104,8 +128,10 @@ public final int[] getUnknown3()
Gets the Unknown3.
+
**Returns:**
int[] - The Unknown3.
+
### getUnknown4() {#getUnknown4--}
```
public final long getUnknown4()
@@ -114,5 +140,7 @@ public final long getUnknown4()
Gets the Unknown4.
+
**Returns:**
long - The Unknown4.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawintegertype/_index.md b/english/java/com.groupdocs.metadata.core/rawintegertype/_index.md
index 73deb63329..1dc908fcad 100644
--- a/english/java/com.groupdocs.metadata.core/rawintegertype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawintegertype/_index.md
@@ -13,18 +13,27 @@ public enum RawIntegerType extends Enum
```
Defines raw integer types for enumerations.
+
## Fields
| Field | Description |
| --- | --- |
-| [SignedByte](#SignedByte) | The 8-bit signed integer value type. |
-| [UnsignedByte](#UnsignedByte) | The 8-bit unsigned integer value type. |
-| [SignedShort](#SignedShort) | The 16-bit signed integer value type. |
-| [UnsignedShort](#UnsignedShort) | The 16-bit unsigned integer value type. |
-| [SignedInt](#SignedInt) | The 32-bit signed integer value type. |
-| [UnsignedInt](#UnsignedInt) | The 32-bit unsigned integer value type. |
-| [SignedLong](#SignedLong) | The 64-bit signed integer value type. |
-| [UnsignedLong](#UnsignedLong) | The 64-bit unsigned integer value type. |
+| [SignedByte](#SignedByte) | The 8-bit signed integer value type.
+ |
+| [UnsignedByte](#UnsignedByte) | The 8-bit unsigned integer value type.
+ |
+| [SignedShort](#SignedShort) | The 16-bit signed integer value type.
+ |
+| [UnsignedShort](#UnsignedShort) | The 16-bit unsigned integer value type.
+ |
+| [SignedInt](#SignedInt) | The 32-bit signed integer value type.
+ |
+| [UnsignedInt](#UnsignedInt) | The 32-bit unsigned integer value type.
+ |
+| [SignedLong](#SignedLong) | The 64-bit signed integer value type.
+ |
+| [UnsignedLong](#UnsignedLong) | The 64-bit unsigned integer value type.
+ |
## Methods
| Method | Description |
@@ -39,6 +48,7 @@ public static final RawIntegerType SignedByte
The 8-bit signed integer value type.
+
### UnsignedByte {#UnsignedByte}
```
public static final RawIntegerType UnsignedByte
@@ -47,6 +57,7 @@ public static final RawIntegerType UnsignedByte
The 8-bit unsigned integer value type.
+
### SignedShort {#SignedShort}
```
public static final RawIntegerType SignedShort
@@ -55,6 +66,7 @@ public static final RawIntegerType SignedShort
The 16-bit signed integer value type.
+
### UnsignedShort {#UnsignedShort}
```
public static final RawIntegerType UnsignedShort
@@ -63,6 +75,7 @@ public static final RawIntegerType UnsignedShort
The 16-bit unsigned integer value type.
+
### SignedInt {#SignedInt}
```
public static final RawIntegerType SignedInt
@@ -71,6 +84,7 @@ public static final RawIntegerType SignedInt
The 32-bit signed integer value type.
+
### UnsignedInt {#UnsignedInt}
```
public static final RawIntegerType UnsignedInt
@@ -79,6 +93,7 @@ public static final RawIntegerType UnsignedInt
The 32-bit unsigned integer value type.
+
### SignedLong {#SignedLong}
```
public static final RawIntegerType SignedLong
@@ -87,6 +102,7 @@ public static final RawIntegerType SignedLong
The 64-bit signed integer value type.
+
### UnsignedLong {#UnsignedLong}
```
public static final RawIntegerType UnsignedLong
@@ -95,6 +111,7 @@ public static final RawIntegerType UnsignedLong
The 64-bit unsigned integer value type.
+
### values() {#values--}
```
public static RawIntegerType[] values()
diff --git a/english/java/com.groupdocs.metadata.core/rawmakernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/rawmakernotepackage/_index.md
index 14cea0d288..0f4193fc36 100644
--- a/english/java/com.groupdocs.metadata.core/rawmakernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawmakernotepackage/_index.md
@@ -13,3 +13,4 @@ public abstract class RawMakerNotePackage extends RawDictionaryBasePackage
```
Represents Raw MakerNotes tags.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawtifftagpackage/_index.md b/english/java/com.groupdocs.metadata.core/rawtifftagpackage/_index.md
index 381334a935..c526d468ca 100644
--- a/english/java/com.groupdocs.metadata.core/rawtifftagpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawtifftagpackage/_index.md
@@ -13,48 +13,87 @@ public final class RawTiffTagPackage extends RawDictionaryBasePackage
```
Represents Tiff tags.
+
## Methods
| Method | Description |
| --- | --- |
-| [getRawIFD1Package()](#getRawIFD1Package--) | Gets the IFD1. |
-| [getRawIFD2Package()](#getRawIFD2Package--) | Gets the IFD2. |
-| [getRawIFD3Package()](#getRawIFD3Package--) | Gets the IFD3. |
-| [getRawExifTagPackage()](#getRawExifTagPackage--) | Gets the Exif tag (Exif IFD Pointer). |
-| [getGpsIfdPackage()](#getGpsIfdPackage--) | Gets the GPS tag (GPSInfo IFD Pointer). |
-| [getImageWidth()](#getImageWidth--) | Gets the image width. |
-| [getImageHeight()](#getImageHeight--) | Gets the image height. |
-| [getBitsPerSample()](#getBitsPerSample--) | Gets the bits per sample. |
-| [getCompression()](#getCompression--) | Gets compression. |
-| [getPhotometricInterpretation()](#getPhotometricInterpretation--) | Gets PhotometricInterpretation. |
-| [getImageDescription()](#getImageDescription--) | Gets a character string giving the title of the image. |
-| [setImageDescription(String value)](#setImageDescription-java.lang.String-) | Sets a character string giving the title of the image. |
-| [getMake()](#getMake--) | Gets the macro mode. |
-| [getModel()](#getModel--) | Gets the model. |
-| [getStripOffset()](#getStripOffset--) | Gets the StripOffset. |
-| [getOrientation()](#getOrientation--) | Gets the orientation. |
-| [getSamplesPerPixel()](#getSamplesPerPixel--) | Gets the SamplesPerPixel. |
-| [getRowsPerStrip()](#getRowsPerStrip--) | Gets the RowsPerStrip. |
-| [getStripByteCounts()](#getStripByteCounts--) | Gets the strip byte counts. |
-| [getXResolution()](#getXResolution--) | Gets the XResolution. |
-| [getYResolution()](#getYResolution--) | Gets the YResolution. |
-| [getPlanarConfiguration()](#getPlanarConfiguration--) | Gets the PlanarConfiguration. |
-| [getResolutionUnit()](#getResolutionUnit--) | Gets the Resolution Unit. |
-| [getTransferFunction()](#getTransferFunction--) | Gets the TransferFunction. |
-| [getSoftware()](#getSoftware--) | Gets the Software. |
-| [getDateTime()](#getDateTime--) | Gets the DateTime. |
-| [getArtist()](#getArtist--) | Gets the Artist. |
-| [getWhitePoint()](#getWhitePoint--) | Gets the WhitePoint. |
-| [getPrimaryChromaticities()](#getPrimaryChromaticities--) | Gets the PrimaryChromaticities. |
-| [getJpegInterchangeFormat()](#getJpegInterchangeFormat--) | Gets the JpegInterchangeFormat. |
-| [getJpegInterchangeFormatLength()](#getJpegInterchangeFormatLength--) | Gets the JpegInterchangeFormatLength. |
-| [getYCbCrCoefficients()](#getYCbCrCoefficients--) | Gets the YCbCrCoefficients. |
-| [getYCbCrSubSampling()](#getYCbCrSubSampling--) | Gets the YCbCrSubSampling. |
-| [getYCbCrPositioning()](#getYCbCrPositioning--) | Gets the YCbCrPositioning. |
-| [getReferenceBlackWhite()](#getReferenceBlackWhite--) | Gets the ReferenceBlackWhite. |
-| [getCopyright()](#getCopyright--) | Gets the Copyright. |
-| [getEXIF()](#getEXIF--) | Gets the EXIF. |
-| [getGpsIfd()](#getGpsIfd--) | Gets the EXIF. |
+| [getRawIFD1Package()](#getRawIFD1Package--) | Gets the IFD1.
+ |
+| [getRawIFD2Package()](#getRawIFD2Package--) | Gets the IFD2.
+ |
+| [getRawIFD3Package()](#getRawIFD3Package--) | Gets the IFD3.
+ |
+| [getRawExifTagPackage()](#getRawExifTagPackage--) | Gets the Exif tag (Exif IFD Pointer).
+ |
+| [getGpsIfdPackage()](#getGpsIfdPackage--) | Gets the GPS tag (GPSInfo IFD Pointer).
+ |
+| [getImageWidth()](#getImageWidth--) | Gets the image width.
+ |
+| [getImageHeight()](#getImageHeight--) | Gets the image height.
+ |
+| [getBitsPerSample()](#getBitsPerSample--) | Gets the bits per sample.
+ |
+| [getCompression()](#getCompression--) | Gets compression.
+ |
+| [getPhotometricInterpretation()](#getPhotometricInterpretation--) | Gets PhotometricInterpretation.
+ |
+| [getImageDescription()](#getImageDescription--) | Gets a character string giving the title of the image.
+ |
+| [setImageDescription(String value)](#setImageDescription-java.lang.String-) | Sets a character string giving the title of the image.
+ |
+| [getMake()](#getMake--) | Gets the macro mode.
+ |
+| [getModel()](#getModel--) | Gets the model.
+ |
+| [getStripOffset()](#getStripOffset--) | Gets the StripOffset.
+ |
+| [getOrientation()](#getOrientation--) | Gets the orientation.
+ |
+| [getSamplesPerPixel()](#getSamplesPerPixel--) | Gets the SamplesPerPixel.
+ |
+| [getRowsPerStrip()](#getRowsPerStrip--) | Gets the RowsPerStrip.
+ |
+| [getStripByteCounts()](#getStripByteCounts--) | Gets the strip byte counts.
+ |
+| [getXResolution()](#getXResolution--) | Gets the XResolution.
+ |
+| [getYResolution()](#getYResolution--) | Gets the YResolution.
+ |
+| [getPlanarConfiguration()](#getPlanarConfiguration--) | Gets the PlanarConfiguration.
+ |
+| [getResolutionUnit()](#getResolutionUnit--) | Gets the Resolution Unit.
+ |
+| [getTransferFunction()](#getTransferFunction--) | Gets the TransferFunction.
+ |
+| [getSoftware()](#getSoftware--) | Gets the Software.
+ |
+| [getDateTime()](#getDateTime--) | Gets the DateTime.
+ |
+| [getArtist()](#getArtist--) | Gets the Artist.
+ |
+| [getWhitePoint()](#getWhitePoint--) | Gets the WhitePoint.
+ |
+| [getPrimaryChromaticities()](#getPrimaryChromaticities--) | Gets the PrimaryChromaticities.
+ |
+| [getJpegInterchangeFormat()](#getJpegInterchangeFormat--) | Gets the JpegInterchangeFormat.
+ |
+| [getJpegInterchangeFormatLength()](#getJpegInterchangeFormatLength--) | Gets the JpegInterchangeFormatLength.
+ |
+| [getYCbCrCoefficients()](#getYCbCrCoefficients--) | Gets the YCbCrCoefficients.
+ |
+| [getYCbCrSubSampling()](#getYCbCrSubSampling--) | Gets the YCbCrSubSampling.
+ |
+| [getYCbCrPositioning()](#getYCbCrPositioning--) | Gets the YCbCrPositioning.
+ |
+| [getReferenceBlackWhite()](#getReferenceBlackWhite--) | Gets the ReferenceBlackWhite.
+ |
+| [getCopyright()](#getCopyright--) | Gets the Copyright.
+ |
+| [getEXIF()](#getEXIF--) | Gets the EXIF.
+ |
+| [getGpsIfd()](#getGpsIfd--) | Gets the EXIF.
+ |
### getRawIFD1Package() {#getRawIFD1Package--}
```
public final RawIFD1Package getRawIFD1Package()
@@ -63,8 +102,10 @@ public final RawIFD1Package getRawIFD1Package()
Gets the IFD1.
+
**Returns:**
[RawIFD1Package](../../com.groupdocs.metadata.core/rawifd1package) - The IFD1.
+
### getRawIFD2Package() {#getRawIFD2Package--}
```
public final RawIFD2Package getRawIFD2Package()
@@ -73,8 +114,10 @@ public final RawIFD2Package getRawIFD2Package()
Gets the IFD2.
+
**Returns:**
[RawIFD2Package](../../com.groupdocs.metadata.core/rawifd2package) - The IFD2.
+
### getRawIFD3Package() {#getRawIFD3Package--}
```
public final RawIFD3Package getRawIFD3Package()
@@ -83,8 +126,10 @@ public final RawIFD3Package getRawIFD3Package()
Gets the IFD3.
+
**Returns:**
[RawIFD3Package](../../com.groupdocs.metadata.core/rawifd3package) - The IFD3.
+
### getRawExifTagPackage() {#getRawExifTagPackage--}
```
public final RawExifTagPackage getRawExifTagPackage()
@@ -93,8 +138,10 @@ public final RawExifTagPackage getRawExifTagPackage()
Gets the Exif tag (Exif IFD Pointer).
+
**Returns:**
[RawExifTagPackage](../../com.groupdocs.metadata.core/rawexiftagpackage) - The Exif tag (Exif IFD Pointer).
+
### getGpsIfdPackage() {#getGpsIfdPackage--}
```
public final GpsIfdPackage getGpsIfdPackage()
@@ -103,8 +150,10 @@ public final GpsIfdPackage getGpsIfdPackage()
Gets the GPS tag (GPSInfo IFD Pointer).
+
**Returns:**
[GpsIfdPackage](../../com.groupdocs.metadata.core/gpsifdpackage) - The GPS tag (GPSInfo IFD Pointer).
+
### getImageWidth() {#getImageWidth--}
```
public final int getImageWidth()
@@ -113,8 +162,10 @@ public final int getImageWidth()
Gets the image width.
+
**Returns:**
int - The image width.
+
### getImageHeight() {#getImageHeight--}
```
public final int getImageHeight()
@@ -123,8 +174,10 @@ public final int getImageHeight()
Gets the image height.
+
**Returns:**
int - The image height.
+
### getBitsPerSample() {#getBitsPerSample--}
```
public final int[] getBitsPerSample()
@@ -133,8 +186,10 @@ public final int[] getBitsPerSample()
Gets the bits per sample.
+
**Returns:**
int[] - The bits per sample.
+
### getCompression() {#getCompression--}
```
public final int getCompression()
@@ -143,8 +198,10 @@ public final int getCompression()
Gets compression.
+
**Returns:**
int - The compression.
+
### getPhotometricInterpretation() {#getPhotometricInterpretation--}
```
public final int getPhotometricInterpretation()
@@ -153,30 +210,38 @@ public final int getPhotometricInterpretation()
Gets PhotometricInterpretation.
+
**Returns:**
int - The PhotometricInterpretation.
+
### getImageDescription() {#getImageDescription--}
```
public final String getImageDescription()
```
-Gets a character string giving the title of the image. It may be a comment such as "1988 company picnic" or the like.
+Gets a character string giving the title of the image.
+It may be a comment such as "1988 company picnic" or the like.
+
**Returns:**
java.lang.String - The image description.
+
### setImageDescription(String value) {#setImageDescription-java.lang.String-}
```
public final void setImageDescription(String value)
```
-Sets a character string giving the title of the image. It may be a comment such as "1988 company picnic" or the like.
+Sets a character string giving the title of the image.
+It may be a comment such as "1988 company picnic" or the like.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The image description. |
+| value | java.lang.String | The image description.
+ |
### getMake() {#getMake--}
```
@@ -186,8 +251,10 @@ public final String getMake()
Gets the macro mode.
+
**Returns:**
java.lang.String - The macro mode.
+
### getModel() {#getModel--}
```
public final String getModel()
@@ -196,8 +263,10 @@ public final String getModel()
Gets the model.
+
**Returns:**
java.lang.String - The model.
+
### getStripOffset() {#getStripOffset--}
```
public final long getStripOffset()
@@ -206,8 +275,10 @@ public final long getStripOffset()
Gets the StripOffset.
+
**Returns:**
long - The StripOffset.
+
### getOrientation() {#getOrientation--}
```
public final int getOrientation()
@@ -216,8 +287,10 @@ public final int getOrientation()
Gets the orientation.
+
**Returns:**
int - The orientation.
+
### getSamplesPerPixel() {#getSamplesPerPixel--}
```
public final int getSamplesPerPixel()
@@ -226,8 +299,10 @@ public final int getSamplesPerPixel()
Gets the SamplesPerPixel.
+
**Returns:**
int - The SamplesPerPixel.
+
### getRowsPerStrip() {#getRowsPerStrip--}
```
public final long getRowsPerStrip()
@@ -236,8 +311,10 @@ public final long getRowsPerStrip()
Gets the RowsPerStrip.
+
**Returns:**
long - The RowsPerStrip.
+
### getStripByteCounts() {#getStripByteCounts--}
```
public final long getStripByteCounts()
@@ -246,8 +323,10 @@ public final long getStripByteCounts()
Gets the strip byte counts.
+
**Returns:**
long - The strip byte counts.
+
### getXResolution() {#getXResolution--}
```
public final float getXResolution()
@@ -256,8 +335,10 @@ public final float getXResolution()
Gets the XResolution.
+
**Returns:**
float - The XResolution.
+
### getYResolution() {#getYResolution--}
```
public final float getYResolution()
@@ -266,8 +347,10 @@ public final float getYResolution()
Gets the YResolution.
+
**Returns:**
float - The YResolution.
+
### getPlanarConfiguration() {#getPlanarConfiguration--}
```
public final int getPlanarConfiguration()
@@ -276,8 +359,10 @@ public final int getPlanarConfiguration()
Gets the PlanarConfiguration.
+
**Returns:**
int - The PlanarConfiguration.
+
### getResolutionUnit() {#getResolutionUnit--}
```
public final int getResolutionUnit()
@@ -286,8 +371,10 @@ public final int getResolutionUnit()
Gets the Resolution Unit.
+
**Returns:**
int - The Resolution Unit.
+
### getTransferFunction() {#getTransferFunction--}
```
public final int[] getTransferFunction()
@@ -296,8 +383,10 @@ public final int[] getTransferFunction()
Gets the TransferFunction.
+
**Returns:**
int[] - The TransferFunction.
+
### getSoftware() {#getSoftware--}
```
public final String getSoftware()
@@ -306,8 +395,10 @@ public final String getSoftware()
Gets the Software.
+
**Returns:**
java.lang.String - The Software.
+
### getDateTime() {#getDateTime--}
```
public final String getDateTime()
@@ -316,8 +407,10 @@ public final String getDateTime()
Gets the DateTime.
+
**Returns:**
java.lang.String - The DateTime.
+
### getArtist() {#getArtist--}
```
public final String getArtist()
@@ -326,8 +419,10 @@ public final String getArtist()
Gets the Artist.
+
**Returns:**
java.lang.String - The Artist.
+
### getWhitePoint() {#getWhitePoint--}
```
public final double[] getWhitePoint()
@@ -336,8 +431,10 @@ public final double[] getWhitePoint()
Gets the WhitePoint.
+
**Returns:**
double[] - The WhitePoint.
+
### getPrimaryChromaticities() {#getPrimaryChromaticities--}
```
public final double[] getPrimaryChromaticities()
@@ -346,8 +443,10 @@ public final double[] getPrimaryChromaticities()
Gets the PrimaryChromaticities.
+
**Returns:**
double[] - The PrimaryChromaticities.
+
### getJpegInterchangeFormat() {#getJpegInterchangeFormat--}
```
public final long getJpegInterchangeFormat()
@@ -356,8 +455,10 @@ public final long getJpegInterchangeFormat()
Gets the JpegInterchangeFormat.
+
**Returns:**
long - The JpegInterchangeFormat.
+
### getJpegInterchangeFormatLength() {#getJpegInterchangeFormatLength--}
```
public final long getJpegInterchangeFormatLength()
@@ -366,8 +467,10 @@ public final long getJpegInterchangeFormatLength()
Gets the JpegInterchangeFormatLength.
+
**Returns:**
long - The JpegInterchangeFormatLength.
+
### getYCbCrCoefficients() {#getYCbCrCoefficients--}
```
public final double[] getYCbCrCoefficients()
@@ -376,8 +479,10 @@ public final double[] getYCbCrCoefficients()
Gets the YCbCrCoefficients.
+
**Returns:**
double[] - The YCbCrCoefficients.
+
### getYCbCrSubSampling() {#getYCbCrSubSampling--}
```
public final int[] getYCbCrSubSampling()
@@ -386,8 +491,10 @@ public final int[] getYCbCrSubSampling()
Gets the YCbCrSubSampling.
+
**Returns:**
int[] - The YCbCrSubSampling.
+
### getYCbCrPositioning() {#getYCbCrPositioning--}
```
public final int getYCbCrPositioning()
@@ -396,8 +503,10 @@ public final int getYCbCrPositioning()
Gets the YCbCrPositioning.
+
**Returns:**
int - The YCbCrPositioning.
+
### getReferenceBlackWhite() {#getReferenceBlackWhite--}
```
public final double[] getReferenceBlackWhite()
@@ -406,8 +515,10 @@ public final double[] getReferenceBlackWhite()
Gets the ReferenceBlackWhite.
+
**Returns:**
double[] - The ReferenceBlackWhite.
+
### getCopyright() {#getCopyright--}
```
public final String getCopyright()
@@ -416,8 +527,10 @@ public final String getCopyright()
Gets the Copyright.
+
**Returns:**
java.lang.String - The Copyright.
+
### getEXIF() {#getEXIF--}
```
public final long getEXIF()
@@ -426,8 +539,10 @@ public final long getEXIF()
Gets the EXIF.
+
**Returns:**
long - The EXIF.
+
### getGpsIfd() {#getGpsIfd--}
```
public final long getGpsIfd()
@@ -436,5 +551,7 @@ public final long getGpsIfd()
Gets the EXIF.
+
**Returns:**
long - The EXIF.
+
diff --git a/english/java/com.groupdocs.metadata.core/rawtypepackage/_index.md b/english/java/com.groupdocs.metadata.core/rawtypepackage/_index.md
index f8732e3165..fb62634a7a 100644
--- a/english/java/com.groupdocs.metadata.core/rawtypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rawtypepackage/_index.md
@@ -13,18 +13,25 @@ public class RawTypePackage extends FileTypePackage
```
Represents a metadata package containing image-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getByteOrder()](#getByteOrder--) | Gets the byte-order of the image. |
+| [getByteOrder()](#getByteOrder--) | Gets the byte-order of the image.
+ |
### getByteOrder() {#getByteOrder--}
```
public final ByteOrder getByteOrder()
```
-Gets the byte-order of the image. Please see https://en.wikipedia.org/wiki/Endianness for more information.
+Gets the byte-order of the image.
+Please see
+
+ for more information.
+
**Returns:**
[ByteOrder](../../com.groupdocs.metadata.core/byteorder) - The byte-order value.
+
diff --git a/english/java/com.groupdocs.metadata.core/readonlylist/_index.md b/english/java/com.groupdocs.metadata.core/readonlylist/_index.md
index 20df9fe999..e5cef7e92e 100644
--- a/english/java/com.groupdocs.metadata.core/readonlylist/_index.md
+++ b/english/java/com.groupdocs.metadata.core/readonlylist/_index.md
@@ -17,17 +17,26 @@ public class ReadOnlyList implements IReadOnlyList
Provides an abstract base class for a strongly typed read-only list.
- T : The type of the element.
+
+T
+: The type of the element.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCount()](#getCount--) | Gets the number of elements contained in the collection. |
-| [get_Item(int index)](#get-Item-int-) | Gets the element at the specified index in the collection. |
-| [contains(T item)](#contains-T-) | Determines whether the collection contains a specific item. |
-| [contains(TagCategory item)](#contains-com.groupdocs.metadata.tagging.TagCategory-) | Determines whether the collection contains a TagCategory item. |
-| [indexOf(T item)](#indexOf-T-) | Determines the index of a specific item in the collection. |
-| [iterator()](#iterator--) | Returns an enumerator that iterates through a collection. |
+| [getCount()](#getCount--) | Gets the number of elements contained in the collection.
+ |
+| [get_Item(int index)](#get-Item-int-) | Gets the element at the specified index in the collection.
+ |
+| [contains(T item)](#contains-T-) | Determines whether the collection contains a specific item.
+ |
+| [contains(TagCategory item)](#contains-com.groupdocs.metadata.tagging.TagCategory-) | Determines whether the collection contains a TagCategory item.
+ |
+| [indexOf(T item)](#indexOf-T-) | Determines the index of a specific item in the collection.
+ |
+| [iterator()](#iterator--) | Returns an enumerator that iterates through a collection.
+ |
### getCount() {#getCount--}
```
public final int getCount()
@@ -36,8 +45,10 @@ public final int getCount()
Gets the number of elements contained in the collection.
+
**Returns:**
int - The number of elements contained in the collection.
+
### get_Item(int index) {#get-Item-int-}
```
public final T get_Item(int index)
@@ -46,13 +57,16 @@ public final T get_Item(int index)
Gets the element at the specified index in the collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| index | int | The zero-based index of the element to get. |
+| index | int | The zero-based index of the element to get.
+ |
**Returns:**
T - The element at the specified index.
+
### contains(T item) {#contains-T-}
```
public final boolean contains(T item)
@@ -61,13 +75,16 @@ public final boolean contains(T item)
Determines whether the collection contains a specific item.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| item | T | The item to locate in the collection. |
+| item | T | The item to locate in the collection.
+ |
**Returns:**
boolean - True if the item is found in the collection; otherwise, false.
+
### contains(TagCategory item) {#contains-com.groupdocs.metadata.tagging.TagCategory-}
```
public final boolean contains(TagCategory item)
@@ -76,13 +93,16 @@ public final boolean contains(TagCategory item)
Determines whether the collection contains a TagCategory item.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| item | [TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) | The item to locate in the collection. |
+| item | [TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) | The item to locate in the collection.
+ |
**Returns:**
boolean - True if the item is found in the collection; otherwise, false.
+
### indexOf(T item) {#indexOf-T-}
```
public final int indexOf(T item)
@@ -91,13 +111,16 @@ public final int indexOf(T item)
Determines the index of a specific item in the collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| item | T | The item to locate in the collection. |
+| item | T | The item to locate in the collection.
+ |
**Returns:**
int - The index of item if found in the collection; otherwise, -1.
+
### iterator() {#iterator--}
```
public final Iterator iterator()
@@ -106,5 +129,7 @@ public final Iterator iterator()
Returns an enumerator that iterates through a collection.
+
**Returns:**
-java.util.Iterator - An IEnumerator\{T\} object that can be used to iterate through the collection.
+java.util.Iterator - An IEnumerator{T} object that can be used to iterate through the collection.
+
diff --git a/english/java/com.groupdocs.metadata.core/rectangle/_index.md b/english/java/com.groupdocs.metadata.core/rectangle/_index.md
index 6c02ec4795..12a1659062 100644
--- a/english/java/com.groupdocs.metadata.core/rectangle/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rectangle/_index.md
@@ -13,6 +13,7 @@ public class Rectangle extends Struct
```
A set of four integers that represent the location and size of a rectangle.
+
## Constructors
| Constructor | Description |
@@ -22,17 +23,30 @@ A set of four integers that represent the location and size of a rectangle.
| Method | Description |
| --- | --- |
-| [getEmpty()](#getEmpty--) | Gets the empty rectangle. |
-| [getX()](#getX--) | Gets the x. |
-| [getY()](#getY--) | Gets the y. |
-| [getWidth()](#getWidth--) | Gets the width. |
-| [getHeight()](#getHeight--) | Gets the height. |
-| [getLeft()](#getLeft--) | Gets the x-coordinate of the left edge of the rectangle. |
-| [getTop()](#getTop--) | Gets the y-coordinate that is the sum of the Y and Height property values of the rectangle. |
-| [getRight()](#getRight--) | Gets the x-coordinate that is the sum of X and Width property values of the rectangle. |
-| [getBottom()](#getBottom--) | Gets the y-coordinate that is the sum of the Y and Height property values of the rectangle. |
-| [isEmpty()](#isEmpty--) | Gets a value indicating whether this instance is empty. |
-| [toString()](#toString--) | Returns a System.String that represents this instance. |
+| [getEmpty()](#getEmpty--) | Gets the empty rectangle.
+ |
+| [getX()](#getX--) | Gets the x.
+ |
+| [getY()](#getY--) | Gets the y.
+ |
+| [getWidth()](#getWidth--) | Gets the width.
+ |
+| [getHeight()](#getHeight--) | Gets the height.
+ |
+| [getLeft()](#getLeft--) | Gets the x-coordinate of the left edge of the rectangle.
+ |
+| [getTop()](#getTop--) | Gets the y-coordinate that is the sum of the Y and Height property values of the rectangle.
+ |
+| [getRight()](#getRight--) | Gets the x-coordinate that is the sum of X and Width property values of the rectangle.
+ |
+| [getBottom()](#getBottom--) | Gets the y-coordinate that is the sum of the Y and Height property values of the rectangle.
+ |
+| [isEmpty()](#isEmpty--) | Gets a value indicating whether this instance is empty.
+ |
+| [toString()](#toString--) | Returns a
+System.String
+ that represents this instance.
+ |
| [CloneTo(Rectangle that)](#CloneTo-com.groupdocs.metadata.core.Rectangle-) | |
| [Clone()](#Clone--) | |
| [clone()](#clone--) | |
@@ -52,8 +66,10 @@ public static Rectangle getEmpty()
Gets the empty rectangle.
+
**Returns:**
[Rectangle](../../com.groupdocs.metadata.core/rectangle) - The empty rectangle.
+
### getX() {#getX--}
```
public final int getX()
@@ -62,8 +78,10 @@ public final int getX()
Gets the x.
+
**Returns:**
int - The x.
+
### getY() {#getY--}
```
public final int getY()
@@ -72,8 +90,10 @@ public final int getY()
Gets the y.
+
**Returns:**
int - The y.
+
### getWidth() {#getWidth--}
```
public final int getWidth()
@@ -82,8 +102,10 @@ public final int getWidth()
Gets the width.
+
**Returns:**
int - The width.
+
### getHeight() {#getHeight--}
```
public final int getHeight()
@@ -92,8 +114,10 @@ public final int getHeight()
Gets the height.
+
**Returns:**
int - The height.
+
### getLeft() {#getLeft--}
```
public final int getLeft()
@@ -102,8 +126,10 @@ public final int getLeft()
Gets the x-coordinate of the left edge of the rectangle.
+
**Returns:**
int - The x-coordinate of the left edge of the rectangle.
+
### getTop() {#getTop--}
```
public final int getTop()
@@ -112,8 +138,10 @@ public final int getTop()
Gets the y-coordinate that is the sum of the Y and Height property values of the rectangle.
+
**Returns:**
int - The y-coordinate that is the sum of the Y and Height property values of the rectangle.
+
### getRight() {#getRight--}
```
public final int getRight()
@@ -122,8 +150,10 @@ public final int getRight()
Gets the x-coordinate that is the sum of X and Width property values of the rectangle.
+
**Returns:**
int - The x-coordinate that is the sum of X and Width property values of the rectangle.
+
### getBottom() {#getBottom--}
```
public final int getBottom()
@@ -132,8 +162,10 @@ public final int getBottom()
Gets the y-coordinate that is the sum of the Y and Height property values of the rectangle.
+
**Returns:**
int - The y-coordinate that is the sum of the Y and Height property values of the rectangle.
+
### isEmpty() {#isEmpty--}
```
public final boolean isEmpty()
@@ -142,18 +174,24 @@ public final boolean isEmpty()
Gets a value indicating whether this instance is empty.
+
**Returns:**
boolean - true if this instance is empty; otherwise, false .
+
### toString() {#toString--}
```
public String toString()
```
-Returns a System.String that represents this instance.
+Returns a
+System.String
+ that represents this instance.
+
**Returns:**
java.lang.String - A System.String that represents this instance.
+
### CloneTo(Rectangle that) {#CloneTo-com.groupdocs.metadata.core.Rectangle-}
```
public void CloneTo(Rectangle that)
diff --git a/english/java/com.groupdocs.metadata.core/riffinfopackage/_index.md b/english/java/com.groupdocs.metadata.core/riffinfopackage/_index.md
index f36a81b744..ee5b95a0f8 100644
--- a/english/java/com.groupdocs.metadata.core/riffinfopackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/riffinfopackage/_index.md
@@ -13,22 +13,35 @@ public final class RiffInfoPackage extends CustomPackage
```
Represents the metadata package containing properties extracted from the RIFF INFO chunk.
+
## Methods
| Method | Description |
| --- | --- |
-| [getArtist()](#getArtist--) | Gets the artist of the original subject of the file. |
-| [getComment()](#getComment--) | Gets the comment about the file or the subject of the file. |
-| [getCopyright()](#getCopyright--) | Gets the copyright information for the file. |
-| [getCreationDate()](#getCreationDate--) | Gets the date the subject of the file was created. |
-| [getEngineer()](#getEngineer--) | Gets the name of the engineer who worked on the file. |
-| [getGenre()](#getGenre--) | Gets the genre of the original work. |
-| [getKeywords()](#getKeywords--) | Gets the keywords that refer to the file or subject of the file. |
-| [getName()](#getName--) | Gets the title of the subject of the file. |
-| [getSubject()](#getSubject--) | Gets a description of the file contents, such as "Aerial view of Seattle." |
-| [getSoftware()](#getSoftware--) | Gets the name of the software package used to create the file. |
-| [getSource()](#getSource--) | Gets the name of the person or organization who supplied the original subject of the file. |
-| [getTechnician()](#getTechnician--) | Gets the technician who digitized the subject file. |
+| [getArtist()](#getArtist--) | Gets the artist of the original subject of the file.
+ |
+| [getComment()](#getComment--) | Gets the comment about the file or the subject of the file.
+ |
+| [getCopyright()](#getCopyright--) | Gets the copyright information for the file.
+ |
+| [getCreationDate()](#getCreationDate--) | Gets the date the subject of the file was created.
+ |
+| [getEngineer()](#getEngineer--) | Gets the name of the engineer who worked on the file.
+ |
+| [getGenre()](#getGenre--) | Gets the genre of the original work.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords that refer to the file or subject of the file.
+ |
+| [getName()](#getName--) | Gets the title of the subject of the file.
+ |
+| [getSubject()](#getSubject--) | Gets a description of the file contents, such as "Aerial view of Seattle."
+ |
+| [getSoftware()](#getSoftware--) | Gets the name of the software package used to create the file.
+ |
+| [getSource()](#getSource--) | Gets the name of the person or organization who supplied the original subject of the file.
+ |
+| [getTechnician()](#getTechnician--) | Gets the technician who digitized the subject file.
+ |
### getArtist() {#getArtist--}
```
public final String getArtist()
@@ -37,8 +50,10 @@ public final String getArtist()
Gets the artist of the original subject of the file.
+
**Returns:**
java.lang.String - The artist of the original subject of the file.
+
### getComment() {#getComment--}
```
public final String getComment()
@@ -47,8 +62,10 @@ public final String getComment()
Gets the comment about the file or the subject of the file.
+
**Returns:**
java.lang.String - The comment about the file or the subject of the file.
+
### getCopyright() {#getCopyright--}
```
public final String getCopyright()
@@ -57,8 +74,10 @@ public final String getCopyright()
Gets the copyright information for the file.
+
**Returns:**
java.lang.String - The copyright information for the file.
+
### getCreationDate() {#getCreationDate--}
```
public final String getCreationDate()
@@ -67,8 +86,10 @@ public final String getCreationDate()
Gets the date the subject of the file was created.
+
**Returns:**
java.lang.String - The date the subject of the file was created.
+
### getEngineer() {#getEngineer--}
```
public final String getEngineer()
@@ -77,8 +98,10 @@ public final String getEngineer()
Gets the name of the engineer who worked on the file.
+
**Returns:**
java.lang.String - The name of the engineer who worked on the file.
+
### getGenre() {#getGenre--}
```
public final String getGenre()
@@ -87,8 +110,10 @@ public final String getGenre()
Gets the genre of the original work.
+
**Returns:**
java.lang.String - The genre of the original work.
+
### getKeywords() {#getKeywords--}
```
public final String getKeywords()
@@ -97,8 +122,10 @@ public final String getKeywords()
Gets the keywords that refer to the file or subject of the file.
+
**Returns:**
java.lang.String - The keywords that refer to the file or subject of the file.
+
### getName() {#getName--}
```
public final String getName()
@@ -107,8 +134,10 @@ public final String getName()
Gets the title of the subject of the file.
+
**Returns:**
java.lang.String - The title of the subject of the file.
+
### getSubject() {#getSubject--}
```
public final String getSubject()
@@ -117,8 +146,10 @@ public final String getSubject()
Gets a description of the file contents, such as "Aerial view of Seattle."
+
**Returns:**
java.lang.String - A description of the file contents.
+
### getSoftware() {#getSoftware--}
```
public final String getSoftware()
@@ -127,8 +158,10 @@ public final String getSoftware()
Gets the name of the software package used to create the file.
+
**Returns:**
java.lang.String - The name of the software package used to create the file.
+
### getSource() {#getSource--}
```
public final String getSource()
@@ -137,8 +170,10 @@ public final String getSource()
Gets the name of the person or organization who supplied the original subject of the file.
+
**Returns:**
java.lang.String - The name of the person or organization who supplied the original subject of the file.
+
### getTechnician() {#getTechnician--}
```
public final String getTechnician()
@@ -147,5 +182,7 @@ public final String getTechnician()
Gets the technician who digitized the subject file.
+
**Returns:**
java.lang.String - The technician who digitized the subject file.
+
diff --git a/english/java/com.groupdocs.metadata.core/rootmetadatapackage/_index.md b/english/java/com.groupdocs.metadata.core/rootmetadatapackage/_index.md
index 70de71aa3d..188c590b2f 100644
--- a/english/java/com.groupdocs.metadata.core/rootmetadatapackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/rootmetadatapackage/_index.md
@@ -13,13 +13,16 @@ public abstract class RootMetadataPackage extends MetadataPackage
```
Represents an entry point to all metadata packages presented in a particular file.
+
## Methods
| Method | Description |
| --- | --- |
-| [getFileType()](#getFileType--) | Gets the file type metadata package. |
+| [getFileType()](#getFileType--) | Gets the file type metadata package.
+ |
| [isLicensed()](#isLicensed--) | |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
| [copyTo(MetadataPackage metadataPackage)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | |
### getFileType() {#getFileType--}
```
@@ -29,8 +32,10 @@ public final FileTypePackage getFileType()
Gets the file type metadata package.
+
**Returns:**
[FileTypePackage](../../com.groupdocs.metadata.core/filetypepackage) - The file type metadata package.
+
### isLicensed() {#isLicensed--}
```
public final boolean isLicensed()
@@ -47,17 +52,21 @@ public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
**Learn more**
- * More examples demonstrating usages of this method: [Clean metadata][]
+* More examples demonstrating usages of this method: [Clean metadata](../https://docs.groupdocs.com/display/metadatajava/Clean+metadata)
+
+
-[Clean metadata]: https://docs.groupdocs.com/display/metadatajava/Clean+metadata
### copyTo(MetadataPackage metadataPackage) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-}
```
public void copyTo(MetadataPackage metadataPackage)
diff --git a/english/java/com.groupdocs.metadata.core/sevenzipfile/_index.md b/english/java/com.groupdocs.metadata.core/sevenzipfile/_index.md
index c39aa55c58..e1a611d12e 100644
--- a/english/java/com.groupdocs.metadata.core/sevenzipfile/_index.md
+++ b/english/java/com.groupdocs.metadata.core/sevenzipfile/_index.md
@@ -14,19 +14,29 @@ public final class SevenZipFile extends CustomPackage
Represents metadata associated with an archived file or directory.
---------------------
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getCompressedSize()](#getCompressedSize--) | Gets the compressed size in bytes. |
-| [getUncompressedSize()](#getUncompressedSize--) | Gets the uncompressed size in bytes. |
-| [getName()](#getName--) | Gets the entry name. |
-| [getModificationDateTime()](#getModificationDateTime--) | Gets the last modification date and time. |
+| [getCompressedSize()](#getCompressedSize--) | Gets the compressed size in bytes.
+ |
+| [getUncompressedSize()](#getUncompressedSize--) | Gets the uncompressed size in bytes.
+ |
+| [getName()](#getName--) | Gets the entry name.
+ |
+| [getModificationDateTime()](#getModificationDateTime--) | Gets the last modification date and time.
+ |
### getCompressedSize() {#getCompressedSize--}
```
public final long getCompressedSize()
@@ -34,9 +44,9 @@ public final long getCompressedSize()
Gets the compressed size in bytes.
-
Value: The compressed size in bytes.
+
**Returns:**
long
### getUncompressedSize() {#getUncompressedSize--}
@@ -46,9 +56,9 @@ public final long getUncompressedSize()
Gets the uncompressed size in bytes.
-
Value: The uncompressed size in bytes.
+
**Returns:**
long
### getName() {#getName--}
@@ -58,9 +68,9 @@ public final String getName()
Gets the entry name.
-
Value: The entry name. It can be a file or directory name.
+
**Returns:**
java.lang.String
### getModificationDateTime() {#getModificationDateTime--}
@@ -70,8 +80,8 @@ public final Date getModificationDateTime()
Gets the last modification date and time.
-
Value: The last modification date and time.
+
**Returns:**
java.util.Date
diff --git a/english/java/com.groupdocs.metadata.core/sevenzippackage/_index.md b/english/java/com.groupdocs.metadata.core/sevenzippackage/_index.md
index 7315641a34..18fb1ef921 100644
--- a/english/java/com.groupdocs.metadata.core/sevenzippackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/sevenzippackage/_index.md
@@ -14,39 +14,38 @@ public final class SevenZipPackage extends CustomPackage
Represents ZIP archive metadata.
---------------------
+
+
+*** ** * ** ***
> ```
-> The following code snippet shows how to get metadata from a ZIP archive.
>
-> Encoding encoding = Encoding.GetEncoding(866);
-> using (Metadata metadata = new Metadata(Constants.InputSevenZip))
-> {
-> var root = metadata.GetRootPackage();
-> Console.WriteLine(root.SevenZipPackage.TotalEntries);
-> foreach (var file in root.SevenZipPackage.Files)
-> {
-> Console.WriteLine(file.Name);
-> Console.WriteLine(file.CompressedSize);
-> Console.WriteLine(file.ModificationDateTime);
-> Console.WriteLine(file.UncompressedSize);
-> // Use a specific encoding for the file names
-> Console.WriteLine(encoding.GetString(file.RawName));
-> }
-> }
+> The following code snippet shows how to get metadata from a ZIP archive.
+>
+>
> ```
---------------------
+
+
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getFiles()](#getFiles--) | Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive. |
-| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive. |
+| [getFiles()](#getFiles--) | Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
+ |
+| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive.
+ |
### getFiles() {#getFiles--}
```
public final SevenZipFile[] getFiles()
@@ -54,9 +53,9 @@ public final SevenZipFile[] getFiles()
Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
-
Value: An array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
+
**Returns:**
com.groupdocs.metadata.core.SevenZipFile[]
### getTotalEntries() {#getTotalEntries--}
@@ -66,8 +65,8 @@ public final long getTotalEntries()
Gets the total number of entries inside the ZIP archive.
-
Value: The total number of entries inside the ZIP archive.
+
**Returns:**
long
diff --git a/english/java/com.groupdocs.metadata.core/sevenziprootpackage/_index.md b/english/java/com.groupdocs.metadata.core/sevenziprootpackage/_index.md
index 20da9f8d18..d9053c1547 100644
--- a/english/java/com.groupdocs.metadata.core/sevenziprootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/sevenziprootpackage/_index.md
@@ -14,38 +14,36 @@ public class SevenZipRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a ZIP archive.
---------------------
+
+
+*** ** * ** ***
> ```
-> The following code snippet shows how to get metadata from a ZIP archive.
>
-> Encoding encoding = Encoding.GetEncoding(866);
-> using (Metadata metadata = new Metadata(Constants.InputSevenZip))
-> {
-> var root = metadata.GetRootPackage();
-> Console.WriteLine(root.SevenZipPackage.TotalEntries);
-> foreach (var file in root.SevenZipPackage.Files)
-> {
-> Console.WriteLine(file.Name);
-> Console.WriteLine(file.CompressedSize);
-> Console.WriteLine(file.ModificationDateTime);
-> Console.WriteLine(file.UncompressedSize);
-> // Use a specific encoding for the file names
-> Console.WriteLine(encoding.GetString(file.RawName));
-> }
-> }
+> The following code snippet shows how to get metadata from a ZIP archive.
+>
+>
> ```
---------------------
+
+
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getSevenZipPackage()](#getSevenZipPackage--) | Gets the ZIP metadata package. |
+| [getSevenZipPackage()](#getSevenZipPackage--) | Gets the ZIP metadata package.
+ |
### getSevenZipPackage() {#getSevenZipPackage--}
```
public final SevenZipPackage getSevenZipPackage()
@@ -53,14 +51,19 @@ public final SevenZipPackage getSevenZipPackage()
Gets the ZIP metadata package.
-
Value: The ZIP metadata package.
---------------------
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
**Returns:**
[SevenZipPackage](../../com.groupdocs.metadata.core/sevenzippackage)
diff --git a/english/java/com.groupdocs.metadata.core/sonymakernotepackage/_index.md b/english/java/com.groupdocs.metadata.core/sonymakernotepackage/_index.md
index 6808a72e6f..c1d2209e6c 100644
--- a/english/java/com.groupdocs.metadata.core/sonymakernotepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/sonymakernotepackage/_index.md
@@ -13,35 +13,61 @@ public final class SonyMakerNotePackage extends MakerNotePackage
```
Represents SONY MakerNote metadata.
+
## Methods
| Method | Description |
| --- | --- |
-| [getHeader()](#getHeader--) | Gets the MakerNote header. |
-| [getQuality()](#getQuality--) | Gets the image quality. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets the white balance. |
-| [getTeleconverter()](#getTeleconverter--) | Gets the teleconverter type. |
-| [getMultiBurstMode()](#getMultiBurstMode--) | Gets a value indicating whether the multi burst mode is on. |
-| [getMultiBurstImageWidth()](#getMultiBurstImageWidth--) | Gets the width of the multi burst image. |
-| [getMultiBurstImageHeight()](#getMultiBurstImageHeight--) | Gets the height of the multi burst image. |
-| [getRating()](#getRating--) | Gets the rating. |
-| [getContrast()](#getContrast--) | Gets the contrast. |
-| [getSaturation()](#getSaturation--) | Gets the saturation. |
-| [getSharpness()](#getSharpness--) | Gets the sharpness. |
-| [getBrightness()](#getBrightness--) | Gets the brightness. |
-| [getPictureEffect()](#getPictureEffect--) | Gets the picture effect. |
-| [getSoftSkinEffect()](#getSoftSkinEffect--) | Gets the soft skin effect. |
-| [getSonyModelID()](#getSonyModelID--) | Gets the sony model identifier. |
-| [getCreativeStyle()](#getCreativeStyle--) | Gets the creative style. |
-| [getColorTemperature()](#getColorTemperature--) | Gets the color temperature. |
-| [getColorMode()](#getColorMode--) | Gets the color mode. |
-| [getMacro()](#getMacro--) | Gets the macro. |
-| [getExposureMode()](#getExposureMode--) | Gets the exposure mode. |
-| [getFocusMode()](#getFocusMode--) | Gets the focus mode. |
-| [getJpegQuality()](#getJpegQuality--) | Gets the JPEG quality. |
-| [getAFIlluminator()](#getAFIlluminator--) | Gets the AF illuminator type. |
-| [getFlashLevel()](#getFlashLevel--) | Gets the flash level. |
-| [getReleaseMode()](#getReleaseMode--) | Gets the release mode. |
+| [getHeader()](#getHeader--) | Gets the MakerNote header.
+ |
+| [getQuality()](#getQuality--) | Gets the image quality.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets the white balance.
+ |
+| [getTeleconverter()](#getTeleconverter--) | Gets the teleconverter type.
+ |
+| [getMultiBurstMode()](#getMultiBurstMode--) | Gets a value indicating whether the multi burst mode is on.
+ |
+| [getMultiBurstImageWidth()](#getMultiBurstImageWidth--) | Gets the width of the multi burst image.
+ |
+| [getMultiBurstImageHeight()](#getMultiBurstImageHeight--) | Gets the height of the multi burst image.
+ |
+| [getRating()](#getRating--) | Gets the rating.
+ |
+| [getContrast()](#getContrast--) | Gets the contrast.
+ |
+| [getSaturation()](#getSaturation--) | Gets the saturation.
+ |
+| [getSharpness()](#getSharpness--) | Gets the sharpness.
+ |
+| [getBrightness()](#getBrightness--) | Gets the brightness.
+ |
+| [getPictureEffect()](#getPictureEffect--) | Gets the picture effect.
+ |
+| [getSoftSkinEffect()](#getSoftSkinEffect--) | Gets the soft skin effect.
+ |
+| [getSonyModelID()](#getSonyModelID--) | Gets the sony model identifier.
+ |
+| [getCreativeStyle()](#getCreativeStyle--) | Gets the creative style.
+ |
+| [getColorTemperature()](#getColorTemperature--) | Gets the color temperature.
+ |
+| [getColorMode()](#getColorMode--) | Gets the color mode.
+ |
+| [getMacro()](#getMacro--) | Gets the macro.
+ |
+| [getExposureMode()](#getExposureMode--) | Gets the exposure mode.
+ |
+| [getFocusMode()](#getFocusMode--) | Gets the focus mode.
+ |
+| [getJpegQuality()](#getJpegQuality--) | Gets the JPEG quality.
+ |
+| [getAFIlluminator()](#getAFIlluminator--) | Gets the AF illuminator type.
+ |
+| [getFlashLevel()](#getFlashLevel--) | Gets the flash level.
+ |
+| [getReleaseMode()](#getReleaseMode--) | Gets the release mode.
+ |
### getHeader() {#getHeader--}
```
public final String getHeader()
@@ -50,8 +76,10 @@ public final String getHeader()
Gets the MakerNote header.
+
**Returns:**
java.lang.String - The MakerNote header.
+
### getQuality() {#getQuality--}
```
public final Long getQuality()
@@ -60,8 +88,10 @@ public final Long getQuality()
Gets the image quality.
+
**Returns:**
java.lang.Long - The image quality.
+
### getWhiteBalance() {#getWhiteBalance--}
```
public final Long getWhiteBalance()
@@ -70,8 +100,10 @@ public final Long getWhiteBalance()
Gets the white balance.
+
**Returns:**
java.lang.Long - The white balance.
+
### getTeleconverter() {#getTeleconverter--}
```
public final Long getTeleconverter()
@@ -80,8 +112,10 @@ public final Long getTeleconverter()
Gets the teleconverter type.
+
**Returns:**
java.lang.Long - The teleconverter type.
+
### getMultiBurstMode() {#getMultiBurstMode--}
```
public final boolean getMultiBurstMode()
@@ -90,8 +124,10 @@ public final boolean getMultiBurstMode()
Gets a value indicating whether the multi burst mode is on.
+
**Returns:**
boolean - true if the multi burst mode is on; otherwise, false .
+
### getMultiBurstImageWidth() {#getMultiBurstImageWidth--}
```
public final Integer getMultiBurstImageWidth()
@@ -100,8 +136,10 @@ public final Integer getMultiBurstImageWidth()
Gets the width of the multi burst image.
+
**Returns:**
java.lang.Integer - The width of the multi burst image.
+
### getMultiBurstImageHeight() {#getMultiBurstImageHeight--}
```
public final Integer getMultiBurstImageHeight()
@@ -110,8 +148,10 @@ public final Integer getMultiBurstImageHeight()
Gets the height of the multi burst image.
+
**Returns:**
java.lang.Integer - The height of the multi burst image.
+
### getRating() {#getRating--}
```
public final Long getRating()
@@ -120,8 +160,10 @@ public final Long getRating()
Gets the rating.
+
**Returns:**
java.lang.Long - The rating.
+
### getContrast() {#getContrast--}
```
public final Integer getContrast()
@@ -130,8 +172,10 @@ public final Integer getContrast()
Gets the contrast.
+
**Returns:**
java.lang.Integer - The contrast.
+
### getSaturation() {#getSaturation--}
```
public final Integer getSaturation()
@@ -140,8 +184,10 @@ public final Integer getSaturation()
Gets the saturation.
+
**Returns:**
java.lang.Integer - The saturation.
+
### getSharpness() {#getSharpness--}
```
public final Integer getSharpness()
@@ -150,8 +196,10 @@ public final Integer getSharpness()
Gets the sharpness.
+
**Returns:**
java.lang.Integer - The sharpness.
+
### getBrightness() {#getBrightness--}
```
public final Integer getBrightness()
@@ -160,8 +208,10 @@ public final Integer getBrightness()
Gets the brightness.
+
**Returns:**
java.lang.Integer - The brightness.
+
### getPictureEffect() {#getPictureEffect--}
```
public final Integer getPictureEffect()
@@ -170,8 +220,10 @@ public final Integer getPictureEffect()
Gets the picture effect.
+
**Returns:**
java.lang.Integer - The picture effect.
+
### getSoftSkinEffect() {#getSoftSkinEffect--}
```
public final Long getSoftSkinEffect()
@@ -180,8 +232,10 @@ public final Long getSoftSkinEffect()
Gets the soft skin effect.
+
**Returns:**
java.lang.Long - The soft skin effect.
+
### getSonyModelID() {#getSonyModelID--}
```
public final Integer getSonyModelID()
@@ -190,8 +244,10 @@ public final Integer getSonyModelID()
Gets the sony model identifier.
+
**Returns:**
java.lang.Integer - The sony model identifier.
+
### getCreativeStyle() {#getCreativeStyle--}
```
public final String getCreativeStyle()
@@ -200,8 +256,10 @@ public final String getCreativeStyle()
Gets the creative style.
+
**Returns:**
java.lang.String - The creative style.
+
### getColorTemperature() {#getColorTemperature--}
```
public final Long getColorTemperature()
@@ -210,8 +268,10 @@ public final Long getColorTemperature()
Gets the color temperature.
+
**Returns:**
java.lang.Long - The color temperature.
+
### getColorMode() {#getColorMode--}
```
public final Long getColorMode()
@@ -220,8 +280,10 @@ public final Long getColorMode()
Gets the color mode.
+
**Returns:**
java.lang.Long - The color mode.
+
### getMacro() {#getMacro--}
```
public final Integer getMacro()
@@ -230,8 +292,10 @@ public final Integer getMacro()
Gets the macro.
+
**Returns:**
java.lang.Integer - The macro.
+
### getExposureMode() {#getExposureMode--}
```
public final Integer getExposureMode()
@@ -240,8 +304,10 @@ public final Integer getExposureMode()
Gets the exposure mode.
+
**Returns:**
java.lang.Integer - The exposure mode.
+
### getFocusMode() {#getFocusMode--}
```
public final Integer getFocusMode()
@@ -250,8 +316,10 @@ public final Integer getFocusMode()
Gets the focus mode.
+
**Returns:**
java.lang.Integer - The focus mode.
+
### getJpegQuality() {#getJpegQuality--}
```
public final Integer getJpegQuality()
@@ -260,8 +328,10 @@ public final Integer getJpegQuality()
Gets the JPEG quality.
+
**Returns:**
java.lang.Integer - The JPEG quality.
+
### getAFIlluminator() {#getAFIlluminator--}
```
public final Integer getAFIlluminator()
@@ -270,8 +340,10 @@ public final Integer getAFIlluminator()
Gets the AF illuminator type.
+
**Returns:**
java.lang.Integer - The AF illuminator type.
+
### getFlashLevel() {#getFlashLevel--}
```
public final Short getFlashLevel()
@@ -280,8 +352,10 @@ public final Short getFlashLevel()
Gets the flash level.
+
**Returns:**
java.lang.Short - The flash level.
+
### getReleaseMode() {#getReleaseMode--}
```
public final Integer getReleaseMode()
@@ -290,5 +364,7 @@ public final Integer getReleaseMode()
Gets the release mode.
+
**Returns:**
java.lang.Integer - The release mode.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetcomment/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetcomment/_index.md
index 0bf76976b6..e84d8c75b3 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetcomment/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetcomment/_index.md
@@ -14,21 +14,28 @@ public class SpreadsheetComment extends CustomPackage
Represents a user comment in a spreadsheet.
+
**Learn more**
- * [Working with metadata in Spreadsheets][]
+* [Working with metadata in Spreadsheets](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets)
+
+
-[Working with metadata in Spreadsheets]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the author of the comment. |
-| [getText()](#getText--) | Gets the comment text. |
-| [getSheetNumber()](#getSheetNumber--) | Gets the sheet number. |
-| [getRow()](#getRow--) | Gets the one-based row index of the comment. |
-| [getColumn()](#getColumn--) | Gets the one-based column index of the comment. |
+| [getAuthor()](#getAuthor--) | Gets the author of the comment.
+ |
+| [getText()](#getText--) | Gets the comment text.
+ |
+| [getSheetNumber()](#getSheetNumber--) | Gets the sheet number.
+ |
+| [getRow()](#getRow--) | Gets the one-based row index of the comment.
+ |
+| [getColumn()](#getColumn--) | Gets the one-based column index of the comment.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -37,8 +44,10 @@ public final String getAuthor()
Gets the author of the comment.
+
**Returns:**
java.lang.String - The author of the comment.
+
### getText() {#getText--}
```
public final String getText()
@@ -47,8 +56,10 @@ public final String getText()
Gets the comment text.
+
**Returns:**
java.lang.String - The comment text.
+
### getSheetNumber() {#getSheetNumber--}
```
public final int getSheetNumber()
@@ -57,8 +68,10 @@ public final int getSheetNumber()
Gets the sheet number.
+
**Returns:**
int - The sheet number.
+
### getRow() {#getRow--}
```
public final int getRow()
@@ -67,8 +80,10 @@ public final int getRow()
Gets the one-based row index of the comment.
+
**Returns:**
int - The row index of the comment.
+
### getColumn() {#getColumn--}
```
public final int getColumn()
@@ -77,5 +92,7 @@ public final int getColumn()
Gets the one-based column index of the comment.
+
**Returns:**
int - The column index of the comment.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypepackage/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypepackage/_index.md
index 8db4d486c6..2774940d14 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypepackage/_index.md
@@ -13,15 +13,21 @@ public class SpreadsheetContentTypePackage extends CustomPackage
```
Represents a metadata package containing spreadsheet content type properties.
+
## Methods
| Method | Description |
| --- | --- |
-| [set(String propertyName, String propertyValue)](#set-java.lang.String-java.lang.String-) | Adds or replaces the content type property with the specified name. |
-| [set(String propertyName, String propertyValue, String propertyType)](#set-java.lang.String-java.lang.String-java.lang.String-) | Adds or replaces the content type property with the specified name. |
-| [remove(String propertyName)](#remove-java.lang.String-) | Removes the content type property with the specified name. |
-| [clear()](#clear--) | Removes all writable metadata properties. |
-| [toList()](#toList--) | Creates a list from the package. |
+| [set(String propertyName, String propertyValue)](#set-java.lang.String-java.lang.String-) | Adds or replaces the content type property with the specified name.
+ |
+| [set(String propertyName, String propertyValue, String propertyType)](#set-java.lang.String-java.lang.String-java.lang.String-) | Adds or replaces the content type property with the specified name.
+ |
+| [remove(String propertyName)](#remove-java.lang.String-) | Removes the content type property with the specified name.
+ |
+| [clear()](#clear--) | Removes all writable metadata properties.
+ |
+| [toList()](#toList--) | Creates a list from the package.
+ |
### set(String propertyName, String propertyValue) {#set-java.lang.String-java.lang.String-}
```
public final void set(String propertyName, String propertyValue)
@@ -30,11 +36,14 @@ public final void set(String propertyName, String propertyValue)
Adds or replaces the content type property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| propertyValue | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| propertyValue | java.lang.String | The property value.
+ |
### set(String propertyName, String propertyValue, String propertyType) {#set-java.lang.String-java.lang.String-java.lang.String-}
```
@@ -44,12 +53,16 @@ public final void set(String propertyName, String propertyValue, String property
Adds or replaces the content type property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| propertyValue | java.lang.String | The property value. |
-| propertyType | java.lang.String | The property type. |
+| propertyName | java.lang.String | The property name.
+ |
+| propertyValue | java.lang.String | The property value.
+ |
+| propertyType | java.lang.String | The property type.
+ |
### remove(String propertyName) {#remove-java.lang.String-}
```
@@ -59,13 +72,16 @@ public final boolean remove(String propertyName)
Removes the content type property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The name of the content type property to be removed. |
+| propertyName | java.lang.String | The name of the content type property to be removed.
+ |
**Returns:**
boolean - true if the property is found and deleted; otherwise false .
+
### clear() {#clear--}
```
public final void clear()
@@ -74,6 +90,7 @@ public final void clear()
Removes all writable metadata properties.
+
### toList() {#toList--}
```
public final IReadOnlyList toList()
@@ -82,5 +99,7 @@ public final IReadOnlyList toList()
Creates a list from the package.
+
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A list that contains properties from the package.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypeproperty/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypeproperty/_index.md
index 7173cd5588..9223bf484e 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypeproperty/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetcontenttypeproperty/_index.md
@@ -13,12 +13,15 @@ public final class SpreadsheetContentTypeProperty extends MetadataProperty
```
Represents a content type property in a spreadsheet.
+
## Methods
| Method | Description |
| --- | --- |
-| [getSpreadsheetPropertyType()](#getSpreadsheetPropertyType--) | Gets the type of the property. |
-| [getSpreadsheetPropertyValue()](#getSpreadsheetPropertyValue--) | Gets the value of the property. |
+| [getSpreadsheetPropertyType()](#getSpreadsheetPropertyType--) | Gets the type of the property.
+ |
+| [getSpreadsheetPropertyValue()](#getSpreadsheetPropertyValue--) | Gets the value of the property.
+ |
### getSpreadsheetPropertyType() {#getSpreadsheetPropertyType--}
```
public final String getSpreadsheetPropertyType()
@@ -27,8 +30,10 @@ public final String getSpreadsheetPropertyType()
Gets the type of the property.
+
**Returns:**
java.lang.String - The type of the property.
+
### getSpreadsheetPropertyValue() {#getSpreadsheetPropertyValue--}
```
public final String getSpreadsheetPropertyValue()
@@ -37,5 +42,7 @@ public final String getSpreadsheetPropertyValue()
Gets the value of the property.
+
**Returns:**
java.lang.String - The value of the property.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetformat/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetformat/_index.md
index ea9ecf6beb..58c3fbb5bc 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetformat/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetformat/_index.md
@@ -16,19 +16,29 @@ public enum SpreadsheetFormat extends Enum implements IEnumVa
```
Defines various spreadsheet subformats.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The format is not recognized. |
-| [Xls](#Xls) | Represents the .XLS Excel format. |
-| [Xlsb](#Xlsb) | Represents the .XLSB Excel format. |
-| [Xlsx](#Xlsx) | Represents the .XLSX Excel format. |
-| [Xlsm](#Xlsm) | Represents the .XLSM Excel format. |
-| [Xltx](#Xltx) | Represents the .XLTX Excel format. |
-| [Xltm](#Xltm) | Represents the .XLTM Excel format. |
-| [Ods](#Ods) | Represents the Opendocument Spreadsheet format. |
-| [Xlt](#Xlt) | Represents the .XLT Excel format. |
+| [Unknown](#Unknown) | The format is not recognized.
+ |
+| [Xls](#Xls) | Represents the .XLS Excel format.
+ |
+| [Xlsb](#Xlsb) | Represents the .XLSB Excel format.
+ |
+| [Xlsx](#Xlsx) | Represents the .XLSX Excel format.
+ |
+| [Xlsm](#Xlsm) | Represents the .XLSM Excel format.
+ |
+| [Xltx](#Xltx) | Represents the .XLTX Excel format.
+ |
+| [Xltm](#Xltm) | Represents the .XLTM Excel format.
+ |
+| [Ods](#Ods) | Represents the Opendocument Spreadsheet format.
+ |
+| [Xlt](#Xlt) | Represents the .XLT Excel format.
+ |
## Methods
| Method | Description |
@@ -50,27 +60,35 @@ public static final SpreadsheetFormat Unknown
The format is not recognized.
+
### Xls {#Xls}
```
public static final SpreadsheetFormat Xls
```
-Represents the .XLS Excel format. Files with XLS extension represent Excel Binary File Format. Such files can be created by Microsoft Excel as well as other similar spreadsheet programs such as OpenOffice Calc or Apple Numbers. File saved by Excel is known as Workbook where each workbook can have one or more worksheets. Learn more about this file format [here][] .
+Represents the .XLS Excel format.
+Files with XLS extension represent Excel Binary File Format.
+Such files can be created by Microsoft Excel as well as other similar spreadsheet programs such as OpenOffice Calc or Apple Numbers.
+File saved by Excel is known as Workbook where each workbook can have one or more worksheets.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xls/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xls/
-
### Xlsb {#Xlsb}
```
public static final SpreadsheetFormat Xlsb
```
-Represents the .XLSB Excel format. XLSB file format specifies the Excel Binary File Format, which is a collection of records and structures that specify Excel workbook content. The content can include unstructured or semi-structured tables of numbers, text, or both numbers and text, formulas, external data connections, charts and images. Learn more about this file format [here][] .
-
+Represents the .XLSB Excel format.
+XLSB file format specifies the Excel Binary File Format, which is a collection of records and structures that specify Excel workbook content.
+The content can include unstructured or semi-structured tables of numbers, text, or both numbers and text, formulas, external data connections, charts and images.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xlsb/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xlsb/
### Xlsx {#Xlsx}
```
@@ -78,21 +96,29 @@ public static final SpreadsheetFormat Xlsx
```
-Represents the .XLSX Excel format. XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release of Microsoft Office 2007. Based on structure organized according to the Open Packaging Conventions as outlined in Part 2 of the OOXML standard ECMA-376, the new format is a zip package that contains a number of XML files. Learn more about this file format [here][] .
+Represents the .XLSX Excel format.
+XLSX is well-known format for Microsoft Excel documents that was introduced by Microsoft with the release of Microsoft Office 2007.
+Based on structure organized according to the Open Packaging Conventions as outlined in Part 2 of the OOXML standard ECMA-376,
+the new format is a zip package that contains a number of XML files.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xlsx/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xlsx/
-
### Xlsm {#Xlsm}
```
public static final SpreadsheetFormat Xlsm
```
-Represents the .XLSM Excel format. Files with XLSM extension is a type of Spreasheet files that support Macros. From application point of view, a Macro is set of instructions that are used for automating processes. A macro is used to record the steps that are performed repeatedly and facilitates performing the actions by running the macro again. Learn more about this file format [here][] .
-
+Represents the .XLSM Excel format.
+Files with XLSM extension is a type of Spreasheet files that support Macros.
+From application point of view, a Macro is set of instructions that are used for automating processes.
+A macro is used to record the steps that are performed repeatedly and facilitates performing the actions by running the macro again.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xlsm/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xlsm/
### Xltx {#Xltx}
```
@@ -100,21 +126,28 @@ public static final SpreadsheetFormat Xltx
```
-Represents the .XLTX Excel format. Files with XLTX extension represent Microsoft Excel Template files that are based on the Office OpenXML file format specifications. It is used to create a standard template file that can be utilized to generate XLSX files that exhibit the same settings as specified in the XLTX file. Learn more about this file format [here][] .
+Represents the .XLTX Excel format.
+Files with XLTX extension represent Microsoft Excel Template files that are based on the Office OpenXML file format specifications.
+It is used to create a standard template file that can be utilized to generate XLSX files that exhibit the same settings as specified in the XLTX file.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xltx/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xltx/
-
### Xltm {#Xltm}
```
public static final SpreadsheetFormat Xltm
```
-Represents the .XLTM Excel format. The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled template files. XLTM files are similar to XLTX in structure other than that the later doesn't support creating template files with macros. Such template files are used to generate and set the layout, formatting, and other settings along with the macros to facilitate creating similar XLSX files then. Learn more about this file format [here][] .
-
+Represents the .XLTM Excel format.
+The XLTM file extension represents files that are generated by Microsoft Excel as Macro-enabled template files.
+XLTM files are similar to XLTX in structure other than that the later doesn't support creating template files with macros.
+Such template files are used to generate and set the layout, formatting, and other settings along with the macros to facilitate creating similar XLSX files then.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xltm/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xltm/
### Ods {#Ods}
```
@@ -122,21 +155,29 @@ public static final SpreadsheetFormat Ods
```
-Represents the Opendocument Spreadsheet format. Files with ODS extension stand for OpenDocument Spreadsheet Document format that are editable by user. Data is stored inside ODF file into rows and columns. It is XML-based format and is one of the several subtypes in the Open Document Formats (ODF) family. Learn more about this file format [here][] .
+Represents the Opendocument Spreadsheet format.
+Files with ODS extension stand for OpenDocument Spreadsheet Document format that are editable by user.
+Data is stored inside ODF file into rows and columns.
+It is XML-based format and is one of the several subtypes in the Open Document Formats (ODF) family.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/ods/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/ods/
-
### Xlt {#Xlt}
```
public static final SpreadsheetFormat Xlt
```
-Represents the .XLT Excel format. Files with .XLT extension are template files created with Microsoft Excel which is a spreadsheet application which comes as part of Microsoft Office suite. Microsoft Office 97-2003 supported creating new XLT files as well as opening these. The latest version of Excel is still capable of opening this old format template files. Learn more about this file format [here][] .
-
+Represents the .XLT Excel format.
+Files with .XLT extension are template files created with Microsoft Excel which is a spreadsheet application which comes as part of Microsoft Office suite.
+Microsoft Office 97-2003 supported creating new XLT files as well as opening these.
+The latest version of Excel is still capable of opening this old format template files.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/spreadsheet/xlt/)
+.
-[here]: https://wiki.fileformat.com/spreadsheet/xlt/
### values() {#values--}
```
@@ -196,6 +237,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -206,6 +248,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -221,6 +264,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -236,6 +280,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -246,5 +291,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetinspectionpackage/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetinspectionpackage/_index.md
index 00e2fe3a29..ca99ddb157 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetinspectionpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetinspectionpackage/_index.md
@@ -14,24 +14,34 @@ public final class SpreadsheetInspectionPackage extends CustomPackage
Contains information about spreadsheet parts that can be considered as metadata in some cases.
+
**Learn more**
- * [Working with metadata in Spreadsheets][]
+* [Working with metadata in Spreadsheets](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets)
+
+
-[Working with metadata in Spreadsheets]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets
## Methods
| Method | Description |
| --- | --- |
-| [getComments()](#getComments--) | Gets an array of the user comments. |
-| [getHiddenSheets()](#getHiddenSheets--) | Gets an array of the hidden sheets. |
-| [getDigitalSignatures()](#getDigitalSignatures--) | Gets an array of digital signatures presented in the document. |
-| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification. |
-| [clearComments()](#clearComments--) | Removes all detected user comments from the spreadsheet. |
-| [clearHiddenSheets()](#clearHiddenSheets--) | Removes all detected hidden sheets from the spreadsheet. |
-| [clearDigitalSignatures()](#clearDigitalSignatures--) | Removes all detected digital signatures from the spreadsheet. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [getComments()](#getComments--) | Gets an array of the user comments.
+ |
+| [getHiddenSheets()](#getHiddenSheets--) | Gets an array of the hidden sheets.
+ |
+| [getDigitalSignatures()](#getDigitalSignatures--) | Gets an array of digital signatures presented in the document.
+ |
+| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification.
+ |
+| [clearComments()](#clearComments--) | Removes all detected user comments from the spreadsheet.
+ |
+| [clearHiddenSheets()](#clearHiddenSheets--) | Removes all detected hidden sheets from the spreadsheet.
+ |
+| [clearDigitalSignatures()](#clearDigitalSignatures--) | Removes all detected digital signatures from the spreadsheet.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
### getComments() {#getComments--}
```
public final SpreadsheetComment[] getComments()
@@ -40,8 +50,10 @@ public final SpreadsheetComment[] getComments()
Gets an array of the user comments.
+
**Returns:**
com.groupdocs.metadata.core.SpreadsheetComment[] - The user comments.
+
### getHiddenSheets() {#getHiddenSheets--}
```
public final SpreadsheetSheet[] getHiddenSheets()
@@ -50,8 +62,10 @@ public final SpreadsheetSheet[] getHiddenSheets()
Gets an array of the hidden sheets.
+
**Returns:**
com.groupdocs.metadata.core.SpreadsheetSheet[] - The hidden sheets.
+
### getDigitalSignatures() {#getDigitalSignatures--}
```
public final DigitalSignature[] getDigitalSignatures()
@@ -60,8 +74,10 @@ public final DigitalSignature[] getDigitalSignatures()
Gets an array of digital signatures presented in the document.
+
**Returns:**
com.groupdocs.metadata.core.DigitalSignature[] - The digital signatures.
+
### removeProperties(Specification specification) {#removeProperties-com.groupdocs.metadata.search.Specification-}
```
public int removeProperties(Specification specification)
@@ -70,13 +86,16 @@ public int removeProperties(Specification specification)
Removes metadata properties satisfying a specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
**Returns:**
int - The number of affected properties.
+
### clearComments() {#clearComments--}
```
public final void clearComments()
@@ -85,6 +104,7 @@ public final void clearComments()
Removes all detected user comments from the spreadsheet.
+
### clearHiddenSheets() {#clearHiddenSheets--}
```
public final void clearHiddenSheets()
@@ -93,6 +113,7 @@ public final void clearHiddenSheets()
Removes all detected hidden sheets from the spreadsheet.
+
### clearDigitalSignatures() {#clearDigitalSignatures--}
```
public final void clearDigitalSignatures()
@@ -101,13 +122,17 @@ public final void clearDigitalSignatures()
Removes all detected digital signatures from the spreadsheet.
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetpackage/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetpackage/_index.md
index 1424016702..dbe5adf3d9 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetpackage/_index.md
@@ -14,15 +14,18 @@ public class SpreadsheetPackage extends DocumentPackage
Represents a native metadata package in a spreadsheet.
+
**Learn more**
- * [Working with metadata in Spreadsheets][]
+* [Working with metadata in Spreadsheets](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets)
-This example shows how to update built-in metadata properties in a spreadsheet.
+
+This example shows how to update built-in metadata properties in a spreadsheet.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputXlsx)) {
> SpreadsheetRootPackage root = metadata.getRootPackageGeneric();
> root.getDocumentProperties().setAuthor("test author");
@@ -35,62 +38,109 @@ This example shows how to update built-in metadata properties in a spreadsheet.
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Spreadsheets]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets
## Methods
| Method | Description |
| --- | --- |
-| [getLanguage()](#getLanguage--) | Gets the document language. |
-| [setLanguage(String value)](#setLanguage-java.lang.String-) | Sets the document language. |
-| [getAuthor()](#getAuthor--) | Gets the document author. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document author. |
-| [getCategory()](#getCategory--) | Gets the category. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category. |
-| [getComments()](#getComments--) | Gets the comments. |
-| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments. |
-| [getCompany()](#getCompany--) | Gets the company. |
-| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company. |
-| [getContentStatus()](#getContentStatus--) | Gets the content status. |
-| [setContentStatus(String value)](#setContentStatus-java.lang.String-) | Sets the content status. |
-| [getContentType()](#getContentType--) | Gets the content type. |
-| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type. |
-| [getCreatedTime()](#getCreatedTime--) | Gets the document created date. |
-| [setCreatedTime(Date value)](#setCreatedTime-java.util.Date-) | Sets the document created date. |
-| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the total editing time in minutes. |
-| [setTotalEditingTime(Double value)](#setTotalEditingTime-java.lang.Double-) | Sets the total editing time in minutes. |
-| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base. |
-| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getLastSavedTime()](#getLastSavedTime--) | Gets the time of the last saving in UTC. |
-| [setLastSavedTime(Date value)](#setLastSavedTime-java.util.Date-) | Sets the time of the last saving in UTC. |
-| [getLastPrintedDate()](#getLastPrintedDate--) | Gets the last printed date in UTC. |
-| [setLastPrintedDate(Date value)](#setLastPrintedDate-java.util.Date-) | Sets the last printed date in UTC. |
-| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last author. |
-| [setLastSavedBy(String value)](#setLastSavedBy-java.lang.String-) | Sets the name of the last author. |
-| [getManager()](#getManager--) | Gets the manager. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets the manager. |
-| [getNameOfApplication()](#getNameOfApplication--) | Gets the name of application. |
-| [setNameOfApplication(String value)](#setNameOfApplication-java.lang.String-) | Sets the name of application. |
-| [getRevision()](#getRevision--) | Gets the document revision number. |
-| [setRevision(String value)](#setRevision-java.lang.String-) | Sets the document revision number. |
-| [getSubject()](#getSubject--) | Gets the subject. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject. |
-| [getTemplate()](#getTemplate--) | Gets the document template name. |
-| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets the document template name. |
-| [getTitle()](#getTitle--) | Gets the title of the document. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document. |
-| [getVersion()](#getVersion--) | Gets the version number of the application that created the document. |
-| [setVersion(String value)](#setVersion-java.lang.String-) | Sets the version number of the application that created the document. |
-| [getContentTypeProperties()](#getContentTypeProperties--) | Gets the metadata package containing the content type properties. |
-| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name. |
+| [getLanguage()](#getLanguage--) | Gets the document language.
+ |
+| [setLanguage(String value)](#setLanguage-java.lang.String-) | Sets the document language.
+ |
+| [getAuthor()](#getAuthor--) | Gets the document author.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document author.
+ |
+| [getCategory()](#getCategory--) | Gets the category.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category.
+ |
+| [getComments()](#getComments--) | Gets the comments.
+ |
+| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments.
+ |
+| [getCompany()](#getCompany--) | Gets the company.
+ |
+| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company.
+ |
+| [getContentStatus()](#getContentStatus--) | Gets the content status.
+ |
+| [setContentStatus(String value)](#setContentStatus-java.lang.String-) | Sets the content status.
+ |
+| [getContentType()](#getContentType--) | Gets the content type.
+ |
+| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type.
+ |
+| [getCreatedTime()](#getCreatedTime--) | Gets the document created date.
+ |
+| [setCreatedTime(Date value)](#setCreatedTime-java.util.Date-) | Sets the document created date.
+ |
+| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the total editing time in minutes.
+ |
+| [setTotalEditingTime(Double value)](#setTotalEditingTime-java.lang.Double-) | Sets the total editing time in minutes.
+ |
+| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base.
+ |
+| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getLastSavedTime()](#getLastSavedTime--) | Gets the time of the last saving in UTC.
+ |
+| [setLastSavedTime(Date value)](#setLastSavedTime-java.util.Date-) | Sets the time of the last saving in UTC.
+ |
+| [getLastPrintedDate()](#getLastPrintedDate--) | Gets the last printed date in UTC.
+ |
+| [setLastPrintedDate(Date value)](#setLastPrintedDate-java.util.Date-) | Sets the last printed date in UTC.
+ |
+| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last author.
+ |
+| [setLastSavedBy(String value)](#setLastSavedBy-java.lang.String-) | Sets the name of the last author.
+ |
+| [getManager()](#getManager--) | Gets the manager.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets the manager.
+ |
+| [getNameOfApplication()](#getNameOfApplication--) | Gets the name of application.
+ |
+| [setNameOfApplication(String value)](#setNameOfApplication-java.lang.String-) | Sets the name of application.
+ |
+| [getRevision()](#getRevision--) | Gets the document revision number.
+ |
+| [setRevision(String value)](#setRevision-java.lang.String-) | Sets the document revision number.
+ |
+| [getSubject()](#getSubject--) | Gets the subject.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject.
+ |
+| [getTemplate()](#getTemplate--) | Gets the document template name.
+ |
+| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets the document template name.
+ |
+| [getTitle()](#getTitle--) | Gets the title of the document.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document.
+ |
+| [getVersion()](#getVersion--) | Gets the version number of the application that created the document.
+ |
+| [setVersion(String value)](#setVersion-java.lang.String-) | Sets the version number of the application that created the document.
+ |
+| [getContentTypeProperties()](#getContentTypeProperties--) | Gets the metadata package containing the content type properties.
+ |
+| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name.
+ |
### getLanguage() {#getLanguage--}
```
public final String getLanguage()
@@ -99,8 +149,10 @@ public final String getLanguage()
Gets the document language.
+
**Returns:**
java.lang.String - The document language.
+
### setLanguage(String value) {#setLanguage-java.lang.String-}
```
public final void setLanguage(String value)
@@ -109,10 +161,12 @@ public final void setLanguage(String value)
Sets the document language.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The document language. |
+| value | java.lang.String | The document language.
+ |
### getAuthor() {#getAuthor--}
```
@@ -122,8 +176,10 @@ public final String getAuthor()
Gets the document author.
+
**Returns:**
java.lang.String - The author.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
@@ -132,10 +188,12 @@ public final void setAuthor(String value)
Sets the document author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author. |
+| value | java.lang.String | The author.
+ |
### getCategory() {#getCategory--}
```
@@ -145,8 +203,10 @@ public final String getCategory()
Gets the category.
+
**Returns:**
java.lang.String - The category.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
@@ -155,10 +215,12 @@ public final void setCategory(String value)
Sets the category.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The category. |
+| value | java.lang.String | The category.
+ |
### getComments() {#getComments--}
```
@@ -168,8 +230,10 @@ public final String getComments()
Gets the comments.
+
**Returns:**
java.lang.String - Comments value.
+
### setComments(String value) {#setComments-java.lang.String-}
```
public final void setComments(String value)
@@ -178,10 +242,12 @@ public final void setComments(String value)
Sets the comments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | Comments value. |
+| value | java.lang.String | Comments value.
+ |
### getCompany() {#getCompany--}
```
@@ -191,8 +257,10 @@ public final String getCompany()
Gets the company.
+
**Returns:**
java.lang.String - The company.
+
### setCompany(String value) {#setCompany-java.lang.String-}
```
public final void setCompany(String value)
@@ -201,10 +269,12 @@ public final void setCompany(String value)
Sets the company.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The company. |
+| value | java.lang.String | The company.
+ |
### getContentStatus() {#getContentStatus--}
```
@@ -214,8 +284,10 @@ public final String getContentStatus()
Gets the content status.
+
**Returns:**
java.lang.String - The content status.
+
### setContentStatus(String value) {#setContentStatus-java.lang.String-}
```
public final void setContentStatus(String value)
@@ -224,10 +296,12 @@ public final void setContentStatus(String value)
Sets the content status.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The content status. |
+| value | java.lang.String | The content status.
+ |
### getContentType() {#getContentType--}
```
@@ -237,8 +311,10 @@ public final String getContentType()
Gets the content type.
+
**Returns:**
java.lang.String - The type of the content.
+
### setContentType(String value) {#setContentType-java.lang.String-}
```
public final void setContentType(String value)
@@ -247,10 +323,12 @@ public final void setContentType(String value)
Sets the content type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The type of the content. |
+| value | java.lang.String | The type of the content.
+ |
### getCreatedTime() {#getCreatedTime--}
```
@@ -260,8 +338,10 @@ public final Date getCreatedTime()
Gets the document created date.
+
**Returns:**
java.util.Date - The created time.
+
### setCreatedTime(Date value) {#setCreatedTime-java.util.Date-}
```
public final void setCreatedTime(Date value)
@@ -270,10 +350,12 @@ public final void setCreatedTime(Date value)
Sets the document created date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The created time. |
+| value | java.util.Date | The created time.
+ |
### getTotalEditingTime() {#getTotalEditingTime--}
```
@@ -283,8 +365,10 @@ public final Double getTotalEditingTime()
Gets the total editing time in minutes.
+
**Returns:**
java.lang.Double - The total editing time.
+
### setTotalEditingTime(Double value) {#setTotalEditingTime-java.lang.Double-}
```
public final void setTotalEditingTime(Double value)
@@ -293,10 +377,12 @@ public final void setTotalEditingTime(Double value)
Sets the total editing time in minutes.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The total editing time. |
+| value | java.lang.Double | The total editing time.
+ |
### getHyperlinkBase() {#getHyperlinkBase--}
```
@@ -306,8 +392,10 @@ public final String getHyperlinkBase()
Gets the hyperlink base.
+
**Returns:**
java.lang.String - The hyperlink base.
+
### setHyperlinkBase(String value) {#setHyperlinkBase-java.lang.String-}
```
public final void setHyperlinkBase(String value)
@@ -316,10 +404,12 @@ public final void setHyperlinkBase(String value)
Sets the hyperlink base.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The hyperlink base. |
+| value | java.lang.String | The hyperlink base.
+ |
### getKeywords() {#getKeywords--}
```
@@ -329,8 +419,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - Keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -339,10 +431,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | Keywords. |
+| value | java.lang.String | Keywords.
+ |
### getLastSavedTime() {#getLastSavedTime--}
```
@@ -352,8 +446,10 @@ public final Date getLastSavedTime()
Gets the time of the last saving in UTC.
+
**Returns:**
java.util.Date - The time of the last saving.
+
### setLastSavedTime(Date value) {#setLastSavedTime-java.util.Date-}
```
public final void setLastSavedTime(Date value)
@@ -362,10 +458,12 @@ public final void setLastSavedTime(Date value)
Sets the time of the last saving in UTC.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The time of the last saving. |
+| value | java.util.Date | The time of the last saving.
+ |
### getLastPrintedDate() {#getLastPrintedDate--}
```
@@ -375,8 +473,10 @@ public final Date getLastPrintedDate()
Gets the last printed date in UTC.
+
**Returns:**
java.util.Date - The last printed date.
+
### setLastPrintedDate(Date value) {#setLastPrintedDate-java.util.Date-}
```
public final void setLastPrintedDate(Date value)
@@ -385,10 +485,12 @@ public final void setLastPrintedDate(Date value)
Sets the last printed date in UTC.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The last printed date. |
+| value | java.util.Date | The last printed date.
+ |
### getLastSavedBy() {#getLastSavedBy--}
```
@@ -398,8 +500,10 @@ public final String getLastSavedBy()
Gets the name of the last author.
+
**Returns:**
java.lang.String - The name of the last author.
+
### setLastSavedBy(String value) {#setLastSavedBy-java.lang.String-}
```
public final void setLastSavedBy(String value)
@@ -408,10 +512,12 @@ public final void setLastSavedBy(String value)
Sets the name of the last author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the last author. |
+| value | java.lang.String | The name of the last author.
+ |
### getManager() {#getManager--}
```
@@ -421,8 +527,10 @@ public final String getManager()
Gets the manager.
+
**Returns:**
java.lang.String - The manager.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
@@ -431,10 +539,12 @@ public final void setManager(String value)
Sets the manager.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The manager. |
+| value | java.lang.String | The manager.
+ |
### getNameOfApplication() {#getNameOfApplication--}
```
@@ -444,8 +554,10 @@ public final String getNameOfApplication()
Gets the name of application.
+
**Returns:**
java.lang.String - The name of application.
+
### setNameOfApplication(String value) {#setNameOfApplication-java.lang.String-}
```
public final void setNameOfApplication(String value)
@@ -454,10 +566,12 @@ public final void setNameOfApplication(String value)
Sets the name of application.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of application. |
+| value | java.lang.String | The name of application.
+ |
### getRevision() {#getRevision--}
```
@@ -467,8 +581,10 @@ public final String getRevision()
Gets the document revision number.
+
**Returns:**
java.lang.String - The revision number.
+
### setRevision(String value) {#setRevision-java.lang.String-}
```
public final void setRevision(String value)
@@ -477,10 +593,12 @@ public final void setRevision(String value)
Sets the document revision number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The revision number. |
+| value | java.lang.String | The revision number.
+ |
### getSubject() {#getSubject--}
```
@@ -490,8 +608,10 @@ public final String getSubject()
Gets the subject.
+
**Returns:**
java.lang.String - The subject.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -500,10 +620,12 @@ public final void setSubject(String value)
Sets the subject.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The subject. |
+| value | java.lang.String | The subject.
+ |
### getTemplate() {#getTemplate--}
```
@@ -513,8 +635,10 @@ public final String getTemplate()
Gets the document template name.
+
**Returns:**
java.lang.String - The template.
+
### setTemplate(String value) {#setTemplate-java.lang.String-}
```
public final void setTemplate(String value)
@@ -523,10 +647,12 @@ public final void setTemplate(String value)
Sets the document template name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The template. |
+| value | java.lang.String | The template.
+ |
### getTitle() {#getTitle--}
```
@@ -536,8 +662,10 @@ public final String getTitle()
Gets the title of the document.
+
**Returns:**
java.lang.String - The title.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -546,10 +674,12 @@ public final void setTitle(String value)
Sets the title of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title. |
+| value | java.lang.String | The title.
+ |
### getVersion() {#getVersion--}
```
@@ -559,12 +689,19 @@ public final String getVersion()
Gets the version number of the application that created the document.
+
**Returns:**
java.lang.String - The version.
---------------------
+
+
+*** ** * ** ***
Its format is "00.0000",for example 12.0000
+
+
+
+
### setVersion(String value) {#setVersion-java.lang.String-}
```
public final void setVersion(String value)
@@ -573,14 +710,21 @@ public final void setVersion(String value)
Sets the version number of the application that created the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The version.
---------------------
+
+
+*** ** * ** ***
-Its format is "00.0000",for example 12.0000 |
+Its format is "00.0000",for example 12.0000
+
+
+
+ |
### getContentTypeProperties() {#getContentTypeProperties--}
```
@@ -590,8 +734,10 @@ public final SpreadsheetContentTypePackage getContentTypeProperties()
Gets the metadata package containing the content type properties.
+
**Returns:**
[SpreadsheetContentTypePackage](../../com.groupdocs.metadata.core/spreadsheetcontenttypepackage) - The metadata package containing the content type properties.
+
### set(String propertyName, String value) {#set-java.lang.String-java.lang.String-}
```
public final void set(String propertyName, String value)
@@ -600,11 +746,14 @@ public final void set(String propertyName, String value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.lang.String | The property value.
+ |
### set(String propertyName, boolean value) {#set-java.lang.String-boolean-}
```
@@ -614,11 +763,14 @@ public final void set(String propertyName, boolean value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | boolean | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | boolean | The property value.
+ |
### set(String propertyName, Date value) {#set-java.lang.String-java.util.Date-}
```
@@ -628,11 +780,14 @@ public final void set(String propertyName, Date value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.util.Date | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.util.Date | The property value.
+ |
### set(String propertyName, int value) {#set-java.lang.String-int-}
```
@@ -642,11 +797,14 @@ public final void set(String propertyName, int value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | int | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | int | The property value.
+ |
### set(String propertyName, double value) {#set-java.lang.String-double-}
```
@@ -656,9 +814,12 @@ public final void set(String propertyName, double value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | double | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | double | The property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetrootpackage/_index.md
index a1975657d8..e8867aad6b 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetrootpackage/_index.md
@@ -14,15 +14,18 @@ public class SpreadsheetRootPackage extends DocumentRootPackage
+This code snippet demonstrates how to extract built-in metadata properties from a spreadsheet.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputXlsx)) {
> SpreadsheetRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getDocumentProperties().getAuthor());
@@ -36,17 +39,19 @@ This code snippet demonstrates how to extract built-in metadata properties from
> }
>
> ```
-> ```
+> ````
-[Working with metadata in Spreadsheets]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets
## Methods
| Method | Description |
| --- | --- |
-| [getSpreadsheetType()](#getSpreadsheetType--) | Gets the file type metadata package. |
-| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document. |
-| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package. |
+| [getSpreadsheetType()](#getSpreadsheetType--) | Gets the file type metadata package.
+ |
+| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document.
+ |
+| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package.
+ |
### getSpreadsheetType() {#getSpreadsheetType--}
```
public final SpreadsheetTypePackage getSpreadsheetType()
@@ -55,18 +60,23 @@ public final SpreadsheetTypePackage getSpreadsheetType()
Gets the file type metadata package.
+
**Returns:**
[SpreadsheetTypePackage](../../com.groupdocs.metadata.core/spreadsheettypepackage) - The file type metadata package.
+
### getInspectionPackage() {#getInspectionPackage--}
```
public final SpreadsheetInspectionPackage getInspectionPackage()
```
-Gets a metadata package containing inspection results for the document. The package contains information about document parts that can be considered as metadata in some cases.
+Gets a metadata package containing inspection results for the document.
+The package contains information about document parts that can be considered as metadata in some cases.
+
**Returns:**
[SpreadsheetInspectionPackage](../../com.groupdocs.metadata.core/spreadsheetinspectionpackage) - A metadata package containing inspection results for the document.
+
### getDocumentStatistics() {#getDocumentStatistics--}
```
public final DocumentStatistics getDocumentStatistics()
@@ -75,5 +85,7 @@ public final DocumentStatistics getDocumentStatistics()
Gets the document statistics package.
+
**Returns:**
[DocumentStatistics](../../com.groupdocs.metadata.core/documentstatistics) - The document statistics package.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheetsheet/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheetsheet/_index.md
index bdb9cd837f..0ab6b5ad36 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheetsheet/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheetsheet/_index.md
@@ -14,18 +14,22 @@ public final class SpreadsheetSheet extends CustomPackage
Represents a sheet in a spreadsheet document.
+
**Learn more**
- * [Working with metadata in Spreadsheets][]
+* [Working with metadata in Spreadsheets](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets)
+
+
-[Working with metadata in Spreadsheets]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Spreadsheets
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the sheet name. |
-| [getNumber()](#getNumber--) | Gets the sheet number. |
+| [getName()](#getName--) | Gets the sheet name.
+ |
+| [getNumber()](#getNumber--) | Gets the sheet number.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -34,8 +38,10 @@ public final String getName()
Gets the sheet name.
+
**Returns:**
java.lang.String - The sheet name.
+
### getNumber() {#getNumber--}
```
public final int getNumber()
@@ -44,5 +50,7 @@ public final int getNumber()
Gets the sheet number.
+
**Returns:**
int - The sheet number.
+
diff --git a/english/java/com.groupdocs.metadata.core/spreadsheettypepackage/_index.md b/english/java/com.groupdocs.metadata.core/spreadsheettypepackage/_index.md
index d425f80955..24120ad0bb 100644
--- a/english/java/com.groupdocs.metadata.core/spreadsheettypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/spreadsheettypepackage/_index.md
@@ -13,11 +13,13 @@ public class SpreadsheetTypePackage extends FileTypePackage
```
Represents a metadata package containing spreadsheet-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getSpreadsheetFormat()](#getSpreadsheetFormat--) | Gets the exact spreadsheet format. |
+| [getSpreadsheetFormat()](#getSpreadsheetFormat--) | Gets the exact spreadsheet format.
+ |
### getSpreadsheetFormat() {#getSpreadsheetFormat--}
```
public final SpreadsheetFormat getSpreadsheetFormat()
@@ -26,5 +28,7 @@ public final SpreadsheetFormat getSpreadsheetFormat()
Gets the exact spreadsheet format.
+
**Returns:**
[SpreadsheetFormat](../../com.groupdocs.metadata.core/spreadsheetformat) - The exact spreadsheet format.
+
diff --git a/english/java/com.groupdocs.metadata.core/tarfile/_index.md b/english/java/com.groupdocs.metadata.core/tarfile/_index.md
index 6ae7c7b516..06f9c821d5 100644
--- a/english/java/com.groupdocs.metadata.core/tarfile/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tarfile/_index.md
@@ -14,17 +14,25 @@ public final class TarFile extends CustomPackage
Represents metadata associated with an archived file or directory.
---------------------
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getSize()](#getSize--) | Gets the size in bytes. |
-| [getName()](#getName--) | Gets the entry name. |
+| [getSize()](#getSize--) | Gets the size in bytes.
+ |
+| [getName()](#getName--) | Gets the entry name.
+ |
### getSize() {#getSize--}
```
public final long getSize()
@@ -32,9 +40,9 @@ public final long getSize()
Gets the size in bytes.
-
Value: The size in bytes.
+
**Returns:**
long
### getName() {#getName--}
@@ -44,8 +52,8 @@ public final String getName()
Gets the entry name.
-
Value: The entry name. It can be a file or directory name.
+
**Returns:**
java.lang.String
diff --git a/english/java/com.groupdocs.metadata.core/tarpackage/_index.md b/english/java/com.groupdocs.metadata.core/tarpackage/_index.md
index e93db51bf6..347e182340 100644
--- a/english/java/com.groupdocs.metadata.core/tarpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tarpackage/_index.md
@@ -14,37 +14,38 @@ public final class TarPackage extends CustomPackage
Represents ZIP archive metadata.
---------------------
+
+
+*** ** * ** ***
> ```
-> The following code snippet shows how to get metadata from a ZIP archive.
>
-> Encoding encoding = Encoding.GetEncoding(866);
-> using (Metadata metadata = new Metadata(Constants.InputTar))
-> {
-> var root = metadata.GetRootPackage();
-> Console.WriteLine(root.TarPackage.TotalEntries);
-> foreach (var file in root.TarPackage.Files)
-> {
-> Console.WriteLine(file.Name);
-> Console.WriteLine(file.Size);
-> // Use a specific encoding for the file names
-> Console.WriteLine(encoding.GetString(file.RawName));
-> }
-> }
+> The following code snippet shows how to get metadata from a ZIP archive.
+>
+>
> ```
---------------------
+
+
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getFiles()](#getFiles--) | Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive. |
-| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive. |
+| [getFiles()](#getFiles--) | Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
+ |
+| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive.
+ |
### getFiles() {#getFiles--}
```
public final TarFile[] getFiles()
@@ -52,9 +53,9 @@ public final TarFile[] getFiles()
Gets an array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
-
Value: An array of [ZipFile](../../com.groupdocs.metadata.core/zipfile) entries inside the ZIP archive.
+
**Returns:**
com.groupdocs.metadata.core.TarFile[]
### getTotalEntries() {#getTotalEntries--}
@@ -64,8 +65,8 @@ public final long getTotalEntries()
Gets the total number of entries inside the ZIP archive.
-
Value: The total number of entries inside the ZIP archive.
+
**Returns:**
long
diff --git a/english/java/com.groupdocs.metadata.core/tarrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/tarrootpackage/_index.md
index b41349f4ee..2215ac2a10 100644
--- a/english/java/com.groupdocs.metadata.core/tarrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tarrootpackage/_index.md
@@ -14,38 +14,36 @@ public class TarRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a ZIP archive.
---------------------
+
+
+*** ** * ** ***
> ```
-> The following code snippet shows how to get metadata from a ZIP archive.
>
-> Encoding encoding = Encoding.GetEncoding(866);
-> using (Metadata metadata = new Metadata(Constants.InputTar))
-> {
-> var root = metadata.GetRootPackage();
-> Console.WriteLine(root.TarPackage.TotalEntries);
-> foreach (var file in root.TarPackage.Files)
-> {
-> Console.WriteLine(file.Name);
-> Console.WriteLine(file.CompressedSize);
-> Console.WriteLine(file.ModificationDateTime);
-> Console.WriteLine(file.UncompressedSize);
-> // Use a specific encoding for the file names
-> Console.WriteLine(encoding.GetString(file.RawName));
-> }
-> }
+> The following code snippet shows how to get metadata from a ZIP archive.
+>
+>
> ```
---------------------
+
+
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getTarPackage()](#getTarPackage--) | Gets the ZIP metadata package. |
+| [getTarPackage()](#getTarPackage--) | Gets the ZIP metadata package.
+ |
### getTarPackage() {#getTarPackage--}
```
public final TarPackage getTarPackage()
@@ -53,14 +51,19 @@ public final TarPackage getTarPackage()
Gets the ZIP metadata package.
-
Value: The ZIP metadata package.
---------------------
+
+
+*** ** * ** ***
**Learn more**
- *
+*
+
+
+
+
**Returns:**
[TarPackage](../../com.groupdocs.metadata.core/tarpackage)
diff --git a/english/java/com.groupdocs.metadata.core/tiffarraytag/_index.md b/english/java/com.groupdocs.metadata.core/tiffarraytag/_index.md
index a7d674e326..d466cab16a 100644
--- a/english/java/com.groupdocs.metadata.core/tiffarraytag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffarraytag/_index.md
@@ -14,12 +14,16 @@ public abstract class TiffArrayTag extends TiffTag
Represents an array-based TIFF tag.
- T : The type of array values.
+
+T
+: The type of array values.
+
## Methods
| Method | Description |
| --- | --- |
-| [getTagValue()](#getTagValue--) | Gets the tag value. |
+| [getTagValue()](#getTagValue--) | Gets the tag value.
+ |
### getTagValue() {#getTagValue--}
```
public final T[] getTagValue()
@@ -28,5 +32,7 @@ public final T[] getTagValue()
Gets the tag value.
+
**Returns:**
T[] - The tag value.
+
diff --git a/english/java/com.groupdocs.metadata.core/tiffasciitag/_index.md b/english/java/com.groupdocs.metadata.core/tiffasciitag/_index.md
index 2e1597e689..a7c5198acd 100644
--- a/english/java/com.groupdocs.metadata.core/tiffasciitag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffasciitag/_index.md
@@ -13,29 +13,39 @@ public final class TiffAsciiTag extends TiffTag
```
Represents a TIFF ASCII tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffAsciiTag(TiffTagID tagID, String value)](#TiffAsciiTag-com.groupdocs.metadata.core.TiffTagID-java.lang.String-) | Initializes a new instance of the TiffAsciiTag class. |
+| [TiffAsciiTag(TiffTagID tagID, String value)](#TiffAsciiTag-com.groupdocs.metadata.core.TiffTagID-java.lang.String-) | Initializes a new instance of the
+TiffAsciiTag
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getTagValue()](#getTagValue--) | Gets the tag value. |
+| [getTagValue()](#getTagValue--) | Gets the tag value.
+ |
### TiffAsciiTag(TiffTagID tagID, String value) {#TiffAsciiTag-com.groupdocs.metadata.core.TiffTagID-java.lang.String-}
```
public TiffAsciiTag(TiffTagID tagID, String value)
```
-Initializes a new instance of the TiffAsciiTag class.
+Initializes a new instance of the
+TiffAsciiTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | java.lang.String | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | java.lang.String | The value.
+ |
### getTagValue() {#getTagValue--}
```
@@ -45,5 +55,7 @@ public final String getTagValue()
Gets the tag value.
+
**Returns:**
java.lang.String - The tag value.
+
diff --git a/english/java/com.groupdocs.metadata.core/tiffbytetag/_index.md b/english/java/com.groupdocs.metadata.core/tiffbytetag/_index.md
index 7cb794535e..3c0d6c6bec 100644
--- a/english/java/com.groupdocs.metadata.core/tiffbytetag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffbytetag/_index.md
@@ -13,22 +13,31 @@ public final class TiffByteTag extends TiffArrayTag
```
Represents a Byte tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffByteTag(TiffTagID tagID, byte[] value)](#TiffByteTag-com.groupdocs.metadata.core.TiffTagID-byte---) | Initializes a new instance of the TiffByteTag class. |
+| [TiffByteTag(TiffTagID tagID, byte[] value)](#TiffByteTag-com.groupdocs.metadata.core.TiffTagID-byte---) | Initializes a new instance of the
+TiffByteTag
+ class.
+ |
### TiffByteTag(TiffTagID tagID, byte[] value) {#TiffByteTag-com.groupdocs.metadata.core.TiffTagID-byte---}
```
public TiffByteTag(TiffTagID tagID, byte[] value)
```
-Initializes a new instance of the TiffByteTag class.
+Initializes a new instance of the
+TiffByteTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | byte[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | byte[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffdoubletag/_index.md b/english/java/com.groupdocs.metadata.core/tiffdoubletag/_index.md
index eb8440bc10..8d2c00d36e 100644
--- a/english/java/com.groupdocs.metadata.core/tiffdoubletag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffdoubletag/_index.md
@@ -13,22 +13,31 @@ public final class TiffDoubleTag extends TiffArrayTag
```
Represents a TIFF Double tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffDoubleTag(TiffTagID tagID, double[] value)](#TiffDoubleTag-com.groupdocs.metadata.core.TiffTagID-double---) | Initializes a new instance of the TiffDoubleTag class. |
+| [TiffDoubleTag(TiffTagID tagID, double[] value)](#TiffDoubleTag-com.groupdocs.metadata.core.TiffTagID-double---) | Initializes a new instance of the
+TiffDoubleTag
+ class.
+ |
### TiffDoubleTag(TiffTagID tagID, double[] value) {#TiffDoubleTag-com.groupdocs.metadata.core.TiffTagID-double---}
```
public TiffDoubleTag(TiffTagID tagID, double[] value)
```
-Initializes a new instance of the TiffDoubleTag class.
+Initializes a new instance of the
+TiffDoubleTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | double[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | double[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tifffloattag/_index.md b/english/java/com.groupdocs.metadata.core/tifffloattag/_index.md
index 93d6c74260..e26a353d7f 100644
--- a/english/java/com.groupdocs.metadata.core/tifffloattag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tifffloattag/_index.md
@@ -13,22 +13,31 @@ public final class TiffFloatTag extends TiffArrayTag
```
Represents a TIFF float tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffFloatTag(TiffTagID tagID, float[] value)](#TiffFloatTag-com.groupdocs.metadata.core.TiffTagID-float---) | Initializes a new instance of the TiffFloatTag class. |
+| [TiffFloatTag(TiffTagID tagID, float[] value)](#TiffFloatTag-com.groupdocs.metadata.core.TiffTagID-float---) | Initializes a new instance of the
+TiffFloatTag
+ class.
+ |
### TiffFloatTag(TiffTagID tagID, float[] value) {#TiffFloatTag-com.groupdocs.metadata.core.TiffTagID-float---}
```
public TiffFloatTag(TiffTagID tagID, float[] value)
```
-Initializes a new instance of the TiffFloatTag class.
+Initializes a new instance of the
+TiffFloatTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | float[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | float[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tifflongtag/_index.md b/english/java/com.groupdocs.metadata.core/tifflongtag/_index.md
index 41bf5778d3..a6239bc55b 100644
--- a/english/java/com.groupdocs.metadata.core/tifflongtag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tifflongtag/_index.md
@@ -13,22 +13,31 @@ public final class TiffLongTag extends TiffArrayTag
```
Represents a TIFF Long tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffLongTag(TiffTagID tagID, long[] value)](#TiffLongTag-com.groupdocs.metadata.core.TiffTagID-long---) | Initializes a new instance of the TiffLongTag class. |
+| [TiffLongTag(TiffTagID tagID, long[] value)](#TiffLongTag-com.groupdocs.metadata.core.TiffTagID-long---) | Initializes a new instance of the
+TiffLongTag
+ class.
+ |
### TiffLongTag(TiffTagID tagID, long[] value) {#TiffLongTag-com.groupdocs.metadata.core.TiffTagID-long---}
```
public TiffLongTag(TiffTagID tagID, long[] value)
```
-Initializes a new instance of the TiffLongTag class.
+Initializes a new instance of the
+TiffLongTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | long[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | long[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffrational/_index.md b/english/java/com.groupdocs.metadata.core/tiffrational/_index.md
index 9543c85c0f..1995b17c3b 100644
--- a/english/java/com.groupdocs.metadata.core/tiffrational/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffrational/_index.md
@@ -16,38 +16,61 @@ public final class TiffRational implements System.IEquatable
```
Represents a rational number.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffRational(long numerator, long denominator)](#TiffRational-long-long-) | Initializes a new instance of the TiffRational class. |
+| [TiffRational(long numerator, long denominator)](#TiffRational-long-long-) | Initializes a new instance of the
+TiffRational
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getNumerator()](#getNumerator--) | Gets the numerator. |
-| [getDenominator()](#getDenominator--) | Gets the denominator. |
-| [getValue()](#getValue--) | Gets the rational value. |
-| [equals(TiffRational rational, TiffRational other)](#equals-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-) | Compares a pair of TiffRational numbers. |
-| [equals(TiffRational other)](#equals-com.groupdocs.metadata.core.TiffRational-) | Indicates whether the current object is equal to another object of the same type. |
-| [equals(Object obj)](#equals-java.lang.Object-) | Indicates whether the current object is equal to another object of the same type. |
-| [hashCode()](#hashCode--) | Returns a hash code for this instance. |
-| [op_Equality(TiffRational left, TiffRational right)](#op-Equality-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-) | Indicates whether two objects of the same type are equal. |
-| [op_Inequality(TiffRational left, TiffRational right)](#op-Inequality-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-) | Indicates whether two objects of the same type are not equal. |
-| [toString()](#toString--) | Returns a string that represents this instance. |
+| [getNumerator()](#getNumerator--) | Gets the numerator.
+ |
+| [getDenominator()](#getDenominator--) | Gets the denominator.
+ |
+| [getValue()](#getValue--) | Gets the rational value.
+ |
+| [equals(TiffRational rational, TiffRational other)](#equals-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-) | Compares a pair of
+TiffRational
+ numbers.
+ |
+| [equals(TiffRational other)](#equals-com.groupdocs.metadata.core.TiffRational-) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [equals(Object obj)](#equals-java.lang.Object-) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [hashCode()](#hashCode--) | Returns a hash code for this instance.
+ |
+| [op_Equality(TiffRational left, TiffRational right)](#op-Equality-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-) | Indicates whether two objects of the same type are equal.
+ |
+| [op_Inequality(TiffRational left, TiffRational right)](#op-Inequality-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-) | Indicates whether two objects of the same type are not equal.
+ |
+| [toString()](#toString--) | Returns a
+string
+ that represents this instance.
+ |
### TiffRational(long numerator, long denominator) {#TiffRational-long-long-}
```
public TiffRational(long numerator, long denominator)
```
-Initializes a new instance of the TiffRational class.
+Initializes a new instance of the
+TiffRational
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| numerator | long | The numerator. |
-| denominator | long | The denominator. |
+| numerator | long | The numerator.
+ |
+| denominator | long | The denominator.
+ |
### getNumerator() {#getNumerator--}
```
@@ -57,8 +80,10 @@ public final long getNumerator()
Gets the numerator.
+
**Returns:**
long - The numerator.
+
### getDenominator() {#getDenominator--}
```
public final long getDenominator()
@@ -67,8 +92,10 @@ public final long getDenominator()
Gets the denominator.
+
**Returns:**
long - The denominator.
+
### getValue() {#getValue--}
```
public final double getValue()
@@ -77,24 +104,32 @@ public final double getValue()
Gets the rational value.
+
**Returns:**
double - The rational value.
+
### equals(TiffRational rational, TiffRational other) {#equals-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-}
```
public static boolean equals(TiffRational rational, TiffRational other)
```
-Compares a pair of TiffRational numbers.
+Compares a pair of
+TiffRational
+ numbers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| rational | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | A rational number. |
-| other | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | Another rational number. |
+| rational | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | A rational number.
+ |
+| other | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | Another rational number.
+ |
**Returns:**
boolean - true if the objects are equal; otherwise, false .
+
### equals(TiffRational other) {#equals-com.groupdocs.metadata.core.TiffRational-}
```
public final boolean equals(TiffRational other)
@@ -103,13 +138,16 @@ public final boolean equals(TiffRational other)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| other | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | An object to compare with this object. |
+| other | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | An object to compare with this object.
+ |
**Returns:**
boolean - true if the current object is equal to the other parameter; otherwise, false .
+
### equals(Object obj) {#equals-java.lang.Object-}
```
public boolean equals(Object obj)
@@ -118,13 +156,16 @@ public boolean equals(Object obj)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| obj | java.lang.Object | An object to compare with this object. |
+| obj | java.lang.Object | An object to compare with this object.
+ |
**Returns:**
boolean - true if the current object is equal to the obj parameter; otherwise, false .
+
### hashCode() {#hashCode--}
```
public int hashCode()
@@ -133,8 +174,10 @@ public int hashCode()
Returns a hash code for this instance.
+
**Returns:**
int - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
### op_Equality(TiffRational left, TiffRational right) {#op-Equality-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-}
```
public static boolean op_Equality(TiffRational left, TiffRational right)
@@ -143,14 +186,18 @@ public static boolean op_Equality(TiffRational left, TiffRational right)
Indicates whether two objects of the same type are equal.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| left | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The left object. |
-| right | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The rigt object. |
+| left | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The left object.
+ |
+| right | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The rigt object.
+ |
**Returns:**
boolean - True if the objects are equal; otherwise, false.
+
### op_Inequality(TiffRational left, TiffRational right) {#op-Inequality-com.groupdocs.metadata.core.TiffRational-com.groupdocs.metadata.core.TiffRational-}
```
public static boolean op_Inequality(TiffRational left, TiffRational right)
@@ -159,21 +206,29 @@ public static boolean op_Inequality(TiffRational left, TiffRational right)
Indicates whether two objects of the same type are not equal.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| left | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The left object. |
-| right | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The right object. |
+| left | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The left object.
+ |
+| right | [TiffRational](../../com.groupdocs.metadata.core/tiffrational) | The right object.
+ |
**Returns:**
boolean - True if the objects are not equal; otherwise, false.
+
### toString() {#toString--}
```
public String toString()
```
-Returns a string that represents this instance.
+Returns a
+string
+ that represents this instance.
+
**Returns:**
java.lang.String - A string that represents this instance.
+
diff --git a/english/java/com.groupdocs.metadata.core/tiffrationaltag/_index.md b/english/java/com.groupdocs.metadata.core/tiffrationaltag/_index.md
index 5b8f43067f..2bc8d694ae 100644
--- a/english/java/com.groupdocs.metadata.core/tiffrationaltag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffrationaltag/_index.md
@@ -13,22 +13,31 @@ public final class TiffRationalTag extends TiffArrayTag
```
Represents a TIFF Rational tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffRationalTag(TiffTagID tagID, TiffRational[] value)](#TiffRationalTag-com.groupdocs.metadata.core.TiffTagID-com.groupdocs.metadata.core.TiffRational---) | Initializes a new instance of the TiffRationalTag class. |
+| [TiffRationalTag(TiffTagID tagID, TiffRational[] value)](#TiffRationalTag-com.groupdocs.metadata.core.TiffTagID-com.groupdocs.metadata.core.TiffRational---) | Initializes a new instance of the
+TiffRationalTag
+ class.
+ |
### TiffRationalTag(TiffTagID tagID, TiffRational[] value) {#TiffRationalTag-com.groupdocs.metadata.core.TiffTagID-com.groupdocs.metadata.core.TiffRational---}
```
public TiffRationalTag(TiffTagID tagID, TiffRational[] value)
```
-Initializes a new instance of the TiffRationalTag class.
+Initializes a new instance of the
+TiffRationalTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | [TiffRational\[\]](../../com.groupdocs.metadata.core/tiffrational) | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/tiffrootpackage/_index.md
index c6056cc862..eca3fb7efb 100644
--- a/english/java/com.groupdocs.metadata.core/tiffrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffrootpackage/_index.md
@@ -17,18 +17,21 @@ public class TiffRootPackage extends ImageRootPackage implements IXmp, IExif, II
Represents the root package allowing working with metadata in a TIFF image.
+
**Learn more**
- * [Working with metadata in TIFF images][]
- * [Working with EXIF metadata][]
- * [Working with XMP metadata][]
- * [Working with IPTC IIM metadata][]
+* [Working with metadata in TIFF images](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+TIFF+images)
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
-This example shows how to extract basic IPTC metadata properties from a TIFF image.
+
+This example shows how to extract basic IPTC metadata properties from a TIFF image.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.TiffWithIptc)) {
> TiffRootPackage root = metadata.getRootPackageGeneric();
> if (root.getIptcPackage() != null) {
@@ -53,23 +56,25 @@ This example shows how to extract basic IPTC metadata properties from a TIFF ima
> }
>
> ```
-> ```
+> ````
-[Working with metadata in TIFF images]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+TIFF+images
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
-| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package. |
-| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
+| [getIptcPackage()](#getIptcPackage--) | Gets the IPTC metadata package.
+ |
+| [setIptcPackage(IptcRecordSet value)](#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-) | Sets the IPTC metadata package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -78,15 +83,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -95,17 +103,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -115,15 +126,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -132,17 +146,20 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
### getIptcPackage() {#getIptcPackage--}
```
@@ -152,15 +169,18 @@ public final IptcRecordSet getIptcPackage()
Gets the IPTC metadata package.
+
**Returns:**
[IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) - The IPTC metadata package.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata
### setIptcPackage(IptcRecordSet value) {#setIptcPackage-com.groupdocs.metadata.core.IptcRecordSet-}
```
public final void setIptcPackage(IptcRecordSet value)
@@ -169,15 +189,18 @@ public final void setIptcPackage(IptcRecordSet value)
Sets the IPTC metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [IptcRecordSet](../../com.groupdocs.metadata.core/iptcrecordset) | The IPTC metadata package.
+
**Learn more**
- * [Working with IPTC IIM metadata][]
+* [Working with IPTC IIM metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata)
+
-[Working with IPTC IIM metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+IPTC+IIM+metadata |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffsbytetag/_index.md b/english/java/com.groupdocs.metadata.core/tiffsbytetag/_index.md
index 6c4fd586ec..1516083c1a 100644
--- a/english/java/com.groupdocs.metadata.core/tiffsbytetag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffsbytetag/_index.md
@@ -13,22 +13,31 @@ public final class TiffSByteTag extends TiffArrayTag
```
Represents a TIFF SByte tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffSByteTag(TiffTagID tagID, byte[] value)](#TiffSByteTag-com.groupdocs.metadata.core.TiffTagID-byte---) | Initializes a new instance of the TiffSByteTag class. |
+| [TiffSByteTag(TiffTagID tagID, byte[] value)](#TiffSByteTag-com.groupdocs.metadata.core.TiffTagID-byte---) | Initializes a new instance of the
+TiffSByteTag
+ class.
+ |
### TiffSByteTag(TiffTagID tagID, byte[] value) {#TiffSByteTag-com.groupdocs.metadata.core.TiffTagID-byte---}
```
public TiffSByteTag(TiffTagID tagID, byte[] value)
```
-Initializes a new instance of the TiffSByteTag class.
+Initializes a new instance of the
+TiffSByteTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | byte[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | byte[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffshorttag/_index.md b/english/java/com.groupdocs.metadata.core/tiffshorttag/_index.md
index 96d906d158..decca0e0e9 100644
--- a/english/java/com.groupdocs.metadata.core/tiffshorttag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffshorttag/_index.md
@@ -13,22 +13,31 @@ public final class TiffShortTag extends TiffArrayTag
```
Represents a TIFF Short tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffShortTag(TiffTagID tagID, int[] value)](#TiffShortTag-com.groupdocs.metadata.core.TiffTagID-int---) | Initializes a new instance of the TiffShortTag class. |
+| [TiffShortTag(TiffTagID tagID, int[] value)](#TiffShortTag-com.groupdocs.metadata.core.TiffTagID-int---) | Initializes a new instance of the
+TiffShortTag
+ class.
+ |
### TiffShortTag(TiffTagID tagID, int[] value) {#TiffShortTag-com.groupdocs.metadata.core.TiffTagID-int---}
```
public TiffShortTag(TiffTagID tagID, int[] value)
```
-Initializes a new instance of the TiffShortTag class.
+Initializes a new instance of the
+TiffShortTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | int[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | int[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffslongtag/_index.md b/english/java/com.groupdocs.metadata.core/tiffslongtag/_index.md
index eb13348410..ef3f902e3d 100644
--- a/english/java/com.groupdocs.metadata.core/tiffslongtag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffslongtag/_index.md
@@ -13,22 +13,31 @@ public final class TiffSLongTag extends TiffArrayTag
```
Represents a TIFF SLong tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffSLongTag(TiffTagID tagID, int[] value)](#TiffSLongTag-com.groupdocs.metadata.core.TiffTagID-int---) | Initializes a new instance of the TiffSLongTag class. |
+| [TiffSLongTag(TiffTagID tagID, int[] value)](#TiffSLongTag-com.groupdocs.metadata.core.TiffTagID-int---) | Initializes a new instance of the
+TiffSLongTag
+ class.
+ |
### TiffSLongTag(TiffTagID tagID, int[] value) {#TiffSLongTag-com.groupdocs.metadata.core.TiffTagID-int---}
```
public TiffSLongTag(TiffTagID tagID, int[] value)
```
-Initializes a new instance of the TiffSLongTag class.
+Initializes a new instance of the
+TiffSLongTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | int[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | int[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffsrational/_index.md b/english/java/com.groupdocs.metadata.core/tiffsrational/_index.md
index 4f9667d982..950f977416 100644
--- a/english/java/com.groupdocs.metadata.core/tiffsrational/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffsrational/_index.md
@@ -16,38 +16,61 @@ public final class TiffSRational implements System.IEquatable
```
Represents signed rational number.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffSRational(int numerator, int denominator)](#TiffSRational-int-int-) | Initializes a new instance of the TiffSRational class. |
+| [TiffSRational(int numerator, int denominator)](#TiffSRational-int-int-) | Initializes a new instance of the
+TiffSRational
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getNumerator()](#getNumerator--) | Gets numerator. |
-| [getDenominator()](#getDenominator--) | Gets denominator. |
-| [getValue()](#getValue--) | Gets actual value represented as double. |
-| [equals(TiffSRational rational, TiffSRational other)](#equals-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-) | Compares pair of TiffSRational . |
-| [equals(TiffSRational other)](#equals-com.groupdocs.metadata.core.TiffSRational-) | Indicates whether the current object is equal to another object of the same type. |
-| [equals(Object obj)](#equals-java.lang.Object-) | Indicates whether the current object is equal to another object of the same type. |
-| [hashCode()](#hashCode--) | Returns a hash code for this instance. |
-| [op_Equality(TiffSRational left, TiffSRational right)](#op-Equality-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-) | Indicates whether two objects of the same type are equal. |
-| [op_Inequality(TiffSRational left, TiffSRational right)](#op-Inequality-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-) | Indicates whether two objects of the same type are not equal. |
-| [toString()](#toString--) | Returns a System.String that represents this instance. |
+| [getNumerator()](#getNumerator--) | Gets numerator.
+ |
+| [getDenominator()](#getDenominator--) | Gets denominator.
+ |
+| [getValue()](#getValue--) | Gets actual value represented as double.
+ |
+| [equals(TiffSRational rational, TiffSRational other)](#equals-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-) | Compares pair of
+TiffSRational
+.
+ |
+| [equals(TiffSRational other)](#equals-com.groupdocs.metadata.core.TiffSRational-) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [equals(Object obj)](#equals-java.lang.Object-) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [hashCode()](#hashCode--) | Returns a hash code for this instance.
+ |
+| [op_Equality(TiffSRational left, TiffSRational right)](#op-Equality-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-) | Indicates whether two objects of the same type are equal.
+ |
+| [op_Inequality(TiffSRational left, TiffSRational right)](#op-Inequality-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-) | Indicates whether two objects of the same type are not equal.
+ |
+| [toString()](#toString--) | Returns a
+System.String
+ that represents this instance.
+ |
### TiffSRational(int numerator, int denominator) {#TiffSRational-int-int-}
```
public TiffSRational(int numerator, int denominator)
```
-Initializes a new instance of the TiffSRational class.
+Initializes a new instance of the
+TiffSRational
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| numerator | int | The numerator. |
-| denominator | int | The denominator. |
+| numerator | int | The numerator.
+ |
+| denominator | int | The denominator.
+ |
### getNumerator() {#getNumerator--}
```
@@ -57,8 +80,10 @@ public final int getNumerator()
Gets numerator.
+
**Returns:**
int - The numerator.
+
### getDenominator() {#getDenominator--}
```
public final int getDenominator()
@@ -67,8 +92,10 @@ public final int getDenominator()
Gets denominator.
+
**Returns:**
int - The denominator.
+
### getValue() {#getValue--}
```
public final double getValue()
@@ -77,24 +104,32 @@ public final double getValue()
Gets actual value represented as double.
+
**Returns:**
double - Double value.
+
### equals(TiffSRational rational, TiffSRational other) {#equals-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-}
```
public static boolean equals(TiffSRational rational, TiffSRational other)
```
-Compares pair of TiffSRational .
+Compares pair of
+TiffSRational
+.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| rational | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | Comparing item. |
-| other | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | Other item. |
+| rational | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | Comparing item.
+ |
+| other | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | Other item.
+ |
**Returns:**
boolean - true if objects are equal; otherwise false .
+
### equals(TiffSRational other) {#equals-com.groupdocs.metadata.core.TiffSRational-}
```
public final boolean equals(TiffSRational other)
@@ -103,13 +138,16 @@ public final boolean equals(TiffSRational other)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| other | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | An object to compare with this object. |
+| other | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | An object to compare with this object.
+ |
**Returns:**
boolean - true if the current object is equal to the other parameter; otherwise, false .
+
### equals(Object obj) {#equals-java.lang.Object-}
```
public boolean equals(Object obj)
@@ -118,13 +156,16 @@ public boolean equals(Object obj)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| obj | java.lang.Object | An object to compare with this object. |
+| obj | java.lang.Object | An object to compare with this object.
+ |
**Returns:**
boolean - true if the current object is equal to the obj parameter; otherwise, false .
+
### hashCode() {#hashCode--}
```
public int hashCode()
@@ -133,8 +174,10 @@ public int hashCode()
Returns a hash code for this instance.
+
**Returns:**
int - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
### op_Equality(TiffSRational left, TiffSRational right) {#op-Equality-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-}
```
public static boolean op_Equality(TiffSRational left, TiffSRational right)
@@ -143,14 +186,18 @@ public static boolean op_Equality(TiffSRational left, TiffSRational right)
Indicates whether two objects of the same type are equal.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| left | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The left object. |
-| right | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The rigt object. |
+| left | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The left object.
+ |
+| right | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The rigt object.
+ |
**Returns:**
boolean - True if the objects are equal; otherwise, false.
+
### op_Inequality(TiffSRational left, TiffSRational right) {#op-Inequality-com.groupdocs.metadata.core.TiffSRational-com.groupdocs.metadata.core.TiffSRational-}
```
public static boolean op_Inequality(TiffSRational left, TiffSRational right)
@@ -159,21 +206,29 @@ public static boolean op_Inequality(TiffSRational left, TiffSRational right)
Indicates whether two objects of the same type are not equal.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| left | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The left object. |
-| right | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The rigt object. |
+| left | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The left object.
+ |
+| right | [TiffSRational](../../com.groupdocs.metadata.core/tiffsrational) | The rigt object.
+ |
**Returns:**
boolean - True if the objects are not equal; otherwise, false.
+
### toString() {#toString--}
```
public String toString()
```
-Returns a System.String that represents this instance.
+Returns a
+System.String
+ that represents this instance.
+
**Returns:**
java.lang.String - A System.String that represents this instance.
+
diff --git a/english/java/com.groupdocs.metadata.core/tiffsrationaltag/_index.md b/english/java/com.groupdocs.metadata.core/tiffsrationaltag/_index.md
index 2557b6d3ae..a5c85e7c44 100644
--- a/english/java/com.groupdocs.metadata.core/tiffsrationaltag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffsrationaltag/_index.md
@@ -13,22 +13,31 @@ public final class TiffSRationalTag extends TiffArrayTag
```
Represents a TIFF SRational tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffSRationalTag(TiffTagID tagID, TiffSRational[] value)](#TiffSRationalTag-com.groupdocs.metadata.core.TiffTagID-com.groupdocs.metadata.core.TiffSRational---) | Initializes a new instance of the TiffSRationalTag class. |
+| [TiffSRationalTag(TiffTagID tagID, TiffSRational[] value)](#TiffSRationalTag-com.groupdocs.metadata.core.TiffTagID-com.groupdocs.metadata.core.TiffSRational---) | Initializes a new instance of the
+TiffSRationalTag
+ class.
+ |
### TiffSRationalTag(TiffTagID tagID, TiffSRational[] value) {#TiffSRationalTag-com.groupdocs.metadata.core.TiffTagID-com.groupdocs.metadata.core.TiffSRational---}
```
public TiffSRationalTag(TiffTagID tagID, TiffSRational[] value)
```
-Initializes a new instance of the TiffSRationalTag class.
+Initializes a new instance of the
+TiffSRationalTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | [TiffSRational\[\]](../../com.groupdocs.metadata.core/tiffsrational) | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | [TiffSRational\[\]](../../com.groupdocs.metadata.core/tiffsrational) | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tiffsshorttag/_index.md b/english/java/com.groupdocs.metadata.core/tiffsshorttag/_index.md
index 16aaa327fd..b80a31aa5a 100644
--- a/english/java/com.groupdocs.metadata.core/tiffsshorttag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffsshorttag/_index.md
@@ -13,22 +13,31 @@ public final class TiffSShortTag extends TiffArrayTag
```
Represents a TIFF SShort tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffSShortTag(TiffTagID tagID, short[] value)](#TiffSShortTag-com.groupdocs.metadata.core.TiffTagID-short---) | Initializes a new instance of the TiffSShortTag class. |
+| [TiffSShortTag(TiffTagID tagID, short[] value)](#TiffSShortTag-com.groupdocs.metadata.core.TiffTagID-short---) | Initializes a new instance of the
+TiffSShortTag
+ class.
+ |
### TiffSShortTag(TiffTagID tagID, short[] value) {#TiffSShortTag-com.groupdocs.metadata.core.TiffTagID-short---}
```
public TiffSShortTag(TiffTagID tagID, short[] value)
```
-Initializes a new instance of the TiffSShortTag class.
+Initializes a new instance of the
+TiffSShortTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | short[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | short[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/tifftag/_index.md b/english/java/com.groupdocs.metadata.core/tifftag/_index.md
index 73ff98cc8d..88679630f0 100644
--- a/english/java/com.groupdocs.metadata.core/tifftag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tifftag/_index.md
@@ -13,12 +13,15 @@ public abstract class TiffTag extends MetadataProperty
```
Represents a TIFF tag.
+
## Methods
| Method | Description |
| --- | --- |
-| [getTagType()](#getTagType--) | Gets the type of the tag. |
-| [getTagID()](#getTagID--) | Gets the tag id. |
+| [getTagType()](#getTagType--) | Gets the type of the tag.
+ |
+| [getTagID()](#getTagID--) | Gets the tag id.
+ |
### getTagType() {#getTagType--}
```
public final TiffTagType getTagType()
@@ -27,8 +30,10 @@ public final TiffTagType getTagType()
Gets the type of the tag.
+
**Returns:**
[TiffTagType](../../com.groupdocs.metadata.core/tifftagtype) - The tag type.
+
### getTagID() {#getTagID--}
```
public final TiffTagID getTagID()
@@ -37,5 +42,7 @@ public final TiffTagID getTagID()
Gets the tag id.
+
**Returns:**
[TiffTagID](../../com.groupdocs.metadata.core/tifftagid) - The tag id.
+
diff --git a/english/java/com.groupdocs.metadata.core/tifftagid/_index.md b/english/java/com.groupdocs.metadata.core/tifftagid/_index.md
index 9ff3bff3ca..3f83a1c796 100644
--- a/english/java/com.groupdocs.metadata.core/tifftagid/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tifftagid/_index.md
@@ -16,205 +16,411 @@ public final class TiffTagID implements IEnumValue
```
Defines ids of TIFF tags.
+
## Fields
| Field | Description |
| --- | --- |
-| [GpsVersionID](#GpsVersionID) | Indicates the version of GPSInfoIFD. |
-| [GpsLatitudeRef](#GpsLatitudeRef) | Indicates whether the latitude is north or south latitude. |
-| [GpsLatitude](#GpsLatitude) | Indicates the latitude. |
-| [GpsLongitudeRef](#GpsLongitudeRef) | Indicates whether the longitude is east or west longitude. |
-| [GpsLongitude](#GpsLongitude) | Indicates the longitude. |
-| [GpsAltitudeRef](#GpsAltitudeRef) | Indicates the altitude used as the reference altitude. |
-| [GpsAltitude](#GpsAltitude) | Indicates the altitude based on the reference in GPSAltitudeRef. |
-| [GpsTimeStamp](#GpsTimeStamp) | Indicates the time as UTC (Coordinated Universal Time). |
-| [GpsSatellites](#GpsSatellites) | ndicates the GPS satellites used for measurements. |
-| [GpsStatus](#GpsStatus) | Indicates the status of the GPS receiver when the image is recorded. |
-| [GpsMeasureMode](#GpsMeasureMode) | Indicates the GPS measurement mode. |
-| [GpsDop](#GpsDop) | Indicates the GPS DOP (data degree of precision). |
-| [GpsSpeedRef](#GpsSpeedRef) | Indicates the unit used to express the GPS receiver speed of movement |
-| [GpsSpeed](#GpsSpeed) | Indicates the speed of GPS receiver movement. |
-| [GpsTrackRef](#GpsTrackRef) | Indicates the reference for giving the direction of GPS receiver movement. |
-| [GpsTrack](#GpsTrack) | Indicates the direction of GPS receiver movement. |
-| [GpsImgDirectionRef](#GpsImgDirectionRef) | Indicates the reference for giving the direction of the image when it is captured. |
-| [GpsImgDirection](#GpsImgDirection) | Indicates the direction of the image when it was captured. |
-| [GpsMapDatum](#GpsMapDatum) | Indicates the geodetic survey data used by the GPS receiver. |
-| [GpsDestLatitudeRef](#GpsDestLatitudeRef) | Indicates whether the latitude of the destination point is north or south latitude. |
-| [GpsDestLatitude](#GpsDestLatitude) | Indicates the latitude of the destination point. |
-| [GpsDestLongitudeRef](#GpsDestLongitudeRef) | Indicates whether the longitude of the destination point is east or west longitude. |
-| [GpsDestLongitude](#GpsDestLongitude) | Indicates the longitude of the destination point. |
-| [GpsDestBearingRef](#GpsDestBearingRef) | Indicates the reference used for giving the bearing to the destination point. |
-| [GpsDestBearing](#GpsDestBearing) | Indicates the bearing to the destination point. |
-| [GpsDestDistanceRef](#GpsDestDistanceRef) | Indicates the unit used to express the distance to the destination point. |
-| [GpsDestDistance](#GpsDestDistance) | Indicates the distance to the destination point. |
-| [GpsProcessingMethod](#GpsProcessingMethod) | A character string recording the name of the method used for location finding. |
-| [GpsAreaInformation](#GpsAreaInformation) | A character string recording the name of the GPS area. |
-| [GpsDateStamp](#GpsDateStamp) | A character string recording date and time information relative to UTC (Coordinated Universal Time). |
-| [GpsDifferential](#GpsDifferential) | Indicates whether differential correction is applied to the GPS receiver. |
-| [GpsHPositioningError](#GpsHPositioningError) | This tag indicates horizontal positioning errors in meters. |
-| [NewSubfileType](#NewSubfileType) | A general indication of the kind of data contained in this sub-file. |
-| [SubfileType](#SubfileType) | A general indication of the kind of data contained in this subfile. |
-| [ImageWidth](#ImageWidth) | The number of columns in the image, i.e., the number of pixels per scan line. |
-| [ImageLength](#ImageLength) | The number of rows (sometimes described as scan lines) in the image. |
-| [BitsPerSample](#BitsPerSample) | Number of bits per component. |
-| [Compression](#Compression) | Compression scheme used on the image data. |
-| [PhotometricInterpretation](#PhotometricInterpretation) | The color space of the image data. |
-| [Threshholding](#Threshholding) | For black and white TIFF files that represent shades of gray, the technique used to convert from gray to black and white pixels. |
-| [CellWidth](#CellWidth) | The width of the dithering or halftoning matrix used to create a dithered or halftoned bi-level file. |
-| [CellLength](#CellLength) | The length of the dithering or halftoning matrix used to create a dithered or halftoned bi-level file. |
-| [FillOrder](#FillOrder) | The logical order of bits within a byte. |
-| [DocumentName](#DocumentName) | The name of the document from which this image was scanned. |
-| [ImageDescription](#ImageDescription) | A string that describes the subject of the image. |
-| [Make](#Make) | The scanner manufacturer. |
-| [Model](#Model) | The scanner model name or number. |
-| [StripOffsets](#StripOffsets) | For each strip, the byte offset of that strip. |
-| [Orientation](#Orientation) | The orientation of the image with respect to the rows and columns. |
-| [SamplesPerPixel](#SamplesPerPixel) | The number of components per pixel. |
-| [RowsPerStrip](#RowsPerStrip) | The number of rows per strip. |
-| [StripByteCounts](#StripByteCounts) | For each strip, the number of bytes in the strip after compression. |
-| [MinSampleValue](#MinSampleValue) | The minimum component value used. |
-| [MaxSampleValue](#MaxSampleValue) | The maximum component value used. |
-| [XResolution](#XResolution) | The number of pixels per ResolutionUnit in the ImageWidth direction. |
-| [YResolution](#YResolution) | The number of pixels per ResolutionUnit in the ImageLength direction. |
-| [PlanarConfiguration](#PlanarConfiguration) | How the components of each pixel are stored. |
-| [PageName](#PageName) | The name of the page from which this image was scanned. |
-| [XPosition](#XPosition) | X position of the image. |
-| [YPosition](#YPosition) | Y position of the image. |
-| [FreeOffsets](#FreeOffsets) | For each string of contiguous unused bytes in a TIFF file, the byte offset of the string. |
-| [FreeByteCounts](#FreeByteCounts) | For each string of contiguous unused bytes in a TIFF file, the number of bytes in the string. |
-| [GrayResponseUnit](#GrayResponseUnit) | The precision of the information contained in the GrayResponseCurve. |
-| [GrayResponseCurve](#GrayResponseCurve) | For grayscale data, the optical density of each possible pixel value. |
-| [T4Options](#T4Options) | T4-encoding options. |
-| [T6Options](#T6Options) | T6-encoding options. |
-| [ResolutionUnit](#ResolutionUnit) | The unit of measurement for XResolution and YResolution. |
-| [PageNumber](#PageNumber) | The page number of the page from which this image was scanned. |
-| [TransferFunction](#TransferFunction) | Describes a transfer function for the image in tabular style. |
-| [Software](#Software) | Name and version number of the software package(s) used to create the image. |
-| [DateTime](#DateTime) | Date and time of image creation. |
-| [Artist](#Artist) | Person who created the image. |
-| [HostComputer](#HostComputer) | The computer and/or operating system in use at the time of image creation. |
-| [Predictor](#Predictor) | This section defines a Predictor that greatly improves compression ratios for some images. |
-| [WhitePoint](#WhitePoint) | The chromaticity of the white point of the image. |
-| [PrimaryChromaticities](#PrimaryChromaticities) | The chromaticities of the primaries of the image. |
-| [ColorMap](#ColorMap) | A color map for palette color images. |
-| [HalftoneHints](#HalftoneHints) | The purpose of the HalftoneHints field is to convey to the halftone function the range of gray levels within a colorimetrically-specified image that should retain tonal detail. |
-| [TileWidth](#TileWidth) | The tile width in pixels. |
-| [TileLength](#TileLength) | The tile length (height) in pixels. |
-| [TileOffsets](#TileOffsets) | For each tile, the byte offset of that tile, as compressed and stored on disk. |
-| [TileByteCounts](#TileByteCounts) | For each tile, the number of (compressed) bytes in that tile. |
-| [InkSet](#InkSet) | The set of inks used in a separated (PhotometricInterpretation=5) image. |
-| [InkNames](#InkNames) | The name of each ink used in a separated (PhotometricInterpretation=5) image, written as a list of concatenated, NUL-terminated ASCII strings. |
-| [NumberOfInks](#NumberOfInks) | The number of inks. |
-| [DotRange](#DotRange) | The component values that correspond to a 0% dot and 100% dot. |
-| [ExtraSamples](#ExtraSamples) | Description of extra components. |
-| [SampleFormat](#SampleFormat) | This field specifies how to interpret each data sample in a pixel. |
-| [SMinSampleValue](#SMinSampleValue) | This field specifies the minimum sample value. |
-| [SMaxSampleValue](#SMaxSampleValue) | This new field specifies the maximum sample value. |
-| [TransferRange](#TransferRange) | Expands the range of the TransferFunction. |
-| [JpegProc](#JpegProc) | This Field indicates the JPEG process used to produce the compressed data. |
-| [JpegInterchangeFormat](#JpegInterchangeFormat) | This Field indicates whether a JPEG interchange format bitstream is present in the TIFF file. |
-| [JpegInterchangeFormatLength](#JpegInterchangeFormatLength) | This Field indicates the length in bytes of the JPEG interchange format bitstream |
-| [JpegRestartInterval](#JpegRestartInterval) | This Field indicates the length of the restart interval used in the compressed image data. |
-| [JpegLosslessPredictors](#JpegLosslessPredictors) | This Field points to a list of lossless predictor-selection values, one per component. |
-| [JpegPointTransforms](#JpegPointTransforms) | This Field points to a list of point transform values, one per component. |
-| [JpegQTables](#JpegQTables) | This Field points to a list of offsets to the quantization tables, one per component. |
-| [JpegDCTables](#JpegDCTables) | This Field points to a list of offsets to the DC Huffman tables or the lossless Huffman tables, one per component. |
-| [JpegACTables](#JpegACTables) | This Field points to a list of offsets to the Huffman AC tables, one per component. |
-| [YCbCrCoefficients](#YCbCrCoefficients) | The matrix cofficients for transformation from RGB to YCbCr image data. |
-| [YCbCrSubSampling](#YCbCrSubSampling) | The sampling ratio of chrominance components in relation to the luminance component. |
-| [YCbCrPositioning](#YCbCrPositioning) | Specifies the positioning of subsampled chrominance components relative to luminance samples. |
-| [ReferenceBlackWhite](#ReferenceBlackWhite) | Specifies a pair of headroom and footroom image data values (codes) for each pixel component. |
-| [Copyright](#Copyright) | Copyright notice. |
-| [UserComment](#UserComment) | Keywords or comments on the image; complements ImageDescription. |
-| [Xmp](#Xmp) | Pointer to the XMP metadata. |
-| [ImageID](#ImageID) | OPI-related. |
-| [Iptc](#Iptc) | IPTC (International Press Telecommunications Council) metadata. |
-| [Photoshop](#Photoshop) | Collection of Photoshop 'Image Resource Blocks'. |
-| [ImageLayer](#ImageLayer) | Image layer. |
-| [IccProfile](#IccProfile) | Color profile data. |
-| [ExifIfd](#ExifIfd) | Pointer to collection of all EXIF Metadata. |
-| [GpsIfd](#GpsIfd) | Pointer to GPS data. |
-| [Makernotes](#Makernotes) | Pointer to makernotes data. |
-| [InteroperabilityIfd](#InteroperabilityIfd) | Exif-related Interoperability IFD. |
-| [CameraOwnerName](#CameraOwnerName) | Camera owner name as ASCII string. |
-| [BodySerialNumber](#BodySerialNumber) | Camera body serial number as ASCII string. |
-| [CfaPattern](#CfaPattern) | ndicates the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. |
-| [ExifVersion](#ExifVersion) | The version of the EXIF standard supported. |
-| [ComponentsConfiguration](#ComponentsConfiguration) | Information specific to the compressed data. |
-| [FlashpixVersion](#FlashpixVersion) | The Flashpix format version supported by a FPXR file. |
-| [ColorSpace](#ColorSpace) | The color space information tag (ColorSpace) is always recorded as the color space specifier. |
-| [PixelXDimension](#PixelXDimension) | Information specific to compressed data. |
-| [PixelYDimension](#PixelYDimension) | Information specific to compressed data. |
-| [SceneCaptureType](#SceneCaptureType) | This tag indicates the type of scene that was shot. |
-| [Gamma](#Gamma) | Indicates the value of coefficient gamma. |
-| [CompressedBitsPerPixel](#CompressedBitsPerPixel) | Information specific to compressed data. |
-| [RelatedSoundFile](#RelatedSoundFile) | This tag is used to record the name of an audio file related to the image data. |
-| [DateTimeOriginal](#DateTimeOriginal) | The date and time when the original image data was generated. |
-| [DateTimeDigitized](#DateTimeDigitized) | The date and time when the image was stored as digital data. |
-| [OffsetTime](#OffsetTime) | A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTime tag. |
-| [OffsetTimeOriginal](#OffsetTimeOriginal) | A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeOriginal tag. |
-| [OffsetTimeDigitized](#OffsetTimeDigitized) | A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeDigitized tag. |
-| [SubsecTime](#SubsecTime) | A tag used to record fractions of seconds for the DateTime tag. |
-| [SubsecTimeOriginal](#SubsecTimeOriginal) | A tag used to record fractions of seconds for the DateTimeOriginal tag. |
-| [SubsecTimeDigitized](#SubsecTimeDigitized) | A tag used to record fractions of seconds for the DateTimeDigitized tag. |
-| [ExposureTime](#ExposureTime) | Exposure time, given in seconds (sec). |
-| [FNumber](#FNumber) | The F number. |
-| [ExposureProgram](#ExposureProgram) | The class of the program used by the camera to set exposure when the picture is taken. |
-| [SpectralSensitivity](#SpectralSensitivity) | Indicates the spectral sensitivity of each channel of the camera used. |
-| [PhotographicSensitivity](#PhotographicSensitivity) | This tag indicates the sensitivity of the camera or input device when the image was shot. |
-| [Oecf](#Oecf) | Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524. |
-| [SensitivityType](#SensitivityType) | The SensitivityType tag indicates which one of the parameters of ISO12232 is the PhotographicSensitivity tag. |
-| [StandardOutputSensitivity](#StandardOutputSensitivity) | This tag indicates the standard output sensitivity value of a camera or input device defined in ISO 12232. |
-| [RecommendedExposureIndex](#RecommendedExposureIndex) | This tag indicates the recommended exposure index value of a camera or input device defined in ISO 12232. |
-| [IsoSpeed](#IsoSpeed) | This tag indicates the ISO speed value of a camera or input device that is defined in ISO 12232. |
-| [ISOSpeedLatitudeYyy](#ISOSpeedLatitudeYyy) | This tag indicates the ISO speed latitude yyy value of a camera or input device that is defined in ISO 12232. |
-| [ISOSpeedLatitudeZzz](#ISOSpeedLatitudeZzz) | This tag indicates the ISO speed latitude zzz value of a camera or input device that is defined in ISO 12232. |
-| [ShutterSpeedValue](#ShutterSpeedValue) | Shutter speed. |
-| [ApertureValue](#ApertureValue) | The lens aperture. |
-| [BrightnessValue](#BrightnessValue) | The value of brightness. |
-| [ExposureBiasValue](#ExposureBiasValue) | The exposure bias. |
-| [MaxApertureValue](#MaxApertureValue) | The smallest F number of the lens. |
-| [SubjectDistance](#SubjectDistance) | The distance to the subject, given in meters. |
-| [MeteringMode](#MeteringMode) | The metering mode. |
-| [LightSource](#LightSource) | The kind of light source. |
-| [Flash](#Flash) | This tag indicates the status of flash when the image was shot. |
-| [SubjectArea](#SubjectArea) | This tag indicates the location and area of the main subject in the overall scene. |
-| [FocalLength](#FocalLength) | The actual focal length of the lens, in mm. |
-| [FlashEnergy](#FlashEnergy) | Indicates the strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS). |
-| [SpatialFrequencyResponse](#SpatialFrequencyResponse) | This tag records the camera or input device spatial frequency table and SFR values in the direction of image width, image height, and diagonal direction, as specified in ISO 12233. |
-| [FocalPlaneXResolution](#FocalPlaneXResolution) | Indicates the number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane. |
-| [FocalPlaneYResolution](#FocalPlaneYResolution) | Indicates the number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane. |
-| [FocalPlaneResolutionUnit](#FocalPlaneResolutionUnit) | Indicates the unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. |
-| [SubjectLocation](#SubjectLocation) | Indicates the location of the main subject in the scene. |
-| [ExposureIndex](#ExposureIndex) | Indicates the exposure index selected on the camera or input device at the time the image is captured. |
-| [SensingMethod](#SensingMethod) | Indicates the image sensor type on the camera or input device. |
-| [FileSource](#FileSource) | Indicates the image source. |
-| [SceneType](#SceneType) | Indicates the type of scene. |
-| [CustomRendered](#CustomRendered) | This tag indicates the use of special processing on image data, such as rendering geared to output. |
-| [ExposureMode](#ExposureMode) | This tag indicates the exposure mode set when the image was shot. |
-| [WhiteBalance](#WhiteBalance) | This tag indicates the white balance mode set when the image was shot. |
-| [DigitalZoomRatio](#DigitalZoomRatio) | This tag indicates the digital zoom ratio when the image was shot. |
-| [FocalLengthIn35mmFilm](#FocalLengthIn35mmFilm) | This tag indicates the equivalent focal length assuming a 35mm film camera, in mm. |
-| [GainControl](#GainControl) | This tag indicates the degree of overall image gain adjustment. |
-| [Contrast](#Contrast) | This tag indicates the direction of contrast processing applied by the camera when the image was shot. |
-| [Saturation](#Saturation) | This tag indicates the direction of saturation processing applied by the camera when the image was shot. |
-| [Sharpness](#Sharpness) | This tag indicates the direction of sharpness processing applied by the camera when the image was shot. |
-| [DeviceSettingDescription](#DeviceSettingDescription) | This tag indicates information on the picture-taking conditions of a particular camera model. |
-| [SubjectDistanceRange](#SubjectDistanceRange) | This tag indicates the distance to the subject. |
-| [CompositeImage](#CompositeImage) | This tag indicates whether the recorded image is a composite image\* or not. |
-| [SourceImageNumberOfCompositeImage](#SourceImageNumberOfCompositeImage) | This tag indicates the number of the source images (tentatively recorded images) captured for a composite Image. |
-| [SourceExposureTimesOfCompositeImage](#SourceExposureTimesOfCompositeImage) | For a composite image, this tag records the parameters relating exposure time of the exposures for generating the said composite image, such as respective exposure times of captured source images (tentatively recorded images). |
-| [Temperature](#Temperature) | Temperature as the ambient situation at the shot, for example the room temperature where the photographer was holding the camera. |
-| [Humidity](#Humidity) | Humidity as the ambient situation at the shot, for example the room humidity where the photographer was holding the camera. |
-| [Pressure](#Pressure) | Pressure as the ambient situation at the shot, for example the room atmospfere where the photographer was holding the camera or the water pressure under the sea. |
-| [WaterDepth](#WaterDepth) | Water depth as the ambient situation at the shot, for example the water depth of the camera at underwater photography. |
-| [Acceleration](#Acceleration) | Acceleration (a scalar regardless of direction) as the ambient situation at the shot, for example the driving acceleration of the vehicle which the photographer rode on at the shot. |
-| [CameraElevationAngle](#CameraElevationAngle) | Elevation/depression. |
-| [ImageUniqueID](#ImageUniqueID) | This tag indicates an identifier assigned uniquely to each image. |
-| [LensSpecification](#LensSpecification) | This tag notes minimum focal length, maximum focal length, minimum F number in the minimum focal length, and minimum F number in the maximum focal length, which are specification information for the lens that was used in photography. |
-| [LensMake](#LensMake) | This tag records the lens manufacturer as an ASCII string. |
-| [LensModel](#LensModel) | This tag records the lens\\u2019s model name and model number as an ASCII string. |
-| [LensSerialNumber](#LensSerialNumber) | This tag records the serial number of the interchangeable lens that was used in photography as an ASCII string. |
+| [GpsVersionID](#GpsVersionID) | Indicates the version of GPSInfoIFD.
+ |
+| [GpsLatitudeRef](#GpsLatitudeRef) | Indicates whether the latitude is north or south latitude.
+ |
+| [GpsLatitude](#GpsLatitude) | Indicates the latitude.
+ |
+| [GpsLongitudeRef](#GpsLongitudeRef) | Indicates whether the longitude is east or west longitude.
+ |
+| [GpsLongitude](#GpsLongitude) | Indicates the longitude.
+ |
+| [GpsAltitudeRef](#GpsAltitudeRef) | Indicates the altitude used as the reference altitude.
+ |
+| [GpsAltitude](#GpsAltitude) | Indicates the altitude based on the reference in GPSAltitudeRef.
+ |
+| [GpsTimeStamp](#GpsTimeStamp) | Indicates the time as UTC (Coordinated Universal Time).
+ |
+| [GpsSatellites](#GpsSatellites) | ndicates the GPS satellites used for measurements.
+ |
+| [GpsStatus](#GpsStatus) | Indicates the status of the GPS receiver when the image is recorded.
+ |
+| [GpsMeasureMode](#GpsMeasureMode) | Indicates the GPS measurement mode.
+ |
+| [GpsDop](#GpsDop) | Indicates the GPS DOP (data degree of precision).
+ |
+| [GpsSpeedRef](#GpsSpeedRef) | Indicates the unit used to express the GPS receiver speed of movement
+ |
+| [GpsSpeed](#GpsSpeed) | Indicates the speed of GPS receiver movement.
+ |
+| [GpsTrackRef](#GpsTrackRef) | Indicates the reference for giving the direction of GPS receiver movement.
+ |
+| [GpsTrack](#GpsTrack) | Indicates the direction of GPS receiver movement.
+ |
+| [GpsImgDirectionRef](#GpsImgDirectionRef) | Indicates the reference for giving the direction of the image when it is captured.
+ |
+| [GpsImgDirection](#GpsImgDirection) | Indicates the direction of the image when it was captured.
+ |
+| [GpsMapDatum](#GpsMapDatum) | Indicates the geodetic survey data used by the GPS receiver.
+ |
+| [GpsDestLatitudeRef](#GpsDestLatitudeRef) | Indicates whether the latitude of the destination point is north or south latitude.
+ |
+| [GpsDestLatitude](#GpsDestLatitude) | Indicates the latitude of the destination point.
+ |
+| [GpsDestLongitudeRef](#GpsDestLongitudeRef) | Indicates whether the longitude of the destination point is east or west longitude.
+ |
+| [GpsDestLongitude](#GpsDestLongitude) | Indicates the longitude of the destination point.
+ |
+| [GpsDestBearingRef](#GpsDestBearingRef) | Indicates the reference used for giving the bearing to the destination point.
+ |
+| [GpsDestBearing](#GpsDestBearing) | Indicates the bearing to the destination point.
+ |
+| [GpsDestDistanceRef](#GpsDestDistanceRef) | Indicates the unit used to express the distance to the destination point.
+ |
+| [GpsDestDistance](#GpsDestDistance) | Indicates the distance to the destination point.
+ |
+| [GpsProcessingMethod](#GpsProcessingMethod) | A character string recording the name of the method used for location finding.
+ |
+| [GpsAreaInformation](#GpsAreaInformation) | A character string recording the name of the GPS area.
+ |
+| [GpsDateStamp](#GpsDateStamp) | A character string recording date and time information relative to UTC (Coordinated Universal Time).
+ |
+| [GpsDifferential](#GpsDifferential) | Indicates whether differential correction is applied to the GPS receiver.
+ |
+| [GpsHPositioningError](#GpsHPositioningError) | This tag indicates horizontal positioning errors in meters.
+ |
+| [NewSubfileType](#NewSubfileType) | A general indication of the kind of data contained in this sub-file.
+ |
+| [SubfileType](#SubfileType) | A general indication of the kind of data contained in this subfile.
+ |
+| [ImageWidth](#ImageWidth) | The number of columns in the image, i.e., the number of pixels per scan line.
+ |
+| [ImageLength](#ImageLength) | The number of rows (sometimes described as scan lines) in the image.
+ |
+| [BitsPerSample](#BitsPerSample) | Number of bits per component.
+ |
+| [Compression](#Compression) | Compression scheme used on the image data.
+ |
+| [PhotometricInterpretation](#PhotometricInterpretation) | The color space of the image data.
+ |
+| [Threshholding](#Threshholding) | For black and white TIFF files that represent shades of gray, the technique used to convert from gray to black and white pixels.
+ |
+| [CellWidth](#CellWidth) | The width of the dithering or halftoning matrix used to create a dithered or
+halftoned bi-level file.
+ |
+| [CellLength](#CellLength) | The length of the dithering or halftoning matrix used to create a dithered or
+halftoned bi-level file.
+ |
+| [FillOrder](#FillOrder) | The logical order of bits within a byte.
+ |
+| [DocumentName](#DocumentName) | The name of the document from which this image was scanned.
+ |
+| [ImageDescription](#ImageDescription) | A string that describes the subject of the image.
+ |
+| [Make](#Make) | The scanner manufacturer.
+ |
+| [Model](#Model) | The scanner model name or number.
+ |
+| [StripOffsets](#StripOffsets) | For each strip, the byte offset of that strip.
+ |
+| [Orientation](#Orientation) | The orientation of the image with respect to the rows and columns.
+ |
+| [SamplesPerPixel](#SamplesPerPixel) | The number of components per pixel.
+ |
+| [RowsPerStrip](#RowsPerStrip) | The number of rows per strip.
+ |
+| [StripByteCounts](#StripByteCounts) | For each strip, the number of bytes in the strip after compression.
+ |
+| [MinSampleValue](#MinSampleValue) | The minimum component value used.
+ |
+| [MaxSampleValue](#MaxSampleValue) | The maximum component value used.
+ |
+| [XResolution](#XResolution) | The number of pixels per ResolutionUnit in the ImageWidth direction.
+ |
+| [YResolution](#YResolution) | The number of pixels per ResolutionUnit in the ImageLength direction.
+ |
+| [PlanarConfiguration](#PlanarConfiguration) | How the components of each pixel are stored.
+ |
+| [PageName](#PageName) | The name of the page from which this image was scanned.
+ |
+| [XPosition](#XPosition) | X position of the image.
+ |
+| [YPosition](#YPosition) | Y position of the image.
+ |
+| [FreeOffsets](#FreeOffsets) | For each string of contiguous unused bytes in a TIFF file, the byte offset of the string.
+ |
+| [FreeByteCounts](#FreeByteCounts) | For each string of contiguous unused bytes in a TIFF file, the number of bytes in the string.
+ |
+| [GrayResponseUnit](#GrayResponseUnit) | The precision of the information contained in the GrayResponseCurve.
+ |
+| [GrayResponseCurve](#GrayResponseCurve) | For grayscale data, the optical density of each possible pixel value.
+ |
+| [T4Options](#T4Options) | T4-encoding options.
+ |
+| [T6Options](#T6Options) | T6-encoding options.
+ |
+| [ResolutionUnit](#ResolutionUnit) | The unit of measurement for XResolution and YResolution.
+ |
+| [PageNumber](#PageNumber) | The page number of the page from which this image was scanned.
+ |
+| [TransferFunction](#TransferFunction) | Describes a transfer function for the image in tabular style.
+ |
+| [Software](#Software) | Name and version number of the software package(s) used to create the image.
+ |
+| [DateTime](#DateTime) | Date and time of image creation.
+ |
+| [Artist](#Artist) | Person who created the image.
+ |
+| [HostComputer](#HostComputer) | The computer and/or operating system in use at the time of image creation.
+ |
+| [Predictor](#Predictor) | This section defines a Predictor that greatly improves compression ratios for some images.
+ |
+| [WhitePoint](#WhitePoint) | The chromaticity of the white point of the image.
+ |
+| [PrimaryChromaticities](#PrimaryChromaticities) | The chromaticities of the primaries of the image.
+ |
+| [ColorMap](#ColorMap) | A color map for palette color images.
+ |
+| [HalftoneHints](#HalftoneHints) | The purpose of the HalftoneHints field is to convey to the halftone function the
+range of gray levels within a colorimetrically-specified image that should retain
+tonal detail.
+ |
+| [TileWidth](#TileWidth) | The tile width in pixels.
+ |
+| [TileLength](#TileLength) | The tile length (height) in pixels.
+ |
+| [TileOffsets](#TileOffsets) | For each tile, the byte offset of that tile, as compressed and stored on disk.
+ |
+| [TileByteCounts](#TileByteCounts) | For each tile, the number of (compressed) bytes in that tile.
+ |
+| [InkSet](#InkSet) | The set of inks used in a separated (PhotometricInterpretation=5) image.
+ |
+| [InkNames](#InkNames) | The name of each ink used in a separated (PhotometricInterpretation=5) image,
+written as a list of concatenated, NUL-terminated ASCII strings.
+ |
+| [NumberOfInks](#NumberOfInks) | The number of inks.
+ |
+| [DotRange](#DotRange) | The component values that correspond to a 0% dot and 100% dot.
+ |
+| [ExtraSamples](#ExtraSamples) | Description of extra components.
+ |
+| [SampleFormat](#SampleFormat) | This field specifies how to interpret each data sample in a pixel.
+ |
+| [SMinSampleValue](#SMinSampleValue) | This field specifies the minimum sample value.
+ |
+| [SMaxSampleValue](#SMaxSampleValue) | This new field specifies the maximum sample value.
+ |
+| [TransferRange](#TransferRange) | Expands the range of the TransferFunction.
+ |
+| [JpegProc](#JpegProc) | This Field indicates the JPEG process used to produce the compressed data.
+ |
+| [JpegInterchangeFormat](#JpegInterchangeFormat) | This Field indicates whether a JPEG interchange format bitstream is present in the TIFF file.
+ |
+| [JpegInterchangeFormatLength](#JpegInterchangeFormatLength) | This Field indicates the length in bytes of the JPEG interchange format bitstream
+ |
+| [JpegRestartInterval](#JpegRestartInterval) | This Field indicates the length of the restart interval used in the compressed image data.
+ |
+| [JpegLosslessPredictors](#JpegLosslessPredictors) | This Field points to a list of lossless predictor-selection values, one per component.
+ |
+| [JpegPointTransforms](#JpegPointTransforms) | This Field points to a list of point transform values, one per component.
+ |
+| [JpegQTables](#JpegQTables) | This Field points to a list of offsets to the quantization tables, one per component.
+ |
+| [JpegDCTables](#JpegDCTables) | This Field points to a list of offsets to the DC Huffman tables or the lossless
+Huffman tables, one per component.
+ |
+| [JpegACTables](#JpegACTables) | This Field points to a list of offsets to the Huffman AC tables, one per component.
+ |
+| [YCbCrCoefficients](#YCbCrCoefficients) | The matrix cofficients for transformation from RGB to YCbCr image data.
+ |
+| [YCbCrSubSampling](#YCbCrSubSampling) | The sampling ratio of chrominance components in relation to the luminance component.
+ |
+| [YCbCrPositioning](#YCbCrPositioning) | Specifies the positioning of subsampled chrominance components relative to luminance samples.
+ |
+| [ReferenceBlackWhite](#ReferenceBlackWhite) | Specifies a pair of headroom and footroom image data values (codes) for each pixel component.
+ |
+| [Copyright](#Copyright) | Copyright notice.
+ |
+| [UserComment](#UserComment) | Keywords or comments on the image; complements ImageDescription.
+ |
+| [Xmp](#Xmp) | Pointer to the XMP metadata.
+ |
+| [ImageID](#ImageID) | OPI-related.
+ |
+| [Iptc](#Iptc) | IPTC (International Press Telecommunications Council) metadata.
+ |
+| [Photoshop](#Photoshop) | Collection of Photoshop 'Image Resource Blocks'.
+ |
+| [ImageLayer](#ImageLayer) | Image layer.
+ |
+| [IccProfile](#IccProfile) | Color profile data.
+ |
+| [ExifIfd](#ExifIfd) | Pointer to collection of all EXIF Metadata.
+ |
+| [GpsIfd](#GpsIfd) | Pointer to GPS data.
+ |
+| [Makernotes](#Makernotes) | Pointer to makernotes data.
+ |
+| [InteroperabilityIfd](#InteroperabilityIfd) | Exif-related Interoperability IFD.
+ |
+| [CameraOwnerName](#CameraOwnerName) | Camera owner name as ASCII string.
+ |
+| [BodySerialNumber](#BodySerialNumber) | Camera body serial number as ASCII string.
+ |
+| [CfaPattern](#CfaPattern) | ndicates the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used.
+ |
+| [ExifVersion](#ExifVersion) | The version of the EXIF standard supported.
+ |
+| [ComponentsConfiguration](#ComponentsConfiguration) | Information specific to the compressed data.
+ |
+| [FlashpixVersion](#FlashpixVersion) | The Flashpix format version supported by a FPXR file.
+ |
+| [ColorSpace](#ColorSpace) | The color space information tag (ColorSpace) is always recorded as the color space specifier.
+ |
+| [PixelXDimension](#PixelXDimension) | Information specific to compressed data.
+ |
+| [PixelYDimension](#PixelYDimension) | Information specific to compressed data.
+ |
+| [SceneCaptureType](#SceneCaptureType) | This tag indicates the type of scene that was shot.
+ |
+| [Gamma](#Gamma) | Indicates the value of coefficient gamma.
+ |
+| [CompressedBitsPerPixel](#CompressedBitsPerPixel) | Information specific to compressed data.
+ |
+| [RelatedSoundFile](#RelatedSoundFile) | This tag is used to record the name of an audio file related to the image data.
+ |
+| [DateTimeOriginal](#DateTimeOriginal) | The date and time when the original image data was generated.
+ |
+| [DateTimeDigitized](#DateTimeDigitized) | The date and time when the image was stored as digital data.
+ |
+| [OffsetTime](#OffsetTime) | A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTime tag.
+ |
+| [OffsetTimeOriginal](#OffsetTimeOriginal) | A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeOriginal tag.
+ |
+| [OffsetTimeDigitized](#OffsetTimeDigitized) | A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeDigitized tag.
+ |
+| [SubsecTime](#SubsecTime) | A tag used to record fractions of seconds for the DateTime tag.
+ |
+| [SubsecTimeOriginal](#SubsecTimeOriginal) | A tag used to record fractions of seconds for the DateTimeOriginal tag.
+ |
+| [SubsecTimeDigitized](#SubsecTimeDigitized) | A tag used to record fractions of seconds for the DateTimeDigitized tag.
+ |
+| [ExposureTime](#ExposureTime) | Exposure time, given in seconds (sec).
+ |
+| [FNumber](#FNumber) | The F number.
+ |
+| [ExposureProgram](#ExposureProgram) | The class of the program used by the camera to set exposure when the picture is taken.
+ |
+| [SpectralSensitivity](#SpectralSensitivity) | Indicates the spectral sensitivity of each channel of the camera used.
+ |
+| [PhotographicSensitivity](#PhotographicSensitivity) | This tag indicates the sensitivity of the camera or input device when the image was shot.
+ |
+| [Oecf](#Oecf) | Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524.
+ |
+| [SensitivityType](#SensitivityType) | The SensitivityType tag indicates which one of the parameters of ISO12232 is the PhotographicSensitivity tag.
+ |
+| [StandardOutputSensitivity](#StandardOutputSensitivity) | This tag indicates the standard output sensitivity value of a camera or input device defined in ISO 12232.
+ |
+| [RecommendedExposureIndex](#RecommendedExposureIndex) | This tag indicates the recommended exposure index value of a camera or input device defined in ISO 12232.
+ |
+| [IsoSpeed](#IsoSpeed) | This tag indicates the ISO speed value of a camera or input device that is defined in ISO 12232.
+ |
+| [ISOSpeedLatitudeYyy](#ISOSpeedLatitudeYyy) | This tag indicates the ISO speed latitude yyy value of a camera or input device that is defined in ISO 12232.
+ |
+| [ISOSpeedLatitudeZzz](#ISOSpeedLatitudeZzz) | This tag indicates the ISO speed latitude zzz value of a camera or input device that is defined in ISO 12232.
+ |
+| [ShutterSpeedValue](#ShutterSpeedValue) | Shutter speed.
+ |
+| [ApertureValue](#ApertureValue) | The lens aperture.
+ |
+| [BrightnessValue](#BrightnessValue) | The value of brightness.
+ |
+| [ExposureBiasValue](#ExposureBiasValue) | The exposure bias.
+ |
+| [MaxApertureValue](#MaxApertureValue) | The smallest F number of the lens.
+ |
+| [SubjectDistance](#SubjectDistance) | The distance to the subject, given in meters.
+ |
+| [MeteringMode](#MeteringMode) | The metering mode.
+ |
+| [LightSource](#LightSource) | The kind of light source.
+ |
+| [Flash](#Flash) | This tag indicates the status of flash when the image was shot.
+ |
+| [SubjectArea](#SubjectArea) | This tag indicates the location and area of the main subject in the overall scene.
+ |
+| [FocalLength](#FocalLength) | The actual focal length of the lens, in mm.
+ |
+| [FlashEnergy](#FlashEnergy) | Indicates the strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS).
+ |
+| [SpatialFrequencyResponse](#SpatialFrequencyResponse) | This tag records the camera or input device spatial frequency table and SFR values in the direction of image width,
+image height, and diagonal direction, as specified in ISO 12233.
+ |
+| [FocalPlaneXResolution](#FocalPlaneXResolution) | Indicates the number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane.
+ |
+| [FocalPlaneYResolution](#FocalPlaneYResolution) | Indicates the number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane.
+ |
+| [FocalPlaneResolutionUnit](#FocalPlaneResolutionUnit) | Indicates the unit for measuring FocalPlaneXResolution and FocalPlaneYResolution.
+ |
+| [SubjectLocation](#SubjectLocation) | Indicates the location of the main subject in the scene.
+ |
+| [ExposureIndex](#ExposureIndex) | Indicates the exposure index selected on the camera or input device at the time the image is captured.
+ |
+| [SensingMethod](#SensingMethod) | Indicates the image sensor type on the camera or input device.
+ |
+| [FileSource](#FileSource) | Indicates the image source.
+ |
+| [SceneType](#SceneType) | Indicates the type of scene.
+ |
+| [CustomRendered](#CustomRendered) | This tag indicates the use of special processing on image data, such as rendering geared to output.
+ |
+| [ExposureMode](#ExposureMode) | This tag indicates the exposure mode set when the image was shot.
+ |
+| [WhiteBalance](#WhiteBalance) | This tag indicates the white balance mode set when the image was shot.
+ |
+| [DigitalZoomRatio](#DigitalZoomRatio) | This tag indicates the digital zoom ratio when the image was shot.
+ |
+| [FocalLengthIn35mmFilm](#FocalLengthIn35mmFilm) | This tag indicates the equivalent focal length assuming a 35mm film camera, in mm.
+ |
+| [GainControl](#GainControl) | This tag indicates the degree of overall image gain adjustment.
+ |
+| [Contrast](#Contrast) | This tag indicates the direction of contrast processing applied by the camera when the image was shot.
+ |
+| [Saturation](#Saturation) | This tag indicates the direction of saturation processing applied by the camera when the image was shot.
+ |
+| [Sharpness](#Sharpness) | This tag indicates the direction of sharpness processing applied by the camera when the image was shot.
+ |
+| [DeviceSettingDescription](#DeviceSettingDescription) | This tag indicates information on the picture-taking conditions of a particular camera model.
+ |
+| [SubjectDistanceRange](#SubjectDistanceRange) | This tag indicates the distance to the subject.
+ |
+| [CompositeImage](#CompositeImage) | This tag indicates whether the recorded image is a composite image\* or not.
+ |
+| [SourceImageNumberOfCompositeImage](#SourceImageNumberOfCompositeImage) | This tag indicates the number of the source images (tentatively recorded images) captured for a composite Image.
+ |
+| [SourceExposureTimesOfCompositeImage](#SourceExposureTimesOfCompositeImage) | For a composite image, this tag records the parameters relating exposure time of the exposures for generating the said composite image,
+such as respective exposure times of captured source images (tentatively recorded images).
+ |
+| [Temperature](#Temperature) | Temperature as the ambient situation at the shot, for example the room temperature where the photographer was holding the camera.
+ |
+| [Humidity](#Humidity) | Humidity as the ambient situation at the shot, for example the room humidity where the photographer was holding the camera.
+ |
+| [Pressure](#Pressure) | Pressure as the ambient situation at the shot,
+for example the room atmospfere where the photographer was holding the camera or the water pressure under the sea.
+ |
+| [WaterDepth](#WaterDepth) | Water depth as the ambient situation at the shot, for example the water depth of the camera at underwater photography.
+ |
+| [Acceleration](#Acceleration) | Acceleration (a scalar regardless of direction) as the ambient situation at the shot, for example the driving acceleration of the vehicle which the photographer rode on at the shot.
+ |
+| [CameraElevationAngle](#CameraElevationAngle) | Elevation/depression.
+ |
+| [ImageUniqueID](#ImageUniqueID) | This tag indicates an identifier assigned uniquely to each image.
+ |
+| [LensSpecification](#LensSpecification) | This tag notes minimum focal length, maximum focal length, minimum F number in the minimum focal length,
+and minimum F number in the maximum focal length, which are specification information for the lens that was used in photography.
+ |
+| [LensMake](#LensMake) | This tag records the lens manufacturer as an ASCII string.
+ |
+| [LensModel](#LensModel) | This tag records the lens\\u2019s model name and model number as an ASCII string.
+ |
+| [LensSerialNumber](#LensSerialNumber) | This tag records the serial number of the interchangeable lens that was used in photography as an ASCII string.
+ |
## Methods
| Method | Description |
@@ -238,6 +444,7 @@ public static final TiffTagID GpsVersionID
Indicates the version of GPSInfoIFD.
+
### GpsLatitudeRef {#GpsLatitudeRef}
```
public static final TiffTagID GpsLatitudeRef
@@ -246,6 +453,7 @@ public static final TiffTagID GpsLatitudeRef
Indicates whether the latitude is north or south latitude.
+
### GpsLatitude {#GpsLatitude}
```
public static final TiffTagID GpsLatitude
@@ -254,6 +462,7 @@ public static final TiffTagID GpsLatitude
Indicates the latitude.
+
### GpsLongitudeRef {#GpsLongitudeRef}
```
public static final TiffTagID GpsLongitudeRef
@@ -262,6 +471,7 @@ public static final TiffTagID GpsLongitudeRef
Indicates whether the longitude is east or west longitude.
+
### GpsLongitude {#GpsLongitude}
```
public static final TiffTagID GpsLongitude
@@ -270,6 +480,7 @@ public static final TiffTagID GpsLongitude
Indicates the longitude.
+
### GpsAltitudeRef {#GpsAltitudeRef}
```
public static final TiffTagID GpsAltitudeRef
@@ -278,6 +489,7 @@ public static final TiffTagID GpsAltitudeRef
Indicates the altitude used as the reference altitude.
+
### GpsAltitude {#GpsAltitude}
```
public static final TiffTagID GpsAltitude
@@ -286,6 +498,7 @@ public static final TiffTagID GpsAltitude
Indicates the altitude based on the reference in GPSAltitudeRef.
+
### GpsTimeStamp {#GpsTimeStamp}
```
public static final TiffTagID GpsTimeStamp
@@ -294,6 +507,7 @@ public static final TiffTagID GpsTimeStamp
Indicates the time as UTC (Coordinated Universal Time).
+
### GpsSatellites {#GpsSatellites}
```
public static final TiffTagID GpsSatellites
@@ -302,6 +516,7 @@ public static final TiffTagID GpsSatellites
ndicates the GPS satellites used for measurements.
+
### GpsStatus {#GpsStatus}
```
public static final TiffTagID GpsStatus
@@ -310,6 +525,7 @@ public static final TiffTagID GpsStatus
Indicates the status of the GPS receiver when the image is recorded.
+
### GpsMeasureMode {#GpsMeasureMode}
```
public static final TiffTagID GpsMeasureMode
@@ -318,6 +534,7 @@ public static final TiffTagID GpsMeasureMode
Indicates the GPS measurement mode.
+
### GpsDop {#GpsDop}
```
public static final TiffTagID GpsDop
@@ -326,6 +543,7 @@ public static final TiffTagID GpsDop
Indicates the GPS DOP (data degree of precision).
+
### GpsSpeedRef {#GpsSpeedRef}
```
public static final TiffTagID GpsSpeedRef
@@ -334,6 +552,7 @@ public static final TiffTagID GpsSpeedRef
Indicates the unit used to express the GPS receiver speed of movement
+
### GpsSpeed {#GpsSpeed}
```
public static final TiffTagID GpsSpeed
@@ -342,6 +561,7 @@ public static final TiffTagID GpsSpeed
Indicates the speed of GPS receiver movement.
+
### GpsTrackRef {#GpsTrackRef}
```
public static final TiffTagID GpsTrackRef
@@ -350,6 +570,7 @@ public static final TiffTagID GpsTrackRef
Indicates the reference for giving the direction of GPS receiver movement.
+
### GpsTrack {#GpsTrack}
```
public static final TiffTagID GpsTrack
@@ -358,6 +579,7 @@ public static final TiffTagID GpsTrack
Indicates the direction of GPS receiver movement.
+
### GpsImgDirectionRef {#GpsImgDirectionRef}
```
public static final TiffTagID GpsImgDirectionRef
@@ -366,6 +588,7 @@ public static final TiffTagID GpsImgDirectionRef
Indicates the reference for giving the direction of the image when it is captured.
+
### GpsImgDirection {#GpsImgDirection}
```
public static final TiffTagID GpsImgDirection
@@ -374,6 +597,7 @@ public static final TiffTagID GpsImgDirection
Indicates the direction of the image when it was captured.
+
### GpsMapDatum {#GpsMapDatum}
```
public static final TiffTagID GpsMapDatum
@@ -382,6 +606,7 @@ public static final TiffTagID GpsMapDatum
Indicates the geodetic survey data used by the GPS receiver.
+
### GpsDestLatitudeRef {#GpsDestLatitudeRef}
```
public static final TiffTagID GpsDestLatitudeRef
@@ -390,6 +615,7 @@ public static final TiffTagID GpsDestLatitudeRef
Indicates whether the latitude of the destination point is north or south latitude.
+
### GpsDestLatitude {#GpsDestLatitude}
```
public static final TiffTagID GpsDestLatitude
@@ -398,6 +624,7 @@ public static final TiffTagID GpsDestLatitude
Indicates the latitude of the destination point.
+
### GpsDestLongitudeRef {#GpsDestLongitudeRef}
```
public static final TiffTagID GpsDestLongitudeRef
@@ -406,6 +633,7 @@ public static final TiffTagID GpsDestLongitudeRef
Indicates whether the longitude of the destination point is east or west longitude.
+
### GpsDestLongitude {#GpsDestLongitude}
```
public static final TiffTagID GpsDestLongitude
@@ -414,6 +642,7 @@ public static final TiffTagID GpsDestLongitude
Indicates the longitude of the destination point.
+
### GpsDestBearingRef {#GpsDestBearingRef}
```
public static final TiffTagID GpsDestBearingRef
@@ -422,6 +651,7 @@ public static final TiffTagID GpsDestBearingRef
Indicates the reference used for giving the bearing to the destination point.
+
### GpsDestBearing {#GpsDestBearing}
```
public static final TiffTagID GpsDestBearing
@@ -430,6 +660,7 @@ public static final TiffTagID GpsDestBearing
Indicates the bearing to the destination point.
+
### GpsDestDistanceRef {#GpsDestDistanceRef}
```
public static final TiffTagID GpsDestDistanceRef
@@ -438,6 +669,7 @@ public static final TiffTagID GpsDestDistanceRef
Indicates the unit used to express the distance to the destination point.
+
### GpsDestDistance {#GpsDestDistance}
```
public static final TiffTagID GpsDestDistance
@@ -446,6 +678,7 @@ public static final TiffTagID GpsDestDistance
Indicates the distance to the destination point.
+
### GpsProcessingMethod {#GpsProcessingMethod}
```
public static final TiffTagID GpsProcessingMethod
@@ -454,6 +687,7 @@ public static final TiffTagID GpsProcessingMethod
A character string recording the name of the method used for location finding.
+
### GpsAreaInformation {#GpsAreaInformation}
```
public static final TiffTagID GpsAreaInformation
@@ -462,6 +696,7 @@ public static final TiffTagID GpsAreaInformation
A character string recording the name of the GPS area.
+
### GpsDateStamp {#GpsDateStamp}
```
public static final TiffTagID GpsDateStamp
@@ -470,6 +705,7 @@ public static final TiffTagID GpsDateStamp
A character string recording date and time information relative to UTC (Coordinated Universal Time).
+
### GpsDifferential {#GpsDifferential}
```
public static final TiffTagID GpsDifferential
@@ -478,6 +714,7 @@ public static final TiffTagID GpsDifferential
Indicates whether differential correction is applied to the GPS receiver.
+
### GpsHPositioningError {#GpsHPositioningError}
```
public static final TiffTagID GpsHPositioningError
@@ -486,6 +723,7 @@ public static final TiffTagID GpsHPositioningError
This tag indicates horizontal positioning errors in meters.
+
### NewSubfileType {#NewSubfileType}
```
public static final TiffTagID NewSubfileType
@@ -494,13 +732,16 @@ public static final TiffTagID NewSubfileType
A general indication of the kind of data contained in this sub-file.
+
### SubfileType {#SubfileType}
```
public static final TiffTagID SubfileType
```
-A general indication of the kind of data contained in this subfile. This field is deprecated. The NewSubfileType field should be used instead
+A general indication of the kind of data contained in this subfile.
+This field is deprecated. The NewSubfileType field should be used instead
+
### ImageWidth {#ImageWidth}
```
@@ -510,6 +751,7 @@ public static final TiffTagID ImageWidth
The number of columns in the image, i.e., the number of pixels per scan line.
+
### ImageLength {#ImageLength}
```
public static final TiffTagID ImageLength
@@ -518,6 +760,7 @@ public static final TiffTagID ImageLength
The number of rows (sometimes described as scan lines) in the image.
+
### BitsPerSample {#BitsPerSample}
```
public static final TiffTagID BitsPerSample
@@ -526,6 +769,7 @@ public static final TiffTagID BitsPerSample
Number of bits per component.
+
### Compression {#Compression}
```
public static final TiffTagID Compression
@@ -534,6 +778,7 @@ public static final TiffTagID Compression
Compression scheme used on the image data.
+
### PhotometricInterpretation {#PhotometricInterpretation}
```
public static final TiffTagID PhotometricInterpretation
@@ -542,6 +787,7 @@ public static final TiffTagID PhotometricInterpretation
The color space of the image data.
+
### Threshholding {#Threshholding}
```
public static final TiffTagID Threshholding
@@ -550,13 +796,16 @@ public static final TiffTagID Threshholding
For black and white TIFF files that represent shades of gray, the technique used to convert from gray to black and white pixels.
+
### CellWidth {#CellWidth}
```
public static final TiffTagID CellWidth
```
-The width of the dithering or halftoning matrix used to create a dithered or halftoned bi-level file.
+The width of the dithering or halftoning matrix used to create a dithered or
+halftoned bi-level file.
+
### CellLength {#CellLength}
```
@@ -564,7 +813,9 @@ public static final TiffTagID CellLength
```
-The length of the dithering or halftoning matrix used to create a dithered or halftoned bi-level file.
+The length of the dithering or halftoning matrix used to create a dithered or
+halftoned bi-level file.
+
### FillOrder {#FillOrder}
```
@@ -574,6 +825,7 @@ public static final TiffTagID FillOrder
The logical order of bits within a byte.
+
### DocumentName {#DocumentName}
```
public static final TiffTagID DocumentName
@@ -582,6 +834,7 @@ public static final TiffTagID DocumentName
The name of the document from which this image was scanned.
+
### ImageDescription {#ImageDescription}
```
public static final TiffTagID ImageDescription
@@ -590,6 +843,7 @@ public static final TiffTagID ImageDescription
A string that describes the subject of the image.
+
### Make {#Make}
```
public static final TiffTagID Make
@@ -598,6 +852,7 @@ public static final TiffTagID Make
The scanner manufacturer.
+
### Model {#Model}
```
public static final TiffTagID Model
@@ -606,6 +861,7 @@ public static final TiffTagID Model
The scanner model name or number.
+
### StripOffsets {#StripOffsets}
```
public static final TiffTagID StripOffsets
@@ -614,6 +870,7 @@ public static final TiffTagID StripOffsets
For each strip, the byte offset of that strip.
+
### Orientation {#Orientation}
```
public static final TiffTagID Orientation
@@ -622,6 +879,7 @@ public static final TiffTagID Orientation
The orientation of the image with respect to the rows and columns.
+
### SamplesPerPixel {#SamplesPerPixel}
```
public static final TiffTagID SamplesPerPixel
@@ -630,6 +888,7 @@ public static final TiffTagID SamplesPerPixel
The number of components per pixel.
+
### RowsPerStrip {#RowsPerStrip}
```
public static final TiffTagID RowsPerStrip
@@ -638,6 +897,7 @@ public static final TiffTagID RowsPerStrip
The number of rows per strip.
+
### StripByteCounts {#StripByteCounts}
```
public static final TiffTagID StripByteCounts
@@ -646,6 +906,7 @@ public static final TiffTagID StripByteCounts
For each strip, the number of bytes in the strip after compression.
+
### MinSampleValue {#MinSampleValue}
```
public static final TiffTagID MinSampleValue
@@ -654,6 +915,7 @@ public static final TiffTagID MinSampleValue
The minimum component value used.
+
### MaxSampleValue {#MaxSampleValue}
```
public static final TiffTagID MaxSampleValue
@@ -662,6 +924,7 @@ public static final TiffTagID MaxSampleValue
The maximum component value used.
+
### XResolution {#XResolution}
```
public static final TiffTagID XResolution
@@ -670,6 +933,7 @@ public static final TiffTagID XResolution
The number of pixels per ResolutionUnit in the ImageWidth direction.
+
### YResolution {#YResolution}
```
public static final TiffTagID YResolution
@@ -678,6 +942,7 @@ public static final TiffTagID YResolution
The number of pixels per ResolutionUnit in the ImageLength direction.
+
### PlanarConfiguration {#PlanarConfiguration}
```
public static final TiffTagID PlanarConfiguration
@@ -686,6 +951,7 @@ public static final TiffTagID PlanarConfiguration
How the components of each pixel are stored.
+
### PageName {#PageName}
```
public static final TiffTagID PageName
@@ -694,6 +960,7 @@ public static final TiffTagID PageName
The name of the page from which this image was scanned.
+
### XPosition {#XPosition}
```
public static final TiffTagID XPosition
@@ -702,6 +969,7 @@ public static final TiffTagID XPosition
X position of the image.
+
### YPosition {#YPosition}
```
public static final TiffTagID YPosition
@@ -710,6 +978,7 @@ public static final TiffTagID YPosition
Y position of the image.
+
### FreeOffsets {#FreeOffsets}
```
public static final TiffTagID FreeOffsets
@@ -718,6 +987,7 @@ public static final TiffTagID FreeOffsets
For each string of contiguous unused bytes in a TIFF file, the byte offset of the string.
+
### FreeByteCounts {#FreeByteCounts}
```
public static final TiffTagID FreeByteCounts
@@ -726,6 +996,7 @@ public static final TiffTagID FreeByteCounts
For each string of contiguous unused bytes in a TIFF file, the number of bytes in the string.
+
### GrayResponseUnit {#GrayResponseUnit}
```
public static final TiffTagID GrayResponseUnit
@@ -734,6 +1005,7 @@ public static final TiffTagID GrayResponseUnit
The precision of the information contained in the GrayResponseCurve.
+
### GrayResponseCurve {#GrayResponseCurve}
```
public static final TiffTagID GrayResponseCurve
@@ -742,6 +1014,7 @@ public static final TiffTagID GrayResponseCurve
For grayscale data, the optical density of each possible pixel value.
+
### T4Options {#T4Options}
```
public static final TiffTagID T4Options
@@ -750,6 +1023,7 @@ public static final TiffTagID T4Options
T4-encoding options.
+
### T6Options {#T6Options}
```
public static final TiffTagID T6Options
@@ -758,6 +1032,7 @@ public static final TiffTagID T6Options
T6-encoding options.
+
### ResolutionUnit {#ResolutionUnit}
```
public static final TiffTagID ResolutionUnit
@@ -766,6 +1041,7 @@ public static final TiffTagID ResolutionUnit
The unit of measurement for XResolution and YResolution.
+
### PageNumber {#PageNumber}
```
public static final TiffTagID PageNumber
@@ -774,13 +1050,19 @@ public static final TiffTagID PageNumber
The page number of the page from which this image was scanned.
+
### TransferFunction {#TransferFunction}
```
public static final TiffTagID TransferFunction
```
-Describes a transfer function for the image in tabular style. Pixel components can be gamma-compensated, companded, non-uniformly quantized, or coded in some other way. The TransferFunction maps the pixel components from a non-linear BitsPerSample (e.g. 8-bit) form into a 16-bit linear form without a perceptible loss of accuracy.
+Describes a transfer function for the image in tabular style. Pixel components can
+be gamma-compensated, companded, non-uniformly quantized, or coded in some
+other way. The TransferFunction maps the pixel components from a non-linear
+BitsPerSample (e.g. 8-bit) form into a 16-bit linear form without a perceptible loss
+of accuracy.
+
### Software {#Software}
```
@@ -790,6 +1072,7 @@ public static final TiffTagID Software
Name and version number of the software package(s) used to create the image.
+
### DateTime {#DateTime}
```
public static final TiffTagID DateTime
@@ -798,6 +1081,7 @@ public static final TiffTagID DateTime
Date and time of image creation.
+
### Artist {#Artist}
```
public static final TiffTagID Artist
@@ -806,6 +1090,7 @@ public static final TiffTagID Artist
Person who created the image.
+
### HostComputer {#HostComputer}
```
public static final TiffTagID HostComputer
@@ -814,6 +1099,7 @@ public static final TiffTagID HostComputer
The computer and/or operating system in use at the time of image creation.
+
### Predictor {#Predictor}
```
public static final TiffTagID Predictor
@@ -822,6 +1108,7 @@ public static final TiffTagID Predictor
This section defines a Predictor that greatly improves compression ratios for some images.
+
### WhitePoint {#WhitePoint}
```
public static final TiffTagID WhitePoint
@@ -830,6 +1117,7 @@ public static final TiffTagID WhitePoint
The chromaticity of the white point of the image.
+
### PrimaryChromaticities {#PrimaryChromaticities}
```
public static final TiffTagID PrimaryChromaticities
@@ -838,6 +1126,7 @@ public static final TiffTagID PrimaryChromaticities
The chromaticities of the primaries of the image.
+
### ColorMap {#ColorMap}
```
public static final TiffTagID ColorMap
@@ -846,13 +1135,17 @@ public static final TiffTagID ColorMap
A color map for palette color images.
+
### HalftoneHints {#HalftoneHints}
```
public static final TiffTagID HalftoneHints
```
-The purpose of the HalftoneHints field is to convey to the halftone function the range of gray levels within a colorimetrically-specified image that should retain tonal detail.
+The purpose of the HalftoneHints field is to convey to the halftone function the
+range of gray levels within a colorimetrically-specified image that should retain
+tonal detail.
+
### TileWidth {#TileWidth}
```
@@ -862,6 +1155,7 @@ public static final TiffTagID TileWidth
The tile width in pixels. This is the number of columns in each tile.
+
### TileLength {#TileLength}
```
public static final TiffTagID TileLength
@@ -870,13 +1164,17 @@ public static final TiffTagID TileLength
The tile length (height) in pixels. This is the number of rows in each tile.
+
### TileOffsets {#TileOffsets}
```
public static final TiffTagID TileOffsets
```
-For each tile, the byte offset of that tile, as compressed and stored on disk. The offset is specified with respect to the beginning of the TIFF file. Note that this implies that each tile has a location independent of the locations of other tiles.
+For each tile, the byte offset of that tile, as compressed and stored on disk.
+The offset is specified with respect to the beginning of the TIFF file.
+Note that this implies that each tile has a location independent of the locations of other tiles.
+
### TileByteCounts {#TileByteCounts}
```
@@ -886,6 +1184,7 @@ public static final TiffTagID TileByteCounts
For each tile, the number of (compressed) bytes in that tile.
+
### InkSet {#InkSet}
```
public static final TiffTagID InkSet
@@ -894,13 +1193,16 @@ public static final TiffTagID InkSet
The set of inks used in a separated (PhotometricInterpretation=5) image.
+
### InkNames {#InkNames}
```
public static final TiffTagID InkNames
```
-The name of each ink used in a separated (PhotometricInterpretation=5) image, written as a list of concatenated, NUL-terminated ASCII strings.
+The name of each ink used in a separated (PhotometricInterpretation=5) image,
+written as a list of concatenated, NUL-terminated ASCII strings.
+
### NumberOfInks {#NumberOfInks}
```
@@ -910,13 +1212,16 @@ public static final TiffTagID NumberOfInks
The number of inks. Usually equal to SamplesPerPixel, unless there are extra samples.
+
### DotRange {#DotRange}
```
public static final TiffTagID DotRange
```
-The component values that correspond to a 0% dot and 100% dot. DotRange[0] corresponds to a 0% dot, and DotRange[1] corresponds to a 100% dot.
+The component values that correspond to a 0% dot and 100% dot. DotRange[0]
+corresponds to a 0% dot, and DotRange[1] corresponds to a 100% dot.
+
### ExtraSamples {#ExtraSamples}
```
@@ -926,6 +1231,7 @@ public static final TiffTagID ExtraSamples
Description of extra components.
+
### SampleFormat {#SampleFormat}
```
public static final TiffTagID SampleFormat
@@ -934,6 +1240,7 @@ public static final TiffTagID SampleFormat
This field specifies how to interpret each data sample in a pixel.
+
### SMinSampleValue {#SMinSampleValue}
```
public static final TiffTagID SMinSampleValue
@@ -942,6 +1249,7 @@ public static final TiffTagID SMinSampleValue
This field specifies the minimum sample value.
+
### SMaxSampleValue {#SMaxSampleValue}
```
public static final TiffTagID SMaxSampleValue
@@ -950,6 +1258,7 @@ public static final TiffTagID SMaxSampleValue
This new field specifies the maximum sample value.
+
### TransferRange {#TransferRange}
```
public static final TiffTagID TransferRange
@@ -958,6 +1267,7 @@ public static final TiffTagID TransferRange
Expands the range of the TransferFunction.
+
### JpegProc {#JpegProc}
```
public static final TiffTagID JpegProc
@@ -966,6 +1276,7 @@ public static final TiffTagID JpegProc
This Field indicates the JPEG process used to produce the compressed data.
+
### JpegInterchangeFormat {#JpegInterchangeFormat}
```
public static final TiffTagID JpegInterchangeFormat
@@ -974,6 +1285,7 @@ public static final TiffTagID JpegInterchangeFormat
This Field indicates whether a JPEG interchange format bitstream is present in the TIFF file.
+
### JpegInterchangeFormatLength {#JpegInterchangeFormatLength}
```
public static final TiffTagID JpegInterchangeFormatLength
@@ -982,6 +1294,7 @@ public static final TiffTagID JpegInterchangeFormatLength
This Field indicates the length in bytes of the JPEG interchange format bitstream
+
### JpegRestartInterval {#JpegRestartInterval}
```
public static final TiffTagID JpegRestartInterval
@@ -990,6 +1303,7 @@ public static final TiffTagID JpegRestartInterval
This Field indicates the length of the restart interval used in the compressed image data.
+
### JpegLosslessPredictors {#JpegLosslessPredictors}
```
public static final TiffTagID JpegLosslessPredictors
@@ -998,6 +1312,7 @@ public static final TiffTagID JpegLosslessPredictors
This Field points to a list of lossless predictor-selection values, one per component.
+
### JpegPointTransforms {#JpegPointTransforms}
```
public static final TiffTagID JpegPointTransforms
@@ -1006,6 +1321,7 @@ public static final TiffTagID JpegPointTransforms
This Field points to a list of point transform values, one per component.
+
### JpegQTables {#JpegQTables}
```
public static final TiffTagID JpegQTables
@@ -1014,13 +1330,16 @@ public static final TiffTagID JpegQTables
This Field points to a list of offsets to the quantization tables, one per component.
+
### JpegDCTables {#JpegDCTables}
```
public static final TiffTagID JpegDCTables
```
-This Field points to a list of offsets to the DC Huffman tables or the lossless Huffman tables, one per component.
+This Field points to a list of offsets to the DC Huffman tables or the lossless
+Huffman tables, one per component.
+
### JpegACTables {#JpegACTables}
```
@@ -1030,6 +1349,7 @@ public static final TiffTagID JpegACTables
This Field points to a list of offsets to the Huffman AC tables, one per component.
+
### YCbCrCoefficients {#YCbCrCoefficients}
```
public static final TiffTagID YCbCrCoefficients
@@ -1038,6 +1358,7 @@ public static final TiffTagID YCbCrCoefficients
The matrix cofficients for transformation from RGB to YCbCr image data.
+
### YCbCrSubSampling {#YCbCrSubSampling}
```
public static final TiffTagID YCbCrSubSampling
@@ -1046,6 +1367,7 @@ public static final TiffTagID YCbCrSubSampling
The sampling ratio of chrominance components in relation to the luminance component.
+
### YCbCrPositioning {#YCbCrPositioning}
```
public static final TiffTagID YCbCrPositioning
@@ -1054,6 +1376,7 @@ public static final TiffTagID YCbCrPositioning
Specifies the positioning of subsampled chrominance components relative to luminance samples.
+
### ReferenceBlackWhite {#ReferenceBlackWhite}
```
public static final TiffTagID ReferenceBlackWhite
@@ -1062,6 +1385,7 @@ public static final TiffTagID ReferenceBlackWhite
Specifies a pair of headroom and footroom image data values (codes) for each pixel component.
+
### Copyright {#Copyright}
```
public static final TiffTagID Copyright
@@ -1070,6 +1394,7 @@ public static final TiffTagID Copyright
Copyright notice.
+
### UserComment {#UserComment}
```
public static final TiffTagID UserComment
@@ -1078,6 +1403,7 @@ public static final TiffTagID UserComment
Keywords or comments on the image; complements ImageDescription.
+
### Xmp {#Xmp}
```
public static final TiffTagID Xmp
@@ -1086,6 +1412,7 @@ public static final TiffTagID Xmp
Pointer to the XMP metadata.
+
### ImageID {#ImageID}
```
public static final TiffTagID ImageID
@@ -1094,13 +1421,16 @@ public static final TiffTagID ImageID
OPI-related.
+
### Iptc {#Iptc}
```
public static final TiffTagID Iptc
```
-IPTC (International Press Telecommunications Council) metadata. Often times, the data type is incorrectly specified as LONG.
+IPTC (International Press Telecommunications Council) metadata.
+Often times, the data type is incorrectly specified as LONG.
+
### Photoshop {#Photoshop}
```
@@ -1110,6 +1440,7 @@ public static final TiffTagID Photoshop
Collection of Photoshop 'Image Resource Blocks'.
+
### ImageLayer {#ImageLayer}
```
public static final TiffTagID ImageLayer
@@ -1118,6 +1449,7 @@ public static final TiffTagID ImageLayer
Image layer.
+
### IccProfile {#IccProfile}
```
public static final TiffTagID IccProfile
@@ -1126,13 +1458,16 @@ public static final TiffTagID IccProfile
Color profile data.
+
### ExifIfd {#ExifIfd}
```
public static final TiffTagID ExifIfd
```
-Pointer to collection of all EXIF Metadata. EXIF uses field names rather than tags to indicate the field content.
+Pointer to collection of all EXIF Metadata.
+EXIF uses field names rather than tags to indicate the field content.
+
### GpsIfd {#GpsIfd}
```
@@ -1142,6 +1477,7 @@ public static final TiffTagID GpsIfd
Pointer to GPS data.
+
### Makernotes {#Makernotes}
```
public static final TiffTagID Makernotes
@@ -1150,6 +1486,7 @@ public static final TiffTagID Makernotes
Pointer to makernotes data.
+
### InteroperabilityIfd {#InteroperabilityIfd}
```
public static final TiffTagID InteroperabilityIfd
@@ -1158,6 +1495,7 @@ public static final TiffTagID InteroperabilityIfd
Exif-related Interoperability IFD.
+
### CameraOwnerName {#CameraOwnerName}
```
public static final TiffTagID CameraOwnerName
@@ -1166,6 +1504,7 @@ public static final TiffTagID CameraOwnerName
Camera owner name as ASCII string.
+
### BodySerialNumber {#BodySerialNumber}
```
public static final TiffTagID BodySerialNumber
@@ -1174,6 +1513,7 @@ public static final TiffTagID BodySerialNumber
Camera body serial number as ASCII string.
+
### CfaPattern {#CfaPattern}
```
public static final TiffTagID CfaPattern
@@ -1182,6 +1522,7 @@ public static final TiffTagID CfaPattern
ndicates the color filter array (CFA) geometric pattern of the image sensor when a one-chip color area sensor is used. It does not apply to all sensing methods.
+
### ExifVersion {#ExifVersion}
```
public static final TiffTagID ExifVersion
@@ -1190,6 +1531,7 @@ public static final TiffTagID ExifVersion
The version of the EXIF standard supported.
+
### ComponentsConfiguration {#ComponentsConfiguration}
```
public static final TiffTagID ComponentsConfiguration
@@ -1198,6 +1540,7 @@ public static final TiffTagID ComponentsConfiguration
Information specific to the compressed data. The channels of each component are arranged in order from the 1st component to the 4th.
+
### FlashpixVersion {#FlashpixVersion}
```
public static final TiffTagID FlashpixVersion
@@ -1206,13 +1549,17 @@ public static final TiffTagID FlashpixVersion
The Flashpix format version supported by a FPXR file. If the FPXR function supports Flashpix format Ver. 1.0, this is indicated similarly to ExifVersion by recording "0100" as 4-byte ASCII.
+
### ColorSpace {#ColorSpace}
```
public static final TiffTagID ColorSpace
```
-The color space information tag (ColorSpace) is always recorded as the color space specifier. Normally sRGB (=1) is used to define the color space based on the PC monitor conditions and environment. If a color space other than sRGB is used, Uncalibrated (=FFFF.H) is set.
+The color space information tag (ColorSpace) is always recorded as the color space specifier.
+Normally sRGB (=1) is used to define the color space based on the PC monitor conditions and environment.
+If a color space other than sRGB is used, Uncalibrated (=FFFF.H) is set.
+
### PixelXDimension {#PixelXDimension}
```
@@ -1220,7 +1567,9 @@ public static final TiffTagID PixelXDimension
```
-Information specific to compressed data. When a compressed file is recorded, the valid width of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker.
+Information specific to compressed data. When a compressed file is recorded,
+the valid width of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker.
+
### PixelYDimension {#PixelYDimension}
```
@@ -1228,7 +1577,9 @@ public static final TiffTagID PixelYDimension
```
-Information specific to compressed data. When a compressed file is recorded, the valid height of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker.
+Information specific to compressed data. When a compressed file is recorded,
+the valid height of the meaningful image shall be recorded in this tag, whether or not there is padding data or a restart marker.
+
### SceneCaptureType {#SceneCaptureType}
```
@@ -1238,6 +1589,7 @@ public static final TiffTagID SceneCaptureType
This tag indicates the type of scene that was shot. It may also be used to record the mode in which the image was shot.
+
### Gamma {#Gamma}
```
public static final TiffTagID Gamma
@@ -1246,6 +1598,7 @@ public static final TiffTagID Gamma
Indicates the value of coefficient gamma.
+
### CompressedBitsPerPixel {#CompressedBitsPerPixel}
```
public static final TiffTagID CompressedBitsPerPixel
@@ -1254,13 +1607,17 @@ public static final TiffTagID CompressedBitsPerPixel
Information specific to compressed data. The compression mode used for a compressed image is indicated in unit bits per pixel.
+
### RelatedSoundFile {#RelatedSoundFile}
```
public static final TiffTagID RelatedSoundFile
```
-This tag is used to record the name of an audio file related to the image data. The only relational information recorded here is the Exif audio file name and extension (an ASCII string consisting of 8 characters + '.' + 3 characters).
+This tag is used to record the name of an audio file related to the image data.
+The only relational information recorded here is the Exif audio file name and extension
+(an ASCII string consisting of 8 characters + '.' + 3 characters).
+
### DateTimeOriginal {#DateTimeOriginal}
```
@@ -1268,7 +1625,10 @@ public static final TiffTagID DateTimeOriginal
```
-The date and time when the original image data was generated. For a DSC the date and time the picture was taken are recorded. The format is "YYYY:MM:DD HH:MM:SS" with time shown in 24-hour format, and the date and time separated by one blank character.
+The date and time when the original image data was generated.
+For a DSC the date and time the picture was taken are recorded.
+The format is "YYYY:MM:DD HH:MM:SS" with time shown in 24-hour format, and the date and time separated by one blank character.
+
### DateTimeDigitized {#DateTimeDigitized}
```
@@ -1276,7 +1636,10 @@ public static final TiffTagID DateTimeDigitized
```
-The date and time when the image was stored as digital data. If, for example, an image was captured by DSC and at the same time the file was recorded, then the DateTimeOriginal and DateTimeDigitized will have the same contents. The format is "YYYY:MM:DD HH:MM:SS" with time shown in 24-hour format, and the date and time separated by one blank character.
+The date and time when the image was stored as digital data.
+If, for example, an image was captured by DSC and at the same time the file was recorded, then the DateTimeOriginal and DateTimeDigitized will have the same contents.
+The format is "YYYY:MM:DD HH:MM:SS" with time shown in 24-hour format, and the date and time separated by one blank character.
+
### OffsetTime {#OffsetTime}
```
@@ -1284,7 +1647,10 @@ public static final TiffTagID OffsetTime
```
-A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTime tag. The format when recording the offset is "±HH:MM". The part of "±" shall be recorded as "+" or "-".
+A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTime tag.
+The format when recording the offset is "±HH:MM".
+The part of "±" shall be recorded as "+" or "-".
+
### OffsetTimeOriginal {#OffsetTimeOriginal}
```
@@ -1292,7 +1658,10 @@ public static final TiffTagID OffsetTimeOriginal
```
-A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeOriginal tag. The format when recording the offset is "±HH:MM". The part of "±" shall be recorded as "+" or "-".
+A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeOriginal tag.
+The format when recording the offset is "±HH:MM".
+The part of "±" shall be recorded as "+" or "-".
+
### OffsetTimeDigitized {#OffsetTimeDigitized}
```
@@ -1300,7 +1669,10 @@ public static final TiffTagID OffsetTimeDigitized
```
-A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeDigitized tag. The format when recording the offset is "±HH:MM". The part of "±" shall be recorded as "+" or "-".
+A tag used to record the offset from UTC (the time difference from Universal Time Coordinated including daylight saving time) of the time of DateTimeDigitized tag.
+The format when recording the offset is "±HH:MM".
+The part of "±" shall be recorded as "+" or "-".
+
### SubsecTime {#SubsecTime}
```
@@ -1310,6 +1682,7 @@ public static final TiffTagID SubsecTime
A tag used to record fractions of seconds for the DateTime tag.
+
### SubsecTimeOriginal {#SubsecTimeOriginal}
```
public static final TiffTagID SubsecTimeOriginal
@@ -1318,6 +1691,7 @@ public static final TiffTagID SubsecTimeOriginal
A tag used to record fractions of seconds for the DateTimeOriginal tag.
+
### SubsecTimeDigitized {#SubsecTimeDigitized}
```
public static final TiffTagID SubsecTimeDigitized
@@ -1326,6 +1700,7 @@ public static final TiffTagID SubsecTimeDigitized
A tag used to record fractions of seconds for the DateTimeDigitized tag.
+
### ExposureTime {#ExposureTime}
```
public static final TiffTagID ExposureTime
@@ -1334,6 +1709,7 @@ public static final TiffTagID ExposureTime
Exposure time, given in seconds (sec).
+
### FNumber {#FNumber}
```
public static final TiffTagID FNumber
@@ -1342,6 +1718,7 @@ public static final TiffTagID FNumber
The F number.
+
### ExposureProgram {#ExposureProgram}
```
public static final TiffTagID ExposureProgram
@@ -1350,13 +1727,16 @@ public static final TiffTagID ExposureProgram
The class of the program used by the camera to set exposure when the picture is taken.
+
### SpectralSensitivity {#SpectralSensitivity}
```
public static final TiffTagID SpectralSensitivity
```
-Indicates the spectral sensitivity of each channel of the camera used. The tag value is an ASCII string compatible with the standard developed by the ASTM Technical committee.
+Indicates the spectral sensitivity of each channel of the camera used.
+The tag value is an ASCII string compatible with the standard developed by the ASTM Technical committee.
+
### PhotographicSensitivity {#PhotographicSensitivity}
```
@@ -1366,13 +1746,16 @@ public static final TiffTagID PhotographicSensitivity
This tag indicates the sensitivity of the camera or input device when the image was shot.
+
### Oecf {#Oecf}
```
public static final TiffTagID Oecf
```
-Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524. OECF is the relationship between the camera optical input and the image values.
+Indicates the Opto-Electric Conversion Function (OECF) specified in ISO 14524.
+OECF is the relationship between the camera optical input and the image values.
+
### SensitivityType {#SensitivityType}
```
@@ -1380,7 +1763,9 @@ public static final TiffTagID SensitivityType
```
-The SensitivityType tag indicates which one of the parameters of ISO12232 is the PhotographicSensitivity tag. Although it is an optional tag, it should be recorded when a PhotographicSensitivity tag is recorded.
+The SensitivityType tag indicates which one of the parameters of ISO12232 is the PhotographicSensitivity tag.
+Although it is an optional tag, it should be recorded when a PhotographicSensitivity tag is recorded.
+
### StandardOutputSensitivity {#StandardOutputSensitivity}
```
@@ -1388,7 +1773,9 @@ public static final TiffTagID StandardOutputSensitivity
```
-This tag indicates the standard output sensitivity value of a camera or input device defined in ISO 12232. When recording this tag, the PhotographicSensitivity and SensitivityType tags shall also be recorded.
+This tag indicates the standard output sensitivity value of a camera or input device defined in ISO 12232.
+When recording this tag, the PhotographicSensitivity and SensitivityType tags shall also be recorded.
+
### RecommendedExposureIndex {#RecommendedExposureIndex}
```
@@ -1396,7 +1783,9 @@ public static final TiffTagID RecommendedExposureIndex
```
-This tag indicates the recommended exposure index value of a camera or input device defined in ISO 12232. When recording this tag, the PhotographicSensitivity and SensitivityType tags shall also be recorded.
+This tag indicates the recommended exposure index value of a camera or input device defined in ISO 12232.
+When recording this tag, the PhotographicSensitivity and SensitivityType tags shall also be recorded.
+
### IsoSpeed {#IsoSpeed}
```
@@ -1404,7 +1793,9 @@ public static final TiffTagID IsoSpeed
```
-This tag indicates the ISO speed value of a camera or input device that is defined in ISO 12232. When recording this tag, the PhotographicSensitivity and SensitivityType tags shall also be recorded.
+This tag indicates the ISO speed value of a camera or input device that is defined in ISO 12232.
+When recording this tag, the PhotographicSensitivity and SensitivityType tags shall also be recorded.
+
### ISOSpeedLatitudeYyy {#ISOSpeedLatitudeYyy}
```
@@ -1414,6 +1805,7 @@ public static final TiffTagID ISOSpeedLatitudeYyy
This tag indicates the ISO speed latitude yyy value of a camera or input device that is defined in ISO 12232.
+
### ISOSpeedLatitudeZzz {#ISOSpeedLatitudeZzz}
```
public static final TiffTagID ISOSpeedLatitudeZzz
@@ -1422,6 +1814,7 @@ public static final TiffTagID ISOSpeedLatitudeZzz
This tag indicates the ISO speed latitude zzz value of a camera or input device that is defined in ISO 12232.
+
### ShutterSpeedValue {#ShutterSpeedValue}
```
public static final TiffTagID ShutterSpeedValue
@@ -1430,6 +1823,7 @@ public static final TiffTagID ShutterSpeedValue
Shutter speed. The unit is the APEX (Additive System of Photographic Exposure) setting.
+
### ApertureValue {#ApertureValue}
```
public static final TiffTagID ApertureValue
@@ -1438,6 +1832,7 @@ public static final TiffTagID ApertureValue
The lens aperture. The unit is the APEX value.
+
### BrightnessValue {#BrightnessValue}
```
public static final TiffTagID BrightnessValue
@@ -1446,6 +1841,7 @@ public static final TiffTagID BrightnessValue
The value of brightness. The unit is the APEX value.
+
### ExposureBiasValue {#ExposureBiasValue}
```
public static final TiffTagID ExposureBiasValue
@@ -1454,6 +1850,7 @@ public static final TiffTagID ExposureBiasValue
The exposure bias. The unit is the APEX value.
+
### MaxApertureValue {#MaxApertureValue}
```
public static final TiffTagID MaxApertureValue
@@ -1462,6 +1859,7 @@ public static final TiffTagID MaxApertureValue
The smallest F number of the lens. The unit is the APEX value.
+
### SubjectDistance {#SubjectDistance}
```
public static final TiffTagID SubjectDistance
@@ -1470,6 +1868,7 @@ public static final TiffTagID SubjectDistance
The distance to the subject, given in meters.
+
### MeteringMode {#MeteringMode}
```
public static final TiffTagID MeteringMode
@@ -1478,6 +1877,7 @@ public static final TiffTagID MeteringMode
The metering mode.
+
### LightSource {#LightSource}
```
public static final TiffTagID LightSource
@@ -1486,13 +1886,17 @@ public static final TiffTagID LightSource
The kind of light source.
+
### Flash {#Flash}
```
public static final TiffTagID Flash
```
-This tag indicates the status of flash when the image was shot. Bit 0 indicates the flash firing status, bits 1 and 2 indicate the flash return status, bits 3 and 4 indicate the flash mode, bit 5 indicates whether the flash function is present, and bit 6 indicates "red eye" mode.
+This tag indicates the status of flash when the image was shot.
+Bit 0 indicates the flash firing status, bits 1 and 2 indicate the flash return status,
+bits 3 and 4 indicate the flash mode, bit 5 indicates whether the flash function is present, and bit 6 indicates "red eye" mode.
+
### SubjectArea {#SubjectArea}
```
@@ -1502,6 +1906,7 @@ public static final TiffTagID SubjectArea
This tag indicates the location and area of the main subject in the overall scene.
+
### FocalLength {#FocalLength}
```
public static final TiffTagID FocalLength
@@ -1510,6 +1915,7 @@ public static final TiffTagID FocalLength
The actual focal length of the lens, in mm. Conversion is not made to the focal length of a 35 mm film camera.
+
### FlashEnergy {#FlashEnergy}
```
public static final TiffTagID FlashEnergy
@@ -1518,13 +1924,16 @@ public static final TiffTagID FlashEnergy
Indicates the strobe energy at the time the image is captured, as measured in Beam Candle Power Seconds (BCPS).
+
### SpatialFrequencyResponse {#SpatialFrequencyResponse}
```
public static final TiffTagID SpatialFrequencyResponse
```
-This tag records the camera or input device spatial frequency table and SFR values in the direction of image width, image height, and diagonal direction, as specified in ISO 12233.
+This tag records the camera or input device spatial frequency table and SFR values in the direction of image width,
+image height, and diagonal direction, as specified in ISO 12233.
+
### FocalPlaneXResolution {#FocalPlaneXResolution}
```
@@ -1534,6 +1943,7 @@ public static final TiffTagID FocalPlaneXResolution
Indicates the number of pixels in the image width (X) direction per FocalPlaneResolutionUnit on the camera focal plane.
+
### FocalPlaneYResolution {#FocalPlaneYResolution}
```
public static final TiffTagID FocalPlaneYResolution
@@ -1542,6 +1952,7 @@ public static final TiffTagID FocalPlaneYResolution
Indicates the number of pixels in the image height (Y) direction per FocalPlaneResolutionUnit on the camera focal plane.
+
### FocalPlaneResolutionUnit {#FocalPlaneResolutionUnit}
```
public static final TiffTagID FocalPlaneResolutionUnit
@@ -1550,13 +1961,17 @@ public static final TiffTagID FocalPlaneResolutionUnit
Indicates the unit for measuring FocalPlaneXResolution and FocalPlaneYResolution. This value is the same as the ResolutionUnit.
+
### SubjectLocation {#SubjectLocation}
```
public static final TiffTagID SubjectLocation
```
-Indicates the location of the main subject in the scene. The value of this tag represents the pixel at the center of the main subject relative to the left edge, prior to rotation processing as per the Rotation tag. The first value indicates the X column number and second indicates the Y row number.
+Indicates the location of the main subject in the scene.
+The value of this tag represents the pixel at the center of the main subject relative to the left edge, prior to rotation processing as per the Rotation tag.
+The first value indicates the X column number and second indicates the Y row number.
+
### ExposureIndex {#ExposureIndex}
```
@@ -1566,6 +1981,7 @@ public static final TiffTagID ExposureIndex
Indicates the exposure index selected on the camera or input device at the time the image is captured.
+
### SensingMethod {#SensingMethod}
```
public static final TiffTagID SensingMethod
@@ -1574,6 +1990,7 @@ public static final TiffTagID SensingMethod
Indicates the image sensor type on the camera or input device.
+
### FileSource {#FileSource}
```
public static final TiffTagID FileSource
@@ -1582,6 +1999,7 @@ public static final TiffTagID FileSource
Indicates the image source. If a DSC recorded the image, this tag value always shall be set to 3.
+
### SceneType {#SceneType}
```
public static final TiffTagID SceneType
@@ -1590,6 +2008,7 @@ public static final TiffTagID SceneType
Indicates the type of scene. If a DSC recorded the image, this tag value shall always be set to 1, indicating that the image was directly photographed.
+
### CustomRendered {#CustomRendered}
```
public static final TiffTagID CustomRendered
@@ -1598,13 +2017,16 @@ public static final TiffTagID CustomRendered
This tag indicates the use of special processing on image data, such as rendering geared to output.
+
### ExposureMode {#ExposureMode}
```
public static final TiffTagID ExposureMode
```
-This tag indicates the exposure mode set when the image was shot. In auto-bracketing mode, the camera shoots a series of frames of the same scene at different exposure settings.
+This tag indicates the exposure mode set when the image was shot. In auto-bracketing mode,
+the camera shoots a series of frames of the same scene at different exposure settings.
+
### WhiteBalance {#WhiteBalance}
```
@@ -1614,13 +2036,16 @@ public static final TiffTagID WhiteBalance
This tag indicates the white balance mode set when the image was shot.
+
### DigitalZoomRatio {#DigitalZoomRatio}
```
public static final TiffTagID DigitalZoomRatio
```
-This tag indicates the digital zoom ratio when the image was shot. If the numerator of the recorded value is 0, this indicates that digital zoom was not used.
+This tag indicates the digital zoom ratio when the image was shot.
+If the numerator of the recorded value is 0, this indicates that digital zoom was not used.
+
### FocalLengthIn35mmFilm {#FocalLengthIn35mmFilm}
```
@@ -1628,7 +2053,9 @@ public static final TiffTagID FocalLengthIn35mmFilm
```
-This tag indicates the equivalent focal length assuming a 35mm film camera, in mm. A value of 0 means the focal length is unknown. Note that this tag differs from the FocalLength tag.
+This tag indicates the equivalent focal length assuming a 35mm film camera, in mm.
+A value of 0 means the focal length is unknown. Note that this tag differs from the FocalLength tag.
+
### GainControl {#GainControl}
```
@@ -1638,6 +2065,7 @@ public static final TiffTagID GainControl
This tag indicates the degree of overall image gain adjustment.
+
### Contrast {#Contrast}
```
public static final TiffTagID Contrast
@@ -1646,6 +2074,7 @@ public static final TiffTagID Contrast
This tag indicates the direction of contrast processing applied by the camera when the image was shot.
+
### Saturation {#Saturation}
```
public static final TiffTagID Saturation
@@ -1654,6 +2083,7 @@ public static final TiffTagID Saturation
This tag indicates the direction of saturation processing applied by the camera when the image was shot.
+
### Sharpness {#Sharpness}
```
public static final TiffTagID Sharpness
@@ -1662,6 +2092,7 @@ public static final TiffTagID Sharpness
This tag indicates the direction of sharpness processing applied by the camera when the image was shot.
+
### DeviceSettingDescription {#DeviceSettingDescription}
```
public static final TiffTagID DeviceSettingDescription
@@ -1670,6 +2101,7 @@ public static final TiffTagID DeviceSettingDescription
This tag indicates information on the picture-taking conditions of a particular camera model.
+
### SubjectDistanceRange {#SubjectDistanceRange}
```
public static final TiffTagID SubjectDistanceRange
@@ -1678,6 +2110,7 @@ public static final TiffTagID SubjectDistanceRange
This tag indicates the distance to the subject.
+
### CompositeImage {#CompositeImage}
```
public static final TiffTagID CompositeImage
@@ -1686,6 +2119,7 @@ public static final TiffTagID CompositeImage
This tag indicates whether the recorded image is a composite image\* or not.
+
### SourceImageNumberOfCompositeImage {#SourceImageNumberOfCompositeImage}
```
public static final TiffTagID SourceImageNumberOfCompositeImage
@@ -1694,13 +2128,16 @@ public static final TiffTagID SourceImageNumberOfCompositeImage
This tag indicates the number of the source images (tentatively recorded images) captured for a composite Image.
+
### SourceExposureTimesOfCompositeImage {#SourceExposureTimesOfCompositeImage}
```
public static final TiffTagID SourceExposureTimesOfCompositeImage
```
-For a composite image, this tag records the parameters relating exposure time of the exposures for generating the said composite image, such as respective exposure times of captured source images (tentatively recorded images).
+For a composite image, this tag records the parameters relating exposure time of the exposures for generating the said composite image,
+such as respective exposure times of captured source images (tentatively recorded images).
+
### Temperature {#Temperature}
```
@@ -1710,6 +2147,7 @@ public static final TiffTagID Temperature
Temperature as the ambient situation at the shot, for example the room temperature where the photographer was holding the camera. The unit is °C.
+
### Humidity {#Humidity}
```
public static final TiffTagID Humidity
@@ -1718,13 +2156,17 @@ public static final TiffTagID Humidity
Humidity as the ambient situation at the shot, for example the room humidity where the photographer was holding the camera. The unit is %.
+
### Pressure {#Pressure}
```
public static final TiffTagID Pressure
```
-Pressure as the ambient situation at the shot, for example the room atmospfere where the photographer was holding the camera or the water pressure under the sea. The unit is hPa.
+Pressure as the ambient situation at the shot,
+for example the room atmospfere where the photographer was holding the camera or the water pressure under the sea.
+The unit is hPa.
+
### WaterDepth {#WaterDepth}
```
@@ -1734,13 +2176,16 @@ public static final TiffTagID WaterDepth
Water depth as the ambient situation at the shot, for example the water depth of the camera at underwater photography. The unit is m.
+
### Acceleration {#Acceleration}
```
public static final TiffTagID Acceleration
```
-Acceleration (a scalar regardless of direction) as the ambient situation at the shot, for example the driving acceleration of the vehicle which the photographer rode on at the shot. The unit is mGal (10-5 m/s2).
+Acceleration (a scalar regardless of direction) as the ambient situation at the shot, for example the driving acceleration of the vehicle which the photographer rode on at the shot.
+The unit is mGal (10-5 m/s2).
+
### CameraElevationAngle {#CameraElevationAngle}
```
@@ -1750,6 +2195,7 @@ public static final TiffTagID CameraElevationAngle
Elevation/depression. angle of the orientation of the camera(imaging optical axis) as the ambient situation at the shot. The unit is degree(°).
+
### ImageUniqueID {#ImageUniqueID}
```
public static final TiffTagID ImageUniqueID
@@ -1758,13 +2204,16 @@ public static final TiffTagID ImageUniqueID
This tag indicates an identifier assigned uniquely to each image.
+
### LensSpecification {#LensSpecification}
```
public static final TiffTagID LensSpecification
```
-This tag notes minimum focal length, maximum focal length, minimum F number in the minimum focal length, and minimum F number in the maximum focal length, which are specification information for the lens that was used in photography.
+This tag notes minimum focal length, maximum focal length, minimum F number in the minimum focal length,
+and minimum F number in the maximum focal length, which are specification information for the lens that was used in photography.
+
### LensMake {#LensMake}
```
@@ -1774,6 +2223,7 @@ public static final TiffTagID LensMake
This tag records the lens manufacturer as an ASCII string.
+
### LensModel {#LensModel}
```
public static final TiffTagID LensModel
@@ -1782,6 +2232,7 @@ public static final TiffTagID LensModel
This tag records the lens\\u2019s model name and model number as an ASCII string.
+
### LensSerialNumber {#LensSerialNumber}
```
public static final TiffTagID LensSerialNumber
@@ -1790,6 +2241,7 @@ public static final TiffTagID LensSerialNumber
This tag records the serial number of the interchangeable lens that was used in photography as an ASCII string.
+
### getByRawValue(int rawValue) {#getByRawValue-int-}
```
public static TiffTagID getByRawValue(int rawValue)
@@ -1823,6 +2275,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### values() {#values--}
@@ -1843,6 +2296,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -1858,6 +2312,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -1873,6 +2328,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -1883,6 +2339,7 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
### name() {#name--}
@@ -1893,6 +2350,7 @@ public String name()
Returns the name of this enumeration value.
+
**Returns:**
java.lang.String
### equals(Object o) {#equals-java.lang.Object-}
diff --git a/english/java/com.groupdocs.metadata.core/tifftagtype/_index.md b/english/java/com.groupdocs.metadata.core/tifftagtype/_index.md
index e7898f64fe..7d10303030 100644
--- a/english/java/com.groupdocs.metadata.core/tifftagtype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tifftagtype/_index.md
@@ -16,23 +16,37 @@ public enum TiffTagType extends Enum implements IEnumValue
```
Represents the IFD data type.
+
## Fields
| Field | Description |
| --- | --- |
-| [Byte](#Byte) | An 8-bit unsigned integer. |
-| [Ascii](#Ascii) | An 8-bit byte with a 7-bit ASCII character. |
-| [Short](#Short) | A 16-bit unsigned integer. |
-| [Long](#Long) | A 32-bit unsigned integer. |
-| [Rational](#Rational) | A pair of LONGs, numerator then denominator. |
-| [SByte](#SByte) | An 8-bit signed integer. |
-| [Undefined](#Undefined) | An undefined 8-bit byte. |
-| [SShort](#SShort) | A 16-bit signed integer. |
-| [SLong](#SLong) | A 32-bit signed integer. |
-| [SRational](#SRational) | A pair of SLONGs, numerator then denominator. |
-| [Float](#Float) | A 4-byte IEEE floating point value. |
-| [Double](#Double) | An 8-byte IEEE floating point value. |
-| [SubIfd](#SubIfd) | A 4-byte long offset value |
+| [Byte](#Byte) | An 8-bit unsigned integer.
+ |
+| [Ascii](#Ascii) | An 8-bit byte with a 7-bit ASCII character.
+ |
+| [Short](#Short) | A 16-bit unsigned integer.
+ |
+| [Long](#Long) | A 32-bit unsigned integer.
+ |
+| [Rational](#Rational) | A pair of LONGs, numerator then denominator.
+ |
+| [SByte](#SByte) | An 8-bit signed integer.
+ |
+| [Undefined](#Undefined) | An undefined 8-bit byte.
+ |
+| [SShort](#SShort) | A 16-bit signed integer.
+ |
+| [SLong](#SLong) | A 32-bit signed integer.
+ |
+| [SRational](#SRational) | A pair of SLONGs, numerator then denominator.
+ |
+| [Float](#Float) | A 4-byte IEEE floating point value.
+ |
+| [Double](#Double) | An 8-byte IEEE floating point value.
+ |
+| [SubIfd](#SubIfd) | A 4-byte long offset value
+ |
| [value](#value) | |
## Methods
@@ -58,6 +72,7 @@ public static final TiffTagType Byte
An 8-bit unsigned integer.
+
### Ascii {#Ascii}
```
public static final TiffTagType Ascii
@@ -66,6 +81,7 @@ public static final TiffTagType Ascii
An 8-bit byte with a 7-bit ASCII character.
+
### Short {#Short}
```
public static final TiffTagType Short
@@ -74,6 +90,7 @@ public static final TiffTagType Short
A 16-bit unsigned integer.
+
### Long {#Long}
```
public static final TiffTagType Long
@@ -82,6 +99,7 @@ public static final TiffTagType Long
A 32-bit unsigned integer.
+
### Rational {#Rational}
```
public static final TiffTagType Rational
@@ -90,6 +108,7 @@ public static final TiffTagType Rational
A pair of LONGs, numerator then denominator.
+
### SByte {#SByte}
```
public static final TiffTagType SByte
@@ -98,6 +117,7 @@ public static final TiffTagType SByte
An 8-bit signed integer.
+
### Undefined {#Undefined}
```
public static final TiffTagType Undefined
@@ -106,6 +126,7 @@ public static final TiffTagType Undefined
An undefined 8-bit byte.
+
### SShort {#SShort}
```
public static final TiffTagType SShort
@@ -114,6 +135,7 @@ public static final TiffTagType SShort
A 16-bit signed integer.
+
### SLong {#SLong}
```
public static final TiffTagType SLong
@@ -122,6 +144,7 @@ public static final TiffTagType SLong
A 32-bit signed integer.
+
### SRational {#SRational}
```
public static final TiffTagType SRational
@@ -130,6 +153,7 @@ public static final TiffTagType SRational
A pair of SLONGs, numerator then denominator.
+
### Float {#Float}
```
public static final TiffTagType Float
@@ -138,6 +162,7 @@ public static final TiffTagType Float
A 4-byte IEEE floating point value.
+
### Double {#Double}
```
public static final TiffTagType Double
@@ -146,6 +171,7 @@ public static final TiffTagType Double
An 8-byte IEEE floating point value.
+
### SubIfd {#SubIfd}
```
public static final TiffTagType SubIfd
@@ -154,6 +180,7 @@ public static final TiffTagType SubIfd
A 4-byte long offset value
+
### value {#value}
```
public String value
@@ -241,6 +268,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -251,6 +279,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -266,6 +295,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -291,6 +321,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -301,5 +332,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/tiffundefinedtag/_index.md b/english/java/com.groupdocs.metadata.core/tiffundefinedtag/_index.md
index 9ef246c75b..05629c7d15 100644
--- a/english/java/com.groupdocs.metadata.core/tiffundefinedtag/_index.md
+++ b/english/java/com.groupdocs.metadata.core/tiffundefinedtag/_index.md
@@ -13,22 +13,31 @@ public final class TiffUndefinedTag extends TiffArrayTag
```
Represents a TIFF tag with the Undefined type.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [TiffUndefinedTag(TiffTagID tagID, byte[] value)](#TiffUndefinedTag-com.groupdocs.metadata.core.TiffTagID-byte---) | Initializes a new instance of the TiffUndefinedTag class. |
+| [TiffUndefinedTag(TiffTagID tagID, byte[] value)](#TiffUndefinedTag-com.groupdocs.metadata.core.TiffTagID-byte---) | Initializes a new instance of the
+TiffUndefinedTag
+ class.
+ |
### TiffUndefinedTag(TiffTagID tagID, byte[] value) {#TiffUndefinedTag-com.groupdocs.metadata.core.TiffTagID-byte---}
```
public TiffUndefinedTag(TiffTagID tagID, byte[] value)
```
-Initializes a new instance of the TiffUndefinedTag class.
+Initializes a new instance of the
+TiffUndefinedTag
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier. |
-| value | byte[] | The value. |
+| tagID | [TiffTagID](../../com.groupdocs.metadata.core/tifftagid) | The tag identifier.
+ |
+| value | byte[] | The value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/torrentpackage/_index.md b/english/java/com.groupdocs.metadata.core/torrentpackage/_index.md
index 0a9130086c..ce6afe399f 100644
--- a/english/java/com.groupdocs.metadata.core/torrentpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/torrentpackage/_index.md
@@ -12,30 +12,45 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class TorrentPackage extends CustomPackage
```
-Represents torrent descriptor file metadata. Please find more information at [https://en.wikipedia.org/wiki/Torrent\_file][https_en.wikipedia.org_wiki_Torrent_file] .
+Represents torrent descriptor file metadata.
+Please find more information at
+
+.
+
**Learn more**
- * [Working with TORRENT files][]
+* [Working with TORRENT files](../https://docs.groupdocs.com/display/metadatajava/Working+with+TORRENT+files)
+
+
-[https_en.wikipedia.org_wiki_Torrent_file]: https://en.wikipedia.org/wiki/Torrent_file
-[Working with TORRENT files]: https://docs.groupdocs.com/display/metadatajava/Working+with+TORRENT+files
## Methods
| Method | Description |
| --- | --- |
-| [getAnnounce()](#getAnnounce--) | Gets the URL of the tracker. |
-| [setAnnounce(String value)](#setAnnounce-java.lang.String-) | Sets the URL of the tracker. |
-| [getComment()](#getComment--) | Gets the author's comment. |
-| [setComment(String value)](#setComment-java.lang.String-) | Sets the author's comment. |
-| [getCreationDate()](#getCreationDate--) | Gets the creation date of the torrent. |
-| [setCreationDate(Date value)](#setCreationDate-java.util.Date-) | Sets the creation date of the torrent. |
-| [getCreatedBy()](#getCreatedBy--) | Gets the name and version of the program used to create the torrent. |
-| [setCreatedBy(String value)](#setCreatedBy-java.lang.String-) | Sets the name and version of the program used to create the torrent. |
-| [getSharedFiles()](#getSharedFiles--) | Gets an array containing shared file information entries. |
-| [getPieceLength()](#getPieceLength--) | Gets the number of bytes in each piece. |
-| [getPieces()](#getPieces--) | Gets a byte array consisting of the concatenation of all 20-byte SHA1 hash values, one per piece. |
+| [getAnnounce()](#getAnnounce--) | Gets the URL of the tracker.
+ |
+| [setAnnounce(String value)](#setAnnounce-java.lang.String-) | Sets the URL of the tracker.
+ |
+| [getComment()](#getComment--) | Gets the author's comment.
+ |
+| [setComment(String value)](#setComment-java.lang.String-) | Sets the author's comment.
+ |
+| [getCreationDate()](#getCreationDate--) | Gets the creation date of the torrent.
+ |
+| [setCreationDate(Date value)](#setCreationDate-java.util.Date-) | Sets the creation date of the torrent.
+ |
+| [getCreatedBy()](#getCreatedBy--) | Gets the name and version of the program used to create the torrent.
+ |
+| [setCreatedBy(String value)](#setCreatedBy-java.lang.String-) | Sets the name and version of the program used to create the torrent.
+ |
+| [getSharedFiles()](#getSharedFiles--) | Gets an array containing shared file information entries.
+ |
+| [getPieceLength()](#getPieceLength--) | Gets the number of bytes in each piece.
+ |
+| [getPieces()](#getPieces--) | Gets a byte array consisting of the concatenation of all 20-byte SHA1 hash values, one per piece.
+ |
### getAnnounce() {#getAnnounce--}
```
public final String getAnnounce()
@@ -44,8 +59,10 @@ public final String getAnnounce()
Gets the URL of the tracker.
+
**Returns:**
java.lang.String - The URL of the tracker.
+
### setAnnounce(String value) {#setAnnounce-java.lang.String-}
```
public final void setAnnounce(String value)
@@ -54,10 +71,12 @@ public final void setAnnounce(String value)
Sets the URL of the tracker.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The URL of the tracker. |
+| value | java.lang.String | The URL of the tracker.
+ |
### getComment() {#getComment--}
```
@@ -67,8 +86,10 @@ public final String getComment()
Gets the author's comment.
+
**Returns:**
java.lang.String - The author's comment.
+
### setComment(String value) {#setComment-java.lang.String-}
```
public final void setComment(String value)
@@ -77,10 +98,12 @@ public final void setComment(String value)
Sets the author's comment.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author's comment. |
+| value | java.lang.String | The author's comment.
+ |
### getCreationDate() {#getCreationDate--}
```
@@ -90,8 +113,10 @@ public final Date getCreationDate()
Gets the creation date of the torrent.
+
**Returns:**
java.util.Date - The creation date of the torrent.
+
### setCreationDate(Date value) {#setCreationDate-java.util.Date-}
```
public final void setCreationDate(Date value)
@@ -100,10 +125,12 @@ public final void setCreationDate(Date value)
Sets the creation date of the torrent.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The creation date of the torrent. |
+| value | java.util.Date | The creation date of the torrent.
+ |
### getCreatedBy() {#getCreatedBy--}
```
@@ -113,8 +140,10 @@ public final String getCreatedBy()
Gets the name and version of the program used to create the torrent.
+
**Returns:**
java.lang.String - The name and version of the program used to create the torrent.
+
### setCreatedBy(String value) {#setCreatedBy-java.lang.String-}
```
public final void setCreatedBy(String value)
@@ -123,10 +152,12 @@ public final void setCreatedBy(String value)
Sets the name and version of the program used to create the torrent.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name and version of the program used to create the torrent. |
+| value | java.lang.String | The name and version of the program used to create the torrent.
+ |
### getSharedFiles() {#getSharedFiles--}
```
@@ -136,8 +167,10 @@ public final TorrentSharedFilePackage[] getSharedFiles()
Gets an array containing shared file information entries.
+
**Returns:**
com.groupdocs.metadata.core.TorrentSharedFilePackage[] - An array containing shared file information entries.
+
### getPieceLength() {#getPieceLength--}
```
public final long getPieceLength()
@@ -146,8 +179,10 @@ public final long getPieceLength()
Gets the number of bytes in each piece. For more information please see .
+
**Returns:**
long - The number of bytes in each piece.
+
### getPieces() {#getPieces--}
```
public final byte[] getPieces()
@@ -156,5 +191,7 @@ public final byte[] getPieces()
Gets a byte array consisting of the concatenation of all 20-byte SHA1 hash values, one per piece.
+
**Returns:**
byte[] - A byte array consisting of the concatenation of all 20-byte SHA1 hash values, one per piece.
+
diff --git a/english/java/com.groupdocs.metadata.core/torrentrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/torrentrootpackage/_index.md
index 13d1aa4386..7af4ef70f4 100644
--- a/english/java/com.groupdocs.metadata.core/torrentrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/torrentrootpackage/_index.md
@@ -14,15 +14,18 @@ public class TorrentRootPackage extends RootMetadataPackage
Represents the root package intended to work with metadata of a TORRENT file.
+
**Learn more**
- * [Working with TORRENT files][]
+* [Working with TORRENT files](../https://docs.groupdocs.com/display/metadatajava/Working+with+TORRENT+files)
-This code sample shows how to read metadata of a TORRENT file.
+
+This code sample shows how to read metadata of a TORRENT file.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputTorrent)) {
> TorrentRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getTorrentPackage().getAnnounce());
@@ -37,15 +40,15 @@ This code sample shows how to read metadata of a TORRENT file.
> }
>
> ```
-> ```
+> ````
-[Working with TORRENT files]: https://docs.groupdocs.com/display/metadatajava/Working+with+TORRENT+files
## Methods
| Method | Description |
| --- | --- |
-| [getTorrentPackage()](#getTorrentPackage--) | Gets the TORRENT file metadata package. |
+| [getTorrentPackage()](#getTorrentPackage--) | Gets the TORRENT file metadata package.
+ |
### getTorrentPackage() {#getTorrentPackage--}
```
public final TorrentPackage getTorrentPackage()
@@ -54,5 +57,7 @@ public final TorrentPackage getTorrentPackage()
Gets the TORRENT file metadata package.
+
**Returns:**
[TorrentPackage](../../com.groupdocs.metadata.core/torrentpackage) - The TORRENT file metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/torrentsharedfilepackage/_index.md b/english/java/com.groupdocs.metadata.core/torrentsharedfilepackage/_index.md
index 6934d54449..7e456393c3 100644
--- a/english/java/com.groupdocs.metadata.core/torrentsharedfilepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/torrentsharedfilepackage/_index.md
@@ -12,20 +12,25 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class TorrentSharedFilePackage extends CustomPackage
```
-Represents shared file information. Contains detailed info about each file in a torrent distribution.
+Represents shared file information.
+Contains detailed info about each file in a torrent distribution.
+
**Learn more**
- * [Working with TORRENT files][]
+* [Working with TORRENT files](../https://docs.groupdocs.com/display/metadatajava/Working+with+TORRENT+files)
+
+
-[Working with TORRENT files]: https://docs.groupdocs.com/display/metadatajava/Working+with+TORRENT+files
## Methods
| Method | Description |
| --- | --- |
-| [getName()](#getName--) | Gets the full name of the file (relative path to the file from the root torrent folder). |
-| [getLength()](#getLength--) | Gets the length of the file in bytes. |
+| [getName()](#getName--) | Gets the full name of the file (relative path to the file from the root torrent folder).
+ |
+| [getLength()](#getLength--) | Gets the length of the file in bytes.
+ |
### getName() {#getName--}
```
public final String getName()
@@ -34,8 +39,10 @@ public final String getName()
Gets the full name of the file (relative path to the file from the root torrent folder).
+
**Returns:**
java.lang.String - The full name of the file (relative path to the file from the root torrent folder).
+
### getLength() {#getLength--}
```
public final long getLength()
@@ -44,5 +51,7 @@ public final long getLength()
Gets the length of the file in bytes.
+
**Returns:**
long - The length of the file in bytes.
+
diff --git a/english/java/com.groupdocs.metadata.core/valueacceptor/_index.md b/english/java/com.groupdocs.metadata.core/valueacceptor/_index.md
index c61f86031e..e21cff0e10 100644
--- a/english/java/com.groupdocs.metadata.core/valueacceptor/_index.md
+++ b/english/java/com.groupdocs.metadata.core/valueacceptor/_index.md
@@ -12,7 +12,10 @@ java.lang.Object
public abstract class ValueAcceptor
```
-Provides a base abstract class that allows extracting all supported types of values from a PropertyValue instance.
+Provides a base abstract class that allows extracting all supported types of values from a
+PropertyValue
+ instance.
+
## Constructors
| Constructor | Description |
diff --git a/english/java/com.groupdocs.metadata.core/valueinterpreter/_index.md b/english/java/com.groupdocs.metadata.core/valueinterpreter/_index.md
index 89e6a44008..1fa73a9133 100644
--- a/english/java/com.groupdocs.metadata.core/valueinterpreter/_index.md
+++ b/english/java/com.groupdocs.metadata.core/valueinterpreter/_index.md
@@ -13,6 +13,7 @@ public abstract class ValueInterpreter
```
Defines operations required to interpret metadata property values.
+
## Constructors
| Constructor | Description |
@@ -22,9 +23,12 @@ Defines operations required to interpret metadata property values.
| Method | Description |
| --- | --- |
-| [getInterpretedValueType()](#getInterpretedValueType--) | Gets the type of the interpreted value. |
-| [toInterpretedValue(PropertyValue originalValue)](#toInterpretedValue-com.groupdocs.metadata.core.PropertyValue-) | Interprets the provided property value. |
-| [toSourceValue(PropertyValue interpretedValue)](#toSourceValue-com.groupdocs.metadata.core.PropertyValue-) | Converts an interpreted value back to its original form. |
+| [getInterpretedValueType()](#getInterpretedValueType--) | Gets the type of the interpreted value.
+ |
+| [toInterpretedValue(PropertyValue originalValue)](#toInterpretedValue-com.groupdocs.metadata.core.PropertyValue-) | Interprets the provided property value.
+ |
+| [toSourceValue(PropertyValue interpretedValue)](#toSourceValue-com.groupdocs.metadata.core.PropertyValue-) | Converts an interpreted value back to its original form.
+ |
### ValueInterpreter() {#ValueInterpreter--}
```
public ValueInterpreter()
@@ -39,8 +43,10 @@ public abstract MetadataPropertyType getInterpretedValueType()
Gets the type of the interpreted value.
+
**Returns:**
[MetadataPropertyType](../../com.groupdocs.metadata.core/metadatapropertytype) - The type of the interpreted value.
+
### toInterpretedValue(PropertyValue originalValue) {#toInterpretedValue-com.groupdocs.metadata.core.PropertyValue-}
```
public final PropertyValue toInterpretedValue(PropertyValue originalValue)
@@ -49,13 +55,16 @@ public final PropertyValue toInterpretedValue(PropertyValue originalValue)
Interprets the provided property value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| originalValue | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | The value to interpret. |
+| originalValue | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | The value to interpret.
+ |
**Returns:**
[PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) - The interpreted value.
+
### toSourceValue(PropertyValue interpretedValue) {#toSourceValue-com.groupdocs.metadata.core.PropertyValue-}
```
public final PropertyValue toSourceValue(PropertyValue interpretedValue)
@@ -64,10 +73,13 @@ public final PropertyValue toSourceValue(PropertyValue interpretedValue)
Converts an interpreted value back to its original form.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| interpretedValue | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | The interpreted value to convert. |
+| interpretedValue | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | The interpreted value to convert.
+ |
**Returns:**
[PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) - The original value.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardagentrecord/_index.md b/english/java/com.groupdocs.metadata.core/vcardagentrecord/_index.md
index d942c0226b..357b0488d4 100644
--- a/english/java/com.groupdocs.metadata.core/vcardagentrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardagentrecord/_index.md
@@ -17,18 +17,22 @@ public class VCardAgentRecord extends VCardRecord implements IVCardRecord
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getContentType()](#getContentType--) | Gets the content type of record. |
-| [getValue()](#getValue--) | Gets the record value. |
+| [getContentType()](#getContentType--) | Gets the content type of record.
+ |
+| [getValue()](#getValue--) | Gets the record value.
+ |
### getContentType() {#getContentType--}
```
public VCardContentType getContentType()
@@ -37,8 +41,10 @@ public VCardContentType getContentType()
Gets the content type of record.
+
**Returns:**
[VCardContentType](../../com.groupdocs.metadata.core/vcardcontenttype) - The content type of record.
+
### getValue() {#getValue--}
```
public final VCardCard getValue()
@@ -47,5 +53,7 @@ public final VCardCard getValue()
Gets the record value.
+
**Returns:**
[VCardCard](../../com.groupdocs.metadata.core/vcardcard) - The record value.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardbasepackage/_index.md b/english/java/com.groupdocs.metadata.core/vcardbasepackage/_index.md
index 32c6f9e414..d5c4a0b1e8 100644
--- a/english/java/com.groupdocs.metadata.core/vcardbasepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardbasepackage/_index.md
@@ -14,9 +14,11 @@ public abstract class VCardBasePackage extends CustomPackage
Represents the base VCard metadata class.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
diff --git a/english/java/com.groupdocs.metadata.core/vcardbinaryrecord/_index.md b/english/java/com.groupdocs.metadata.core/vcardbinaryrecord/_index.md
index 2c2f6512e8..83c1abc1ac 100644
--- a/english/java/com.groupdocs.metadata.core/vcardbinaryrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardbinaryrecord/_index.md
@@ -17,18 +17,22 @@ public class VCardBinaryRecord extends VCardRecord implements IVCardRecord
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getContentType()](#getContentType--) | Gets the content type of record. |
-| [getValue()](#getValue--) | Gets the record value. |
+| [getContentType()](#getContentType--) | Gets the content type of record.
+ |
+| [getValue()](#getValue--) | Gets the record value.
+ |
### getContentType() {#getContentType--}
```
public VCardContentType getContentType()
@@ -37,8 +41,10 @@ public VCardContentType getContentType()
Gets the content type of record.
+
**Returns:**
[VCardContentType](../../com.groupdocs.metadata.core/vcardcontenttype) - The content type of record.
+
### getValue() {#getValue--}
```
public final byte[] getValue()
@@ -47,5 +53,7 @@ public final byte[] getValue()
Gets the record value.
+
**Returns:**
byte[] - The record value.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardcalendarrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardcalendarrecordset/_index.md
index 9cdbe27713..f080492c70 100644
--- a/english/java/com.groupdocs.metadata.core/vcardcalendarrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardcalendarrecordset/_index.md
@@ -14,22 +14,30 @@ public class VCardCalendarRecordset extends VCardRecordset
Represents a set of Calendar vCard records.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getBusyTimeRecords()](#getBusyTimeRecords--) | Gets the URIs for the busy time associated with the object. |
-| [getBusyTimeEntries()](#getBusyTimeEntries--) | Gets the URIs for the busy time associated with the object. |
-| [getCalendarAddressRecords()](#getCalendarAddressRecords--) | Gets the calendar user addresses to which a scheduling request should be sent for the object represented by the vCard. |
-| [getCalendarAddresses()](#getCalendarAddresses--) | Gets the calendar user addresses to which a scheduling request should be sent for the object represented by the vCard. |
-| [getCalendarUriRecords()](#getCalendarUriRecords--) | Gets the URIs for the calendar associated with the object represented by the vCard. |
-| [getUriCalendarEntries()](#getUriCalendarEntries--) | Gets the URIs for the calendar associated with the object represented by the vCard. |
+| [getBusyTimeRecords()](#getBusyTimeRecords--) | Gets the URIs for the busy time associated with the object.
+ |
+| [getBusyTimeEntries()](#getBusyTimeEntries--) | Gets the URIs for the busy time associated with the object.
+ |
+| [getCalendarAddressRecords()](#getCalendarAddressRecords--) | Gets the calendar user addresses to which a scheduling request should be sent for the object represented by the vCard.
+ |
+| [getCalendarAddresses()](#getCalendarAddresses--) | Gets the calendar user addresses to which a scheduling request should be sent for the object represented by the vCard.
+ |
+| [getCalendarUriRecords()](#getCalendarUriRecords--) | Gets the URIs for the calendar associated with the object represented by the vCard.
+ |
+| [getUriCalendarEntries()](#getUriCalendarEntries--) | Gets the URIs for the calendar associated with the object represented by the vCard.
+ |
### getBusyTimeRecords() {#getBusyTimeRecords--}
```
public final VCardTextRecord[] getBusyTimeRecords()
@@ -38,8 +46,10 @@ public final VCardTextRecord[] getBusyTimeRecords()
Gets the URIs for the busy time associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The URIs for the busy time associated with the object.
+
### getBusyTimeEntries() {#getBusyTimeEntries--}
```
public final String[] getBusyTimeEntries()
@@ -48,12 +58,19 @@ public final String[] getBusyTimeEntries()
Gets the URIs for the busy time associated with the object.
+
**Returns:**
java.lang.String[] - The URIs for the busy time associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of BusyTimeRecords .
+
+
+
+
### getCalendarAddressRecords() {#getCalendarAddressRecords--}
```
public final VCardTextRecord[] getCalendarAddressRecords()
@@ -62,8 +79,10 @@ public final VCardTextRecord[] getCalendarAddressRecords()
Gets the calendar user addresses to which a scheduling request should be sent for the object represented by the vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The calendar user addresses to which a scheduling request should be sent for the object represented by the vCard.
+
### getCalendarAddresses() {#getCalendarAddresses--}
```
public final String[] getCalendarAddresses()
@@ -72,12 +91,19 @@ public final String[] getCalendarAddresses()
Gets the calendar user addresses to which a scheduling request should be sent for the object represented by the vCard.
+
**Returns:**
java.lang.String[] - The calendar user addresses to which a scheduling request should be sent for the object represented by the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of CalendarAddressRecords .
+
+
+
+
### getCalendarUriRecords() {#getCalendarUriRecords--}
```
public final VCardTextRecord[] getCalendarUriRecords()
@@ -86,8 +112,10 @@ public final VCardTextRecord[] getCalendarUriRecords()
Gets the URIs for the calendar associated with the object represented by the vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The URIs for the calendar associated with the object represented by the vCard.
+
### getUriCalendarEntries() {#getUriCalendarEntries--}
```
public final String[] getUriCalendarEntries()
@@ -96,9 +124,16 @@ public final String[] getUriCalendarEntries()
Gets the URIs for the calendar associated with the object represented by the vCard.
+
**Returns:**
java.lang.String[] - The URIs for the calendar associated with the object represented by the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of CalendarUriRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardcard/_index.md b/english/java/com.groupdocs.metadata.core/vcardcard/_index.md
index b8c14a955c..2fef44fe8c 100644
--- a/english/java/com.groupdocs.metadata.core/vcardcard/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardcard/_index.md
@@ -14,15 +14,18 @@ public class VCardCard extends VCardRecordset
Represents a single card extracted from a VCard file.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
-This example shows how to use vCard property filters.
+
+This example shows how to use vCard property filters.
+>
+> ````
> ```
-> ```
->
+>
> public static void run() {
> try (Metadata metadata = new Metadata(Constants.InputVcf)) {
> VCardRootPackage root = metadata.getRootPackageGeneric();
@@ -43,29 +46,43 @@ This example shows how to use vCard property filters.
> }
>
> ```
-> ```
+> ````
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getGeneralRecordset()](#getGeneralRecordset--) | Gets the general records. |
-| [getIdentificationRecordset()](#getIdentificationRecordset--) | Gets the identification records. |
-| [getDeliveryAddressingRecordset()](#getDeliveryAddressingRecordset--) | Gets the delivery addressing records. |
-| [getCommunicationRecordset()](#getCommunicationRecordset--) | Gets the communication records. |
-| [getGeographicalRecordset()](#getGeographicalRecordset--) | Gets the geographical records. |
-| [getOrganizationalRecordset()](#getOrganizationalRecordset--) | Gets the organizational records. |
-| [getExplanatoryRecordset()](#getExplanatoryRecordset--) | Gets the explanatory records. |
-| [getSecurityRecordset()](#getSecurityRecordset--) | Gets the security records. |
-| [getCalendarRecordset()](#getCalendarRecordset--) | Gets the calendar records. |
-| [getExtensionRecords()](#getExtensionRecords--) | Gets the private extension records. |
-| [getAvailableGroups()](#getAvailableGroups--) | Gets the available group names. |
-| [filterByGroup(String groupName)](#filterByGroup-java.lang.String-) | Filters all vCard records by the group name passed as a parameter. |
-| [filterHomeTags()](#filterHomeTags--) | Filters all vCard records marked with the HOME tag. |
-| [filterWorkTags()](#filterWorkTags--) | Filters all vCard records marked with the WORK tag. |
-| [filterPreferred()](#filterPreferred--) | Filters the preferred records. |
+| [getGeneralRecordset()](#getGeneralRecordset--) | Gets the general records.
+ |
+| [getIdentificationRecordset()](#getIdentificationRecordset--) | Gets the identification records.
+ |
+| [getDeliveryAddressingRecordset()](#getDeliveryAddressingRecordset--) | Gets the delivery addressing records.
+ |
+| [getCommunicationRecordset()](#getCommunicationRecordset--) | Gets the communication records.
+ |
+| [getGeographicalRecordset()](#getGeographicalRecordset--) | Gets the geographical records.
+ |
+| [getOrganizationalRecordset()](#getOrganizationalRecordset--) | Gets the organizational records.
+ |
+| [getExplanatoryRecordset()](#getExplanatoryRecordset--) | Gets the explanatory records.
+ |
+| [getSecurityRecordset()](#getSecurityRecordset--) | Gets the security records.
+ |
+| [getCalendarRecordset()](#getCalendarRecordset--) | Gets the calendar records.
+ |
+| [getExtensionRecords()](#getExtensionRecords--) | Gets the private extension records.
+ |
+| [getAvailableGroups()](#getAvailableGroups--) | Gets the available group names.
+ |
+| [filterByGroup(String groupName)](#filterByGroup-java.lang.String-) | Filters all vCard records by the group name passed as a parameter.
+ |
+| [filterHomeTags()](#filterHomeTags--) | Filters all vCard records marked with the HOME tag.
+ |
+| [filterWorkTags()](#filterWorkTags--) | Filters all vCard records marked with the WORK tag.
+ |
+| [filterPreferred()](#filterPreferred--) | Filters the preferred records.
+ |
### getGeneralRecordset() {#getGeneralRecordset--}
```
public final VCardGeneralRecordset getGeneralRecordset()
@@ -74,8 +91,10 @@ public final VCardGeneralRecordset getGeneralRecordset()
Gets the general records.
+
**Returns:**
[VCardGeneralRecordset](../../com.groupdocs.metadata.core/vcardgeneralrecordset) - The general records.
+
### getIdentificationRecordset() {#getIdentificationRecordset--}
```
public final VCardIdentificationRecordset getIdentificationRecordset()
@@ -84,8 +103,10 @@ public final VCardIdentificationRecordset getIdentificationRecordset()
Gets the identification records.
+
**Returns:**
[VCardIdentificationRecordset](../../com.groupdocs.metadata.core/vcardidentificationrecordset) - The identification records.
+
### getDeliveryAddressingRecordset() {#getDeliveryAddressingRecordset--}
```
public final VCardDeliveryAddressingRecordset getDeliveryAddressingRecordset()
@@ -94,8 +115,10 @@ public final VCardDeliveryAddressingRecordset getDeliveryAddressingRecordset()
Gets the delivery addressing records.
+
**Returns:**
[VCardDeliveryAddressingRecordset](../../com.groupdocs.metadata.core/vcarddeliveryaddressingrecordset) - The delivery addressing records.
+
### getCommunicationRecordset() {#getCommunicationRecordset--}
```
public final VCardCommunicationRecordset getCommunicationRecordset()
@@ -104,8 +127,10 @@ public final VCardCommunicationRecordset getCommunicationRecordset()
Gets the communication records.
+
**Returns:**
[VCardCommunicationRecordset](../../com.groupdocs.metadata.core/vcardcommunicationrecordset) - The communication records.
+
### getGeographicalRecordset() {#getGeographicalRecordset--}
```
public final VCardGeographicalRecordset getGeographicalRecordset()
@@ -114,8 +139,10 @@ public final VCardGeographicalRecordset getGeographicalRecordset()
Gets the geographical records.
+
**Returns:**
[VCardGeographicalRecordset](../../com.groupdocs.metadata.core/vcardgeographicalrecordset) - The geographical records.
+
### getOrganizationalRecordset() {#getOrganizationalRecordset--}
```
public final VCardOrganizationalRecordset getOrganizationalRecordset()
@@ -124,8 +151,10 @@ public final VCardOrganizationalRecordset getOrganizationalRecordset()
Gets the organizational records.
+
**Returns:**
[VCardOrganizationalRecordset](../../com.groupdocs.metadata.core/vcardorganizationalrecordset) - The organizational records.
+
### getExplanatoryRecordset() {#getExplanatoryRecordset--}
```
public final VCardExplanatoryRecordset getExplanatoryRecordset()
@@ -134,8 +163,10 @@ public final VCardExplanatoryRecordset getExplanatoryRecordset()
Gets the explanatory records.
+
**Returns:**
[VCardExplanatoryRecordset](../../com.groupdocs.metadata.core/vcardexplanatoryrecordset) - The explanatory records.
+
### getSecurityRecordset() {#getSecurityRecordset--}
```
public final VCardSecurityRecordset getSecurityRecordset()
@@ -144,8 +175,10 @@ public final VCardSecurityRecordset getSecurityRecordset()
Gets the security records.
+
**Returns:**
[VCardSecurityRecordset](../../com.groupdocs.metadata.core/vcardsecurityrecordset) - The security records.
+
### getCalendarRecordset() {#getCalendarRecordset--}
```
public final VCardCalendarRecordset getCalendarRecordset()
@@ -154,8 +187,10 @@ public final VCardCalendarRecordset getCalendarRecordset()
Gets the calendar records.
+
**Returns:**
[VCardCalendarRecordset](../../com.groupdocs.metadata.core/vcardcalendarrecordset) - The calendar records.
+
### getExtensionRecords() {#getExtensionRecords--}
```
public final VCardTextRecord[] getExtensionRecords()
@@ -164,8 +199,10 @@ public final VCardTextRecord[] getExtensionRecords()
Gets the private extension records.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The private extension records.
+
### getAvailableGroups() {#getAvailableGroups--}
```
public final String[] getAvailableGroups()
@@ -174,23 +211,29 @@ public final String[] getAvailableGroups()
Gets the available group names.
+
**Returns:**
java.lang.String[] - The available group names.
+
### filterByGroup(String groupName) {#filterByGroup-java.lang.String-}
```
public final VCardCard filterByGroup(String groupName)
```
-Filters all vCard records by the group name passed as a parameter. For more information please see the method.
+Filters all vCard records by the group name passed as a parameter.
+For more information please see the method.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| groupName | java.lang.String | The name of the group. |
+| groupName | java.lang.String | The name of the group.
+ |
**Returns:**
[VCardCard](../../com.groupdocs.metadata.core/vcardcard) - The filtered vCard instance.
+
### filterHomeTags() {#filterHomeTags--}
```
public final VCardCard filterHomeTags()
@@ -199,8 +242,10 @@ public final VCardCard filterHomeTags()
Filters all vCard records marked with the HOME tag.
+
**Returns:**
[VCardCard](../../com.groupdocs.metadata.core/vcardcard) - The filtered vCard instance.
+
### filterWorkTags() {#filterWorkTags--}
```
public final VCardCard filterWorkTags()
@@ -209,8 +254,10 @@ public final VCardCard filterWorkTags()
Filters all vCard records marked with the WORK tag.
+
**Returns:**
[VCardCard](../../com.groupdocs.metadata.core/vcardcard) - Filtered vCard instance.
+
### filterPreferred() {#filterPreferred--}
```
public final VCardCard filterPreferred()
@@ -219,5 +266,7 @@ public final VCardCard filterPreferred()
Filters the preferred records.
+
**Returns:**
[VCardCard](../../com.groupdocs.metadata.core/vcardcard) - The filtered vCard instance.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardcommunicationrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardcommunicationrecordset/_index.md
index df31461454..d25366e900 100644
--- a/english/java/com.groupdocs.metadata.core/vcardcommunicationrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardcommunicationrecordset/_index.md
@@ -12,27 +12,39 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardCommunicationRecordset extends VCardRecordset
```
-Represents a set of Communication vCard records. These properties describe information about how to communicate with the object the vCard represents.
+Represents a set of Communication vCard records.
+These properties describe information about how to communicate with the object the vCard represents.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getTelephoneRecords()](#getTelephoneRecords--) | Gets the telephone numbers for telephony communication with the object. |
-| [getTelephones()](#getTelephones--) | Gets the telephone numbers for telephony communication with the object. |
-| [getEmailRecords()](#getEmailRecords--) | Gets the electronic mail addresses for communication with the object. |
-| [getEmails()](#getEmails--) | Gets the electronic mail addresses for communication with the object. |
-| [getMailer()](#getMailer--) | Gets the type of the electronic mail software that is used by the individual associated with the vCard. |
-| [getImppRecords()](#getImppRecords--) | Gets the URIs for instant messaging and presence protocol communications with the object. |
-| [getImppEntries()](#getImppEntries--) | Gets the URIs for instant messaging and presence protocol communications with the object. |
-| [getLanguageRecords()](#getLanguageRecords--) | Gets the languages that may be used for contacting the object. |
-| [getLanguages()](#getLanguages--) | Gets the languages that may be used for contacting the object. |
+| [getTelephoneRecords()](#getTelephoneRecords--) | Gets the telephone numbers for telephony communication with the object.
+ |
+| [getTelephones()](#getTelephones--) | Gets the telephone numbers for telephony communication with the object.
+ |
+| [getEmailRecords()](#getEmailRecords--) | Gets the electronic mail addresses for communication with the object.
+ |
+| [getEmails()](#getEmails--) | Gets the electronic mail addresses for communication with the object.
+ |
+| [getMailer()](#getMailer--) | Gets the type of the electronic mail software that is used by the individual associated with the vCard.
+ |
+| [getImppRecords()](#getImppRecords--) | Gets the URIs for instant messaging and presence protocol communications with the object.
+ |
+| [getImppEntries()](#getImppEntries--) | Gets the URIs for instant messaging and presence protocol communications with the object.
+ |
+| [getLanguageRecords()](#getLanguageRecords--) | Gets the languages that may be used for contacting the object.
+ |
+| [getLanguages()](#getLanguages--) | Gets the languages that may be used for contacting the object.
+ |
### getTelephoneRecords() {#getTelephoneRecords--}
```
public final VCardTextRecord[] getTelephoneRecords()
@@ -41,8 +53,10 @@ public final VCardTextRecord[] getTelephoneRecords()
Gets the telephone numbers for telephony communication with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The telephone numbers for telephony communication with the object.
+
### getTelephones() {#getTelephones--}
```
public final String[] getTelephones()
@@ -51,12 +65,19 @@ public final String[] getTelephones()
Gets the telephone numbers for telephony communication with the object.
+
**Returns:**
java.lang.String[] - The telephone numbers for telephony communication with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of TelephoneRecords .
+
+
+
+
### getEmailRecords() {#getEmailRecords--}
```
public final VCardTextRecord[] getEmailRecords()
@@ -65,8 +86,10 @@ public final VCardTextRecord[] getEmailRecords()
Gets the electronic mail addresses for communication with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The electronic mail addresses array for communication with the object.
+
### getEmails() {#getEmails--}
```
public final String[] getEmails()
@@ -75,12 +98,19 @@ public final String[] getEmails()
Gets the electronic mail addresses for communication with the object.
+
**Returns:**
java.lang.String[] - The electronic mail addresses array for communication with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of EmailRecords .
+
+
+
+
### getMailer() {#getMailer--}
```
public final String getMailer()
@@ -89,8 +119,10 @@ public final String getMailer()
Gets the type of the electronic mail software that is used by the individual associated with the vCard.
+
**Returns:**
java.lang.String - The type of the electronic mail software that is used by the individual associated with the vCard
+
### getImppRecords() {#getImppRecords--}
```
public final VCardTextRecord[] getImppRecords()
@@ -99,8 +131,10 @@ public final VCardTextRecord[] getImppRecords()
Gets the URIs for instant messaging and presence protocol communications with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The URIs for instant messaging and presence protocol communications with the object.
+
### getImppEntries() {#getImppEntries--}
```
public final String[] getImppEntries()
@@ -109,12 +143,19 @@ public final String[] getImppEntries()
Gets the URIs for instant messaging and presence protocol communications with the object.
+
**Returns:**
java.lang.String[] - The URIs for instant messaging and presence protocol communications with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of ImppRecords .
+
+
+
+
### getLanguageRecords() {#getLanguageRecords--}
```
public final VCardTextRecord[] getLanguageRecords()
@@ -123,8 +164,10 @@ public final VCardTextRecord[] getLanguageRecords()
Gets the languages that may be used for contacting the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The languages that may be used for contacting the object.
+
### getLanguages() {#getLanguages--}
```
public final String[] getLanguages()
@@ -133,9 +176,16 @@ public final String[] getLanguages()
Gets the languages that may be used for contacting the object.
+
**Returns:**
java.lang.String[] - The languages that may be used for contacting the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of LanguageRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardcontenttype/_index.md b/english/java/com.groupdocs.metadata.core/vcardcontenttype/_index.md
index 499dec93e1..137d24a6ec 100644
--- a/english/java/com.groupdocs.metadata.core/vcardcontenttype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardcontenttype/_index.md
@@ -16,15 +16,21 @@ public enum VCardContentType extends Enum implements IEnumValu
```
Defines vCard record content types.
+
## Fields
| Field | Description |
| --- | --- |
-| [Custom](#Custom) | The custom content type. |
-| [Text](#Text) | The text content type. |
-| [Binary](#Binary) | The binary content type. |
-| [DateTime](#DateTime) | The date time content type. |
-| [Agent](#Agent) | The agent content type. |
+| [Custom](#Custom) | The custom content type.
+ |
+| [Text](#Text) | The text content type.
+ |
+| [Binary](#Binary) | The binary content type.
+ |
+| [DateTime](#DateTime) | The date time content type.
+ |
+| [Agent](#Agent) | The agent content type.
+ |
## Methods
| Method | Description |
@@ -46,6 +52,7 @@ public static final VCardContentType Custom
The custom content type.
+
### Text {#Text}
```
public static final VCardContentType Text
@@ -54,6 +61,7 @@ public static final VCardContentType Text
The text content type.
+
### Binary {#Binary}
```
public static final VCardContentType Binary
@@ -62,6 +70,7 @@ public static final VCardContentType Binary
The binary content type.
+
### DateTime {#DateTime}
```
public static final VCardContentType DateTime
@@ -70,6 +79,7 @@ public static final VCardContentType DateTime
The date time content type.
+
### Agent {#Agent}
```
public static final VCardContentType Agent
@@ -78,6 +88,7 @@ public static final VCardContentType Agent
The agent content type.
+
### values() {#values--}
```
public static VCardContentType[] values()
@@ -136,6 +147,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -146,6 +158,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +174,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -176,6 +190,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -186,5 +201,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/vcardcustomrecord/_index.md b/english/java/com.groupdocs.metadata.core/vcardcustomrecord/_index.md
index eb07706d32..f1cc7d36bf 100644
--- a/english/java/com.groupdocs.metadata.core/vcardcustomrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardcustomrecord/_index.md
@@ -17,18 +17,22 @@ public class VCardCustomRecord extends VCardRecord implements IVCardRecord
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getContentType()](#getContentType--) | Gets the content type of record. |
-| [getValue()](#getValue--) | Gets the record value. |
+| [getContentType()](#getContentType--) | Gets the content type of record.
+ |
+| [getValue()](#getValue--) | Gets the record value.
+ |
### getContentType() {#getContentType--}
```
public VCardContentType getContentType()
@@ -37,8 +41,10 @@ public VCardContentType getContentType()
Gets the content type of record.
+
**Returns:**
[VCardContentType](../../com.groupdocs.metadata.core/vcardcontenttype) - The content type of record.
+
### getValue() {#getValue--}
```
public final String getValue()
@@ -47,5 +53,7 @@ public final String getValue()
Gets the record value.
+
**Returns:**
java.lang.String - The record value.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcarddatetimerecord/_index.md b/english/java/com.groupdocs.metadata.core/vcarddatetimerecord/_index.md
index a198cd8224..98c9b70cb4 100644
--- a/english/java/com.groupdocs.metadata.core/vcarddatetimerecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcarddatetimerecord/_index.md
@@ -17,18 +17,22 @@ public class VCardDateTimeRecord extends VCardRecord implements IVCardRecord
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getContentType()](#getContentType--) | Gets the content type of record. |
-| [getValue()](#getValue--) | Gets the record value. |
+| [getContentType()](#getContentType--) | Gets the content type of record.
+ |
+| [getValue()](#getValue--) | Gets the record value.
+ |
### getContentType() {#getContentType--}
```
public VCardContentType getContentType()
@@ -37,8 +41,10 @@ public VCardContentType getContentType()
Gets the content type of record.
+
**Returns:**
[VCardContentType](../../com.groupdocs.metadata.core/vcardcontenttype) - The content type of record.
+
### getValue() {#getValue--}
```
public final Date getValue()
@@ -47,5 +53,7 @@ public final Date getValue()
Gets the record value.
+
**Returns:**
java.util.Date - The record value.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcarddeliveryaddressingrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcarddeliveryaddressingrecordset/_index.md
index 0569da0544..f86f582fa1 100644
--- a/english/java/com.groupdocs.metadata.core/vcarddeliveryaddressingrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcarddeliveryaddressingrecordset/_index.md
@@ -12,22 +12,30 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardDeliveryAddressingRecordset extends VCardRecordset
```
-Represents a set of Delivery Addressing vCard records. These types are concerned with information related to the delivery addressing or label for the vCard object.
+Represents a set of Delivery Addressing vCard records.
+These types are concerned with information related to
+the delivery addressing or label for the vCard object.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getAddressRecords()](#getAddressRecords--) | Gets the components of the delivery address of the object. |
-| [getAddresses()](#getAddresses--) | Gets the components of the delivery address of the object. |
-| [getLabelRecords()](#getLabelRecords--) | Gets an array containing the formatted text corresponding to delivery address of the object. |
-| [getLabels()](#getLabels--) | Gets an array containing the formatted text corresponding to delivery address of the object. |
+| [getAddressRecords()](#getAddressRecords--) | Gets the components of the delivery address of the object.
+ |
+| [getAddresses()](#getAddresses--) | Gets the components of the delivery address of the object.
+ |
+| [getLabelRecords()](#getLabelRecords--) | Gets an array containing the formatted text corresponding to delivery address of the object.
+ |
+| [getLabels()](#getLabels--) | Gets an array containing the formatted text corresponding to delivery address of the object.
+ |
### getAddressRecords() {#getAddressRecords--}
```
public final VCardTextRecord[] getAddressRecords()
@@ -36,8 +44,10 @@ public final VCardTextRecord[] getAddressRecords()
Gets the components of the delivery address of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The components of the delivery address of the object.
+
### getAddresses() {#getAddresses--}
```
public final String[] getAddresses()
@@ -46,12 +56,19 @@ public final String[] getAddresses()
Gets the components of the delivery address of the object.
+
**Returns:**
java.lang.String[] - The components of the delivery address of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AddressRecords .
+
+
+
+
### getLabelRecords() {#getLabelRecords--}
```
public final VCardTextRecord[] getLabelRecords()
@@ -60,8 +77,10 @@ public final VCardTextRecord[] getLabelRecords()
Gets an array containing the formatted text corresponding to delivery address of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array containing the formatted text corresponding to delivery address of the object.
+
### getLabels() {#getLabels--}
```
public final String[] getLabels()
@@ -70,9 +89,16 @@ public final String[] getLabels()
Gets an array containing the formatted text corresponding to delivery address of the object.
+
**Returns:**
java.lang.String[] - An array containing the formatted text corresponding to delivery address of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of LabelRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardexplanatoryrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardexplanatoryrecordset/_index.md
index f5107097dc..a4c831b110 100644
--- a/english/java/com.groupdocs.metadata.core/vcardexplanatoryrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardexplanatoryrecordset/_index.md
@@ -12,38 +12,66 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardExplanatoryRecordset extends VCardRecordset
```
-Represents a set of Explanatory vCard records. These properties are concerned with additional explanations, such as that related to informational notes or revisions specific to the vCard.
+Represents a set of Explanatory vCard records.
+These properties are concerned with additional explanations,
+such as that related to informational notes or revisions specific to the vCard.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getCategoryRecords()](#getCategoryRecords--) | Gets the application category information about the vCard, also known as "tags". |
-| [getCategories()](#getCategories--) | Gets the application category information about the vCard, also known as "tags". |
-| [getNoteRecords()](#getNoteRecords--) | Gets the supplemental information or comments that are associated with the vCard. |
-| [getNotes()](#getNotes--) | Gets the supplemental information or comments that are associated with the vCard. |
-| [getProductIdentifierRecord()](#getProductIdentifierRecord--) | Gets the identifier of the product that created the vCard object. |
-| [getProductIdentifier()](#getProductIdentifier--) | Gets the identifier of the product that created the vCard object. |
-| [getRevision()](#getRevision--) | Gets the revision information about the current vCard. |
-| [getSortString()](#getSortString--) | Gets the family name or given name text to be used for national-language-specific sorting of the VCardIdentificationRecordset.FormattedNames and VCardIdentificationRecordset.Name types. |
-| [getSoundRecords()](#getSoundRecords--) | Gets the digital sound content information that annotates some aspects of the vCard. |
-| [getSoundBinaryRecords()](#getSoundBinaryRecords--) | Gets the digital sound content information that annotates some aspects of the vCard. |
-| [getBinarySounds()](#getBinarySounds--) | Gets the digital sound content information that annotates some aspects of the vCard. |
-| [getSoundUriRecords()](#getSoundUriRecords--) | Gets the digital sound content information that annotates some aspects of the vCard. |
-| [getUriSounds()](#getUriSounds--) | Gets the digital sound content information that annotates some aspects of the vCard. |
-| [getUidRecord()](#getUidRecord--) | Gets the value that represents a globally unique identifier corresponding to the individual or resource associated with the vCard. |
-| [getUid()](#getUid--) | Gets the value that represents a globally unique identifier corresponding to the individual or resource associated with the vCard. |
-| [getPidIdentifierRecords()](#getPidIdentifierRecords--) | Gets the global meaning of the local PID source identifier. |
-| [getPidIdentifiers()](#getPidIdentifiers--) | Gets the global meaning of the local PID source identifier. |
-| [getUrlRecords()](#getUrlRecords--) | Gets an array of URLs pointing to websites that represent the person in some way. |
-| [getUrls()](#getUrls--) | Gets an array of URLs pointing to websites that represent the person in some way. |
-| [getVersion()](#getVersion--) | Gets the version of the vCard specification. |
+| [getCategoryRecords()](#getCategoryRecords--) | Gets the application category information about the vCard, also known as "tags".
+ |
+| [getCategories()](#getCategories--) | Gets the application category information about the vCard, also known as "tags".
+ |
+| [getNoteRecords()](#getNoteRecords--) | Gets the supplemental information or comments that are associated with the vCard.
+ |
+| [getNotes()](#getNotes--) | Gets the supplemental information or comments that are associated with the vCard.
+ |
+| [getProductIdentifierRecord()](#getProductIdentifierRecord--) | Gets the identifier of the product that created the vCard object.
+ |
+| [getProductIdentifier()](#getProductIdentifier--) | Gets the identifier of the product that created the vCard object.
+ |
+| [getRevision()](#getRevision--) | Gets the revision information about the current vCard.
+ |
+| [getSortString()](#getSortString--) | Gets the family name or given name text to be used for national-language-specific sorting of the
+VCardIdentificationRecordset.FormattedNames
+ and
+VCardIdentificationRecordset.Name
+ types.
+ |
+| [getSoundRecords()](#getSoundRecords--) | Gets the digital sound content information that annotates some aspects of the vCard.
+ |
+| [getSoundBinaryRecords()](#getSoundBinaryRecords--) | Gets the digital sound content information that annotates some aspects of the vCard.
+ |
+| [getBinarySounds()](#getBinarySounds--) | Gets the digital sound content information that annotates some aspects of the vCard.
+ |
+| [getSoundUriRecords()](#getSoundUriRecords--) | Gets the digital sound content information that annotates some aspects of the vCard.
+ |
+| [getUriSounds()](#getUriSounds--) | Gets the digital sound content information that annotates some aspects of the vCard.
+ |
+| [getUidRecord()](#getUidRecord--) | Gets the value that represents a globally unique identifier corresponding to the individual or resource associated with the vCard.
+ |
+| [getUid()](#getUid--) | Gets the value that represents a globally unique identifier corresponding to the individual or resource associated with the vCard.
+ |
+| [getPidIdentifierRecords()](#getPidIdentifierRecords--) | Gets the global meaning of the local PID source identifier.
+ |
+| [getPidIdentifiers()](#getPidIdentifiers--) | Gets the global meaning of the local PID source identifier.
+ |
+| [getUrlRecords()](#getUrlRecords--) | Gets an array of URLs pointing to websites that represent the person in some way.
+ |
+| [getUrls()](#getUrls--) | Gets an array of URLs pointing to websites that represent the person in some way.
+ |
+| [getVersion()](#getVersion--) | Gets the version of the vCard specification.
+ |
### getCategoryRecords() {#getCategoryRecords--}
```
public final VCardTextRecord[] getCategoryRecords()
@@ -52,8 +80,10 @@ public final VCardTextRecord[] getCategoryRecords()
Gets the application category information about the vCard, also known as "tags".
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The application category information about the vCard, also known as "tags".
+
### getCategories() {#getCategories--}
```
public final String[] getCategories()
@@ -62,12 +92,19 @@ public final String[] getCategories()
Gets the application category information about the vCard, also known as "tags".
+
**Returns:**
java.lang.String[] - The application category information about the vCard, also known as "tags".
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of CategoryRecords .
+
+
+
+
### getNoteRecords() {#getNoteRecords--}
```
public final VCardTextRecord[] getNoteRecords()
@@ -76,8 +113,10 @@ public final VCardTextRecord[] getNoteRecords()
Gets the supplemental information or comments that are associated with the vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The supplemental information or comments that are associated with the vCard.
+
### getNotes() {#getNotes--}
```
public final String[] getNotes()
@@ -86,12 +125,19 @@ public final String[] getNotes()
Gets the supplemental information or comments that are associated with the vCard.
+
**Returns:**
java.lang.String[] - The supplemental information or comments that are associated with the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of NoteRecords .
+
+
+
+
### getProductIdentifierRecord() {#getProductIdentifierRecord--}
```
public final VCardTextRecord getProductIdentifierRecord()
@@ -100,8 +146,10 @@ public final VCardTextRecord getProductIdentifierRecord()
Gets the identifier of the product that created the vCard object.
+
**Returns:**
[VCardTextRecord](../../com.groupdocs.metadata.core/vcardtextrecord) - The identifier of the product that created the vCard object
+
### getProductIdentifier() {#getProductIdentifier--}
```
public final String getProductIdentifier()
@@ -110,12 +158,19 @@ public final String getProductIdentifier()
Gets the identifier of the product that created the vCard object.
+
**Returns:**
java.lang.String - The identifier of the product that created the vCard object
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of ProductIdentifierRecord .
+
+
+
+
### getRevision() {#getRevision--}
```
public final Date getRevision()
@@ -124,18 +179,26 @@ public final Date getRevision()
Gets the revision information about the current vCard.
+
**Returns:**
java.util.Date - The revision information about the current vCard.
+
### getSortString() {#getSortString--}
```
public final String getSortString()
```
-Gets the family name or given name text to be used for national-language-specific sorting of the VCardIdentificationRecordset.FormattedNames and VCardIdentificationRecordset.Name types.
+Gets the family name or given name text to be used for national-language-specific sorting of the
+VCardIdentificationRecordset.FormattedNames
+ and
+VCardIdentificationRecordset.Name
+ types.
+
**Returns:**
java.lang.String - The family name or given name text to be used for national-language-specific sorting of the VCardIdentificationRecordset.FormattedNames and VCardIdentificationRecordset.Name types.
+
### getSoundRecords() {#getSoundRecords--}
```
public final VCardRecord[] getSoundRecords()
@@ -144,8 +207,10 @@ public final VCardRecord[] getSoundRecords()
Gets the digital sound content information that annotates some aspects of the vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardRecord[] - The digital sound content information that annotates some aspects of the vCard.
+
### getSoundBinaryRecords() {#getSoundBinaryRecords--}
```
public final VCardBinaryRecord[] getSoundBinaryRecords()
@@ -154,12 +219,19 @@ public final VCardBinaryRecord[] getSoundBinaryRecords()
Gets the digital sound content information that annotates some aspects of the vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardBinaryRecord[] - The digital sound content information that annotates some aspects of the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of SoundRecords .
+
+
+
+
### getBinarySounds() {#getBinarySounds--}
```
public final byte[][] getBinarySounds()
@@ -168,12 +240,19 @@ public final byte[][] getBinarySounds()
Gets the digital sound content information that annotates some aspects of the vCard.
+
**Returns:**
byte[][] - The digital sound content information that annotates some aspects of the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of SoundBinaryRecords .
+
+
+
+
### getSoundUriRecords() {#getSoundUriRecords--}
```
public final VCardTextRecord[] getSoundUriRecords()
@@ -182,12 +261,19 @@ public final VCardTextRecord[] getSoundUriRecords()
Gets the digital sound content information that annotates some aspects of the vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The digital sound content information that annotates some aspects of the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of SoundRecords .
+
+
+
+
### getUriSounds() {#getUriSounds--}
```
public final String[] getUriSounds()
@@ -196,12 +282,19 @@ public final String[] getUriSounds()
Gets the digital sound content information that annotates some aspects of the vCard.
+
**Returns:**
java.lang.String[] - The digital sound content information that annotates some aspects of the vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of SoundUriRecords .
+
+
+
+
### getUidRecord() {#getUidRecord--}
```
public final VCardTextRecord getUidRecord()
@@ -210,8 +303,10 @@ public final VCardTextRecord getUidRecord()
Gets the value that represents a globally unique identifier corresponding to the individual or resource associated with the vCard.
+
**Returns:**
[VCardTextRecord](../../com.groupdocs.metadata.core/vcardtextrecord) - The value that represents a globally unique identifier corresponding.
+
### getUid() {#getUid--}
```
public final String getUid()
@@ -220,12 +315,19 @@ public final String getUid()
Gets the value that represents a globally unique identifier corresponding to the individual or resource associated with the vCard.
+
**Returns:**
java.lang.String - The value that represents a globally unique identifier corresponding.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of UidRecord .
+
+
+
+
### getPidIdentifierRecords() {#getPidIdentifierRecords--}
```
public final VCardTextRecord[] getPidIdentifierRecords()
@@ -234,8 +336,10 @@ public final VCardTextRecord[] getPidIdentifierRecords()
Gets the global meaning of the local PID source identifier.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The global meaning of the local PID source identifier.
+
### getPidIdentifiers() {#getPidIdentifiers--}
```
public final String[] getPidIdentifiers()
@@ -244,12 +348,19 @@ public final String[] getPidIdentifiers()
Gets the global meaning of the local PID source identifier.
+
**Returns:**
java.lang.String[] - The global meaning of the local PID source identifier.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PidIdentifierRecords .
+
+
+
+
### getUrlRecords() {#getUrlRecords--}
```
public final VCardTextRecord[] getUrlRecords()
@@ -258,8 +369,10 @@ public final VCardTextRecord[] getUrlRecords()
Gets an array of URLs pointing to websites that represent the person in some way.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array of URLs pointing to websites that represent the person in some way.
+
### getUrls() {#getUrls--}
```
public final String[] getUrls()
@@ -268,12 +381,19 @@ public final String[] getUrls()
Gets an array of URLs pointing to websites that represent the person in some way.
+
**Returns:**
java.lang.String[] - An array of URLs pointing to websites that represent the person in some way.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of UrlRecords .
+
+
+
+
### getVersion() {#getVersion--}
```
public final String getVersion()
@@ -282,5 +402,7 @@ public final String getVersion()
Gets the version of the vCard specification.
+
**Returns:**
java.lang.String - The version of the vCard specification.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardgeneralrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardgeneralrecordset/_index.md
index 703d66f5fa..101269d6cb 100644
--- a/english/java/com.groupdocs.metadata.core/vcardgeneralrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardgeneralrecordset/_index.md
@@ -14,22 +14,30 @@ public class VCardGeneralRecordset extends VCardRecordset
Represents a set of General vCard records.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getSourceRecords()](#getSourceRecords--) | Gets the array of sources of directory information contained in the content type. |
-| [getSources()](#getSources--) | Gets an array containing the sources of the directory information contained in the content type. |
-| [getNameOfSource()](#getNameOfSource--) | Gets the textual representation of the SOURCE property. |
-| [getKind()](#getKind--) | Gets the kind of the object. |
-| [getXmlRecords()](#getXmlRecords--) | Gets an array containing extended XML-encoded vCard data. |
-| [getXmlEntries()](#getXmlEntries--) | Gets an array containing extended XML-encoded vCard data. |
+| [getSourceRecords()](#getSourceRecords--) | Gets the array of sources of directory information contained in the content type.
+ |
+| [getSources()](#getSources--) | Gets an array containing the sources of the directory information contained in the content type.
+ |
+| [getNameOfSource()](#getNameOfSource--) | Gets the textual representation of the SOURCE property.
+ |
+| [getKind()](#getKind--) | Gets the kind of the object.
+ |
+| [getXmlRecords()](#getXmlRecords--) | Gets an array containing extended XML-encoded vCard data.
+ |
+| [getXmlEntries()](#getXmlEntries--) | Gets an array containing extended XML-encoded vCard data.
+ |
### getSourceRecords() {#getSourceRecords--}
```
public final VCardTextRecord[] getSourceRecords()
@@ -38,8 +46,10 @@ public final VCardTextRecord[] getSourceRecords()
Gets the array of sources of directory information contained in the content type.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The array of sources of directory information contained in the content type.
+
### getSources() {#getSources--}
```
public final String[] getSources()
@@ -48,12 +58,19 @@ public final String[] getSources()
Gets an array containing the sources of the directory information contained in the content type.
+
**Returns:**
java.lang.String[] - An array containing the sources of the directory information contained in the content type.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of SourceRecords .
+
+
+
+
### getNameOfSource() {#getNameOfSource--}
```
public final String getNameOfSource()
@@ -62,8 +79,10 @@ public final String getNameOfSource()
Gets the textual representation of the SOURCE property.
+
**Returns:**
java.lang.String - The textual representation of the SOURCE property.
+
### getKind() {#getKind--}
```
public final String getKind()
@@ -72,8 +91,10 @@ public final String getKind()
Gets the kind of the object.
+
**Returns:**
java.lang.String - The kind of object.
+
### getXmlRecords() {#getXmlRecords--}
```
public final VCardTextRecord[] getXmlRecords()
@@ -82,8 +103,10 @@ public final VCardTextRecord[] getXmlRecords()
Gets an array containing extended XML-encoded vCard data.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array containing extended XML-encoded vCard data.
+
### getXmlEntries() {#getXmlEntries--}
```
public final String[] getXmlEntries()
@@ -92,9 +115,16 @@ public final String[] getXmlEntries()
Gets an array containing extended XML-encoded vCard data.
+
**Returns:**
java.lang.String[] - An array of extended XML-encoded vCard data.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of XmlRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardgeographicalrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardgeographicalrecordset/_index.md
index f2bdd1bd94..638f333d4f 100644
--- a/english/java/com.groupdocs.metadata.core/vcardgeographicalrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardgeographicalrecordset/_index.md
@@ -12,22 +12,30 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardGeographicalRecordset extends VCardRecordset
```
-Represents a set of Geographical vCard records. These properties are concerned with information associated with geographical positions or regions associated with the object the vCard represents.
+Represents a set of Geographical vCard records.
+These properties are concerned with information associated with
+geographical positions or regions associated with the object the vCard represents.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getTimeZoneRecords()](#getTimeZoneRecords--) | Gets the time zones of the object. |
-| [getTimeZones()](#getTimeZones--) | Gets the time zones of the object. |
-| [getGeographicPositionRecords()](#getGeographicPositionRecords--) | Gets the information related to the global positioning of the object. |
-| [getGeographicPositions()](#getGeographicPositions--) | Gets the information related to the global positioning of the object. |
+| [getTimeZoneRecords()](#getTimeZoneRecords--) | Gets the time zones of the object.
+ |
+| [getTimeZones()](#getTimeZones--) | Gets the time zones of the object.
+ |
+| [getGeographicPositionRecords()](#getGeographicPositionRecords--) | Gets the information related to the global positioning of the object.
+ |
+| [getGeographicPositions()](#getGeographicPositions--) | Gets the information related to the global positioning of the object.
+ |
### getTimeZoneRecords() {#getTimeZoneRecords--}
```
public final VCardTextRecord[] getTimeZoneRecords()
@@ -36,8 +44,10 @@ public final VCardTextRecord[] getTimeZoneRecords()
Gets the time zones of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The time zones of the object.
+
### getTimeZones() {#getTimeZones--}
```
public final String[] getTimeZones()
@@ -46,12 +56,19 @@ public final String[] getTimeZones()
Gets the time zones of the object.
+
**Returns:**
java.lang.String[] - The time zones of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of TimeZoneRecords .
+
+
+
+
### getGeographicPositionRecords() {#getGeographicPositionRecords--}
```
public final VCardTextRecord[] getGeographicPositionRecords()
@@ -60,8 +77,10 @@ public final VCardTextRecord[] getGeographicPositionRecords()
Gets the information related to the global positioning of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The information related to the global positioning of the object.
+
### getGeographicPositions() {#getGeographicPositions--}
```
public final String[] getGeographicPositions()
@@ -70,9 +89,16 @@ public final String[] getGeographicPositions()
Gets the information related to the global positioning of the object.
+
**Returns:**
java.lang.String[] - The information related to the global positioning of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of GeographicPositionRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardidentificationrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardidentificationrecordset/_index.md
index 828ebb9abf..95704df58a 100644
--- a/english/java/com.groupdocs.metadata.core/vcardidentificationrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardidentificationrecordset/_index.md
@@ -12,41 +12,68 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardIdentificationRecordset extends VCardRecordset
```
-Represents a set of Identification vCard records. These types are used to capture information associated with the identification and naming of the entity associated with the vCard.
+Represents a set of Identification vCard records.
+These types are used to capture information associated with
+the identification and naming of the entity associated with the vCard.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getFormattedNameRecords()](#getFormattedNameRecords--) | Gets an array containing the formatted text corresponding to the name of the object. |
-| [getFormattedNames()](#getFormattedNames--) | Gets an array containing the formatted text corresponding to the name of the object. |
-| [getNameRecord()](#getNameRecord--) | Gets the components of the name of the object. |
-| [getName()](#getName--) | Gets the components of the name of the object. |
-| [getNicknameRecords()](#getNicknameRecords--) | Gets an array containing the text corresponding to the nickname of the object. |
-| [getNicknames()](#getNicknames--) | Gets an array containing the text corresponding to the nickname of the object. |
-| [getPhotoRecords()](#getPhotoRecords--) | Gets an array containing the image or photograph information that annotates some aspects of the object. |
-| [getPhotoBinaryRecords()](#getPhotoBinaryRecords--) | Gets an array containing the image or photograph information represented as binary data that annotates some aspects of the object. |
-| [getBinaryPhotos()](#getBinaryPhotos--) | Gets an array containing the image or photograph information represented as binary data that annotates some aspects of the object. |
-| [getPhotoUriRecords()](#getPhotoUriRecords--) | Gets an array containing the image or photograph information represented by URIs that annotates some aspects of the object. |
-| [getUriPhotos()](#getUriPhotos--) | Gets an array containing the image or photograph information represented by URIs that annotates some aspects of the object. |
-| [getBirthdateRecords()](#getBirthdateRecords--) | Gets an array containing the birth date of the object in different representations. |
-| [getBirthdateDateTimeRecord()](#getBirthdateDateTimeRecord--) | Gets the birth date of the object. |
-| [getDateTimeBirthdate()](#getDateTimeBirthdate--) | Gets the birth date of the object. |
-| [getBirthdateTextRecords()](#getBirthdateTextRecords--) | Gets an array containing the birth date of the object in different text representations. |
-| [getTextBirthdates()](#getTextBirthdates--) | Gets an array containing the birth date of the object in different text representations. |
-| [getAnniversaryRecord()](#getAnniversaryRecord--) | Gets the date of marriage, or equivalent, of the object. |
-| [getAnniversaryDateTimeRecord()](#getAnniversaryDateTimeRecord--) | Gets the date of marriage represented as a single date-and-or-time value. |
-| [getDateTimeAnniversary()](#getDateTimeAnniversary--) | Gets the date of marriage represented as a single date-and-or-time value. |
-| [getAnniversaryTextRecord()](#getAnniversaryTextRecord--) | Gets the date of marriage represented as a single text value. |
-| [getTextAnniversary()](#getTextAnniversary--) | Gets the date of marriage represented as a single text value. |
-| [getGenderRecord()](#getGenderRecord--) | Gets the components of the sex and gender identity of the object. |
-| [getGender()](#getGender--) | Gets the components of the sex and gender identity of the object. |
+| [getFormattedNameRecords()](#getFormattedNameRecords--) | Gets an array containing the formatted text corresponding to the name of the object.
+ |
+| [getFormattedNames()](#getFormattedNames--) | Gets an array containing the formatted text corresponding to the name of the object.
+ |
+| [getNameRecord()](#getNameRecord--) | Gets the components of the name of the object.
+ |
+| [getName()](#getName--) | Gets the components of the name of the object.
+ |
+| [getNicknameRecords()](#getNicknameRecords--) | Gets an array containing the text corresponding to the nickname of the object.
+ |
+| [getNicknames()](#getNicknames--) | Gets an array containing the text corresponding to the nickname of the object.
+ |
+| [getPhotoRecords()](#getPhotoRecords--) | Gets an array containing the image or photograph information that annotates some aspects of the object.
+ |
+| [getPhotoBinaryRecords()](#getPhotoBinaryRecords--) | Gets an array containing the image or photograph information represented as binary data that annotates some aspects of the object.
+ |
+| [getBinaryPhotos()](#getBinaryPhotos--) | Gets an array containing the image or photograph information represented as binary data that annotates some aspects of the object.
+ |
+| [getPhotoUriRecords()](#getPhotoUriRecords--) | Gets an array containing the image or photograph information represented by URIs that annotates some aspects of the object.
+ |
+| [getUriPhotos()](#getUriPhotos--) | Gets an array containing the image or photograph information represented by URIs that annotates some aspects of the object.
+ |
+| [getBirthdateRecords()](#getBirthdateRecords--) | Gets an array containing the birth date of the object in different representations.
+ |
+| [getBirthdateDateTimeRecord()](#getBirthdateDateTimeRecord--) | Gets the birth date of the object.
+ |
+| [getDateTimeBirthdate()](#getDateTimeBirthdate--) | Gets the birth date of the object.
+ |
+| [getBirthdateTextRecords()](#getBirthdateTextRecords--) | Gets an array containing the birth date of the object in different text representations.
+ |
+| [getTextBirthdates()](#getTextBirthdates--) | Gets an array containing the birth date of the object in different text representations.
+ |
+| [getAnniversaryRecord()](#getAnniversaryRecord--) | Gets the date of marriage, or equivalent, of the object.
+ |
+| [getAnniversaryDateTimeRecord()](#getAnniversaryDateTimeRecord--) | Gets the date of marriage represented as a single date-and-or-time value.
+ |
+| [getDateTimeAnniversary()](#getDateTimeAnniversary--) | Gets the date of marriage represented as a single date-and-or-time value.
+ |
+| [getAnniversaryTextRecord()](#getAnniversaryTextRecord--) | Gets the date of marriage represented as a single text value.
+ |
+| [getTextAnniversary()](#getTextAnniversary--) | Gets the date of marriage represented as a single text value.
+ |
+| [getGenderRecord()](#getGenderRecord--) | Gets the components of the sex and gender identity of the object.
+ |
+| [getGender()](#getGender--) | Gets the components of the sex and gender identity of the object.
+ |
### getFormattedNameRecords() {#getFormattedNameRecords--}
```
public final VCardTextRecord[] getFormattedNameRecords()
@@ -55,8 +82,10 @@ public final VCardTextRecord[] getFormattedNameRecords()
Gets an array containing the formatted text corresponding to the name of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array containing the formatted text corresponding to the name of the object.
+
### getFormattedNames() {#getFormattedNames--}
```
public final String[] getFormattedNames()
@@ -65,12 +94,19 @@ public final String[] getFormattedNames()
Gets an array containing the formatted text corresponding to the name of the object.
+
**Returns:**
java.lang.String[] - An array containing the formatted text corresponding to the name of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of FormattedNameRecords .
+
+
+
+
### getNameRecord() {#getNameRecord--}
```
public final VCardTextRecord getNameRecord()
@@ -79,8 +115,10 @@ public final VCardTextRecord getNameRecord()
Gets the components of the name of the object.
+
**Returns:**
[VCardTextRecord](../../com.groupdocs.metadata.core/vcardtextrecord) - The components of the name of the object.
+
### getName() {#getName--}
```
public final String getName()
@@ -89,12 +127,19 @@ public final String getName()
Gets the components of the name of the object.
+
**Returns:**
java.lang.String - The components of the name of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of NameRecord .
+
+
+
+
### getNicknameRecords() {#getNicknameRecords--}
```
public final VCardTextRecord[] getNicknameRecords()
@@ -103,8 +148,10 @@ public final VCardTextRecord[] getNicknameRecords()
Gets an array containing the text corresponding to the nickname of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array containing the text corresponding to the nickname of the object.
+
### getNicknames() {#getNicknames--}
```
public final String[] getNicknames()
@@ -113,12 +160,19 @@ public final String[] getNicknames()
Gets an array containing the text corresponding to the nickname of the object.
+
**Returns:**
java.lang.String[] - An array containing the text corresponding to the nickname of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of NicknameRecords .
+
+
+
+
### getPhotoRecords() {#getPhotoRecords--}
```
public final VCardRecord[] getPhotoRecords()
@@ -127,8 +181,10 @@ public final VCardRecord[] getPhotoRecords()
Gets an array containing the image or photograph information that annotates some aspects of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardRecord[] - An array containing the image or photograph information that annotates some aspects of the object.
+
### getPhotoBinaryRecords() {#getPhotoBinaryRecords--}
```
public final VCardBinaryRecord[] getPhotoBinaryRecords()
@@ -137,12 +193,19 @@ public final VCardBinaryRecord[] getPhotoBinaryRecords()
Gets an array containing the image or photograph information represented as binary data that annotates some aspects of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardBinaryRecord[] - An array containing the image or photograph information represented as binary data that annotates some aspects of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PhotoRecords .
+
+
+
+
### getBinaryPhotos() {#getBinaryPhotos--}
```
public final byte[][] getBinaryPhotos()
@@ -151,12 +214,19 @@ public final byte[][] getBinaryPhotos()
Gets an array containing the image or photograph information represented as binary data that annotates some aspects of the object.
+
**Returns:**
byte[][] - An array containing the image or photograph information represented as binary data that annotates some aspects of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PhotoBinaryRecords .
+
+
+
+
### getPhotoUriRecords() {#getPhotoUriRecords--}
```
public final VCardTextRecord[] getPhotoUriRecords()
@@ -165,12 +235,19 @@ public final VCardTextRecord[] getPhotoUriRecords()
Gets an array containing the image or photograph information represented by URIs that annotates some aspects of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array containing the image or photograph information represented by URIs that annotates some aspects of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PhotoRecords .
+
+
+
+
### getUriPhotos() {#getUriPhotos--}
```
public final String[] getUriPhotos()
@@ -179,12 +256,19 @@ public final String[] getUriPhotos()
Gets an array containing the image or photograph information represented by URIs that annotates some aspects of the object.
+
**Returns:**
java.lang.String[] - An array containing the image or photograph information represented by URIs that annotates some aspects of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PhotoUriRecords .
+
+
+
+
### getBirthdateRecords() {#getBirthdateRecords--}
```
public final VCardRecord[] getBirthdateRecords()
@@ -193,8 +277,10 @@ public final VCardRecord[] getBirthdateRecords()
Gets an array containing the birth date of the object in different representations.
+
**Returns:**
com.groupdocs.metadata.core.VCardRecord[] - An array containing the birth date of the object in different representations.
+
### getBirthdateDateTimeRecord() {#getBirthdateDateTimeRecord--}
```
public final VCardDateTimeRecord getBirthdateDateTimeRecord()
@@ -203,12 +289,19 @@ public final VCardDateTimeRecord getBirthdateDateTimeRecord()
Gets the birth date of the object.
+
**Returns:**
[VCardDateTimeRecord](../../com.groupdocs.metadata.core/vcarddatetimerecord) - The birth date of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of BirthdateRecords .
+
+
+
+
### getDateTimeBirthdate() {#getDateTimeBirthdate--}
```
public final Date getDateTimeBirthdate()
@@ -217,12 +310,19 @@ public final Date getDateTimeBirthdate()
Gets the birth date of the object.
+
**Returns:**
java.util.Date - The birth date of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of BirthdateDateTimeRecord .
+
+
+
+
### getBirthdateTextRecords() {#getBirthdateTextRecords--}
```
public final VCardTextRecord[] getBirthdateTextRecords()
@@ -231,12 +331,19 @@ public final VCardTextRecord[] getBirthdateTextRecords()
Gets an array containing the birth date of the object in different text representations.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - An array containing the birth date of the object in different text representations.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of BirthdateRecords .
+
+
+
+
### getTextBirthdates() {#getTextBirthdates--}
```
public final String[] getTextBirthdates()
@@ -245,12 +352,19 @@ public final String[] getTextBirthdates()
Gets an array containing the birth date of the object in different text representations.
+
**Returns:**
java.lang.String[] - An array containing the birth date of the object in different text representations.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of BirthdateTextRecords .
+
+
+
+
### getAnniversaryRecord() {#getAnniversaryRecord--}
```
public final VCardRecord getAnniversaryRecord()
@@ -259,8 +373,10 @@ public final VCardRecord getAnniversaryRecord()
Gets the date of marriage, or equivalent, of the object.
+
**Returns:**
[VCardRecord](../../com.groupdocs.metadata.core/vcardrecord) - The date of marriage, or equivalent, of the object.
+
### getAnniversaryDateTimeRecord() {#getAnniversaryDateTimeRecord--}
```
public final VCardDateTimeRecord getAnniversaryDateTimeRecord()
@@ -269,12 +385,19 @@ public final VCardDateTimeRecord getAnniversaryDateTimeRecord()
Gets the date of marriage represented as a single date-and-or-time value.
+
**Returns:**
[VCardDateTimeRecord](../../com.groupdocs.metadata.core/vcarddatetimerecord) - The date of marriage represented as a single date-and-or-time value.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AnniversaryRecord .
+
+
+
+
### getDateTimeAnniversary() {#getDateTimeAnniversary--}
```
public final Date getDateTimeAnniversary()
@@ -283,12 +406,19 @@ public final Date getDateTimeAnniversary()
Gets the date of marriage represented as a single date-and-or-time value.
+
**Returns:**
java.util.Date - The date of marriage represented as a single date-and-or-time value.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AnniversaryDateTimeRecord .
+
+
+
+
### getAnniversaryTextRecord() {#getAnniversaryTextRecord--}
```
public final VCardTextRecord getAnniversaryTextRecord()
@@ -297,12 +427,19 @@ public final VCardTextRecord getAnniversaryTextRecord()
Gets the date of marriage represented as a single text value.
+
**Returns:**
[VCardTextRecord](../../com.groupdocs.metadata.core/vcardtextrecord) - The date of marriage represented as a single text value.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AnniversaryRecord .
+
+
+
+
### getTextAnniversary() {#getTextAnniversary--}
```
public final String getTextAnniversary()
@@ -311,12 +448,19 @@ public final String getTextAnniversary()
Gets the date of marriage represented as a single text value.
+
**Returns:**
java.lang.String - The date of marriage represented as a single text value.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AnniversaryTextRecord .
+
+
+
+
### getGenderRecord() {#getGenderRecord--}
```
public final VCardTextRecord getGenderRecord()
@@ -325,8 +469,10 @@ public final VCardTextRecord getGenderRecord()
Gets the components of the sex and gender identity of the object.
+
**Returns:**
[VCardTextRecord](../../com.groupdocs.metadata.core/vcardtextrecord) - The components of the sex and gender identity of the object.
+
### getGender() {#getGender--}
```
public final String getGender()
@@ -335,9 +481,16 @@ public final String getGender()
Gets the components of the sex and gender identity of the object.
+
**Returns:**
java.lang.String - The components of the sex and gender identity of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of GenderRecord .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardorganizationalrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardorganizationalrecordset/_index.md
index e5701f306c..bbee8ce488 100644
--- a/english/java/com.groupdocs.metadata.core/vcardorganizationalrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardorganizationalrecordset/_index.md
@@ -12,38 +12,63 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardOrganizationalRecordset extends VCardRecordset
```
-Represents a set of Organizational vCard records. These properties are concerned with information associated with characteristics of the organization or organizational units of the object that the vCard represents.
+Represents a set of Organizational vCard records.
+These properties are concerned with information associated with
+characteristics of the organization or organizational units of
+the object that the vCard represents.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getTitleRecords()](#getTitleRecords--) | Gets the positions or jobs of the object. |
-| [getTitles()](#getTitles--) | Gets the positions or jobs of the object. |
-| [getRoleRecords()](#getRoleRecords--) | Gets the functions or parts played in a particular situation by the object. |
-| [getRoles()](#getRoles--) | Gets the functions or parts played in a particular situation by the object. |
-| [getLogoRecords()](#getLogoRecords--) | Gets the graphic images of the logo associated with the object. |
-| [getLogoBinaryRecords()](#getLogoBinaryRecords--) | Gets the graphic images of the logo associated with the object. |
-| [getBinaryLogos()](#getBinaryLogos--) | Gets the graphic images of the logo associated with the object. |
-| [getLogoUriRecords()](#getLogoUriRecords--) | Gets the URIs of the graphic images of the logo associated with the object. |
-| [getUriLogos()](#getUriLogos--) | Gets the URIs of the graphic images of the logo associated with the object. |
-| [getAgentRecords()](#getAgentRecords--) | Gets the information about another person who will act on behalf of the vCard object. |
-| [getAgentObjectRecord()](#getAgentObjectRecord--) | Gets the information about another person who will act on behalf of the vCard object. |
-| [getObjectAgent()](#getObjectAgent--) | Gets the information about another person who will act on behalf of the vCard object. |
-| [getAgentUriRecords()](#getAgentUriRecords--) | Gets the information about another person who will act on behalf of the vCard object. |
-| [getUriAgents()](#getUriAgents--) | Gets the information about another person who will act on behalf of the vCard object. |
-| [getOrganizationNameRecords()](#getOrganizationNameRecords--) | Gets the organizational names and units associated with the object. |
-| [getOrganizationNames()](#getOrganizationNames--) | Gets the organizational names and units associated with the object. |
-| [getMemberRecords()](#getMemberRecords--) | Gets the members in the group this vCard represents. |
-| [getMembers()](#getMembers--) | Gets the members in the group this vCard represents. |
-| [getRelationshipRecords()](#getRelationshipRecords--) | Gets the relationships between another entity and the entity represented by this vCard. |
-| [getRelationships()](#getRelationships--) | Gets the relationships between another entity and the entity represented by this vCard. |
+| [getTitleRecords()](#getTitleRecords--) | Gets the positions or jobs of the object.
+ |
+| [getTitles()](#getTitles--) | Gets the positions or jobs of the object.
+ |
+| [getRoleRecords()](#getRoleRecords--) | Gets the functions or parts played in a particular situation by the object.
+ |
+| [getRoles()](#getRoles--) | Gets the functions or parts played in a particular situation by the object.
+ |
+| [getLogoRecords()](#getLogoRecords--) | Gets the graphic images of the logo associated with the object.
+ |
+| [getLogoBinaryRecords()](#getLogoBinaryRecords--) | Gets the graphic images of the logo associated with the object.
+ |
+| [getBinaryLogos()](#getBinaryLogos--) | Gets the graphic images of the logo associated with the object.
+ |
+| [getLogoUriRecords()](#getLogoUriRecords--) | Gets the URIs of the graphic images of the logo associated with the object.
+ |
+| [getUriLogos()](#getUriLogos--) | Gets the URIs of the graphic images of the logo associated with the object.
+ |
+| [getAgentRecords()](#getAgentRecords--) | Gets the information about another person who will act on behalf of the vCard object.
+ |
+| [getAgentObjectRecord()](#getAgentObjectRecord--) | Gets the information about another person who will act on behalf of the vCard object.
+ |
+| [getObjectAgent()](#getObjectAgent--) | Gets the information about another person who will act on behalf of the vCard object.
+ |
+| [getAgentUriRecords()](#getAgentUriRecords--) | Gets the information about another person who will act on behalf of the vCard object.
+ |
+| [getUriAgents()](#getUriAgents--) | Gets the information about another person who will act on behalf of the vCard object.
+ |
+| [getOrganizationNameRecords()](#getOrganizationNameRecords--) | Gets the organizational names and units associated with the object.
+ |
+| [getOrganizationNames()](#getOrganizationNames--) | Gets the organizational names and units associated with the object.
+ |
+| [getMemberRecords()](#getMemberRecords--) | Gets the members in the group this vCard represents.
+ |
+| [getMembers()](#getMembers--) | Gets the members in the group this vCard represents.
+ |
+| [getRelationshipRecords()](#getRelationshipRecords--) | Gets the relationships between another entity and the entity represented by this vCard.
+ |
+| [getRelationships()](#getRelationships--) | Gets the relationships between another entity and the entity represented by this vCard.
+ |
### getTitleRecords() {#getTitleRecords--}
```
public final VCardTextRecord[] getTitleRecords()
@@ -52,8 +77,10 @@ public final VCardTextRecord[] getTitleRecords()
Gets the positions or jobs of the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The positions or jobs of the object.
+
### getTitles() {#getTitles--}
```
public final String[] getTitles()
@@ -62,12 +89,19 @@ public final String[] getTitles()
Gets the positions or jobs of the object.
+
**Returns:**
java.lang.String[] - The positions or jobs of the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of TitleRecords .
+
+
+
+
### getRoleRecords() {#getRoleRecords--}
```
public final VCardTextRecord[] getRoleRecords()
@@ -76,8 +110,10 @@ public final VCardTextRecord[] getRoleRecords()
Gets the functions or parts played in a particular situation by the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The functions or parts played in a particular situation by the object.
+
### getRoles() {#getRoles--}
```
public final String[] getRoles()
@@ -86,12 +122,19 @@ public final String[] getRoles()
Gets the functions or parts played in a particular situation by the object.
+
**Returns:**
java.lang.String[] - The functions or parts played in a particular situation by the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of TitleRecords .
+
+
+
+
### getLogoRecords() {#getLogoRecords--}
```
public final VCardRecord[] getLogoRecords()
@@ -100,8 +143,10 @@ public final VCardRecord[] getLogoRecords()
Gets the graphic images of the logo associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardRecord[] - The graphic images of the logo associated with the object.
+
### getLogoBinaryRecords() {#getLogoBinaryRecords--}
```
public final VCardBinaryRecord[] getLogoBinaryRecords()
@@ -110,12 +155,19 @@ public final VCardBinaryRecord[] getLogoBinaryRecords()
Gets the graphic images of the logo associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardBinaryRecord[] - The graphic images of the logo associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of LogoRecords .
+
+
+
+
### getBinaryLogos() {#getBinaryLogos--}
```
public final byte[][] getBinaryLogos()
@@ -124,12 +176,19 @@ public final byte[][] getBinaryLogos()
Gets the graphic images of the logo associated with the object.
+
**Returns:**
byte[][] - The graphic images of the logo associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of LogoBinaryRecords .
+
+
+
+
### getLogoUriRecords() {#getLogoUriRecords--}
```
public final VCardTextRecord[] getLogoUriRecords()
@@ -138,12 +197,19 @@ public final VCardTextRecord[] getLogoUriRecords()
Gets the URIs of the graphic images of the logo associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The URIs of the graphic images of the logo associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of LogoRecords .
+
+
+
+
### getUriLogos() {#getUriLogos--}
```
public final String[] getUriLogos()
@@ -152,12 +218,19 @@ public final String[] getUriLogos()
Gets the URIs of the graphic images of the logo associated with the object.
+
**Returns:**
java.lang.String[] - The URIs of the graphic images of the logo associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of LogoUriRecords .
+
+
+
+
### getAgentRecords() {#getAgentRecords--}
```
public final VCardRecord[] getAgentRecords()
@@ -166,8 +239,10 @@ public final VCardRecord[] getAgentRecords()
Gets the information about another person who will act on behalf of the vCard object.
+
**Returns:**
com.groupdocs.metadata.core.VCardRecord[] - The information about another person who will act on behalf of the vCard object.
+
### getAgentObjectRecord() {#getAgentObjectRecord--}
```
public final VCardAgentRecord getAgentObjectRecord()
@@ -176,12 +251,19 @@ public final VCardAgentRecord getAgentObjectRecord()
Gets the information about another person who will act on behalf of the vCard object.
+
**Returns:**
[VCardAgentRecord](../../com.groupdocs.metadata.core/vcardagentrecord) - The information about another person who will act on behalf of the vCard object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AgentRecords .
+
+
+
+
### getObjectAgent() {#getObjectAgent--}
```
public final VCardCard getObjectAgent()
@@ -190,12 +272,19 @@ public final VCardCard getObjectAgent()
Gets the information about another person who will act on behalf of the vCard object.
+
**Returns:**
[VCardCard](../../com.groupdocs.metadata.core/vcardcard) - The information about another person who will act on behalf of the vCard object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AgentObjectRecord .
+
+
+
+
### getAgentUriRecords() {#getAgentUriRecords--}
```
public final VCardTextRecord[] getAgentUriRecords()
@@ -204,12 +293,19 @@ public final VCardTextRecord[] getAgentUriRecords()
Gets the information about another person who will act on behalf of the vCard object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The information about another person who will act on behalf of the vCard object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AgentRecords .
+
+
+
+
### getUriAgents() {#getUriAgents--}
```
public final String[] getUriAgents()
@@ -218,12 +314,19 @@ public final String[] getUriAgents()
Gets the information about another person who will act on behalf of the vCard object.
+
**Returns:**
java.lang.String[] - The information about another person who will act on behalf of the vCard object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of AgentUriRecords .
+
+
+
+
### getOrganizationNameRecords() {#getOrganizationNameRecords--}
```
public final VCardTextRecord[] getOrganizationNameRecords()
@@ -232,8 +335,10 @@ public final VCardTextRecord[] getOrganizationNameRecords()
Gets the organizational names and units associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The organizational names and units associated with the object.
+
### getOrganizationNames() {#getOrganizationNames--}
```
public final String[] getOrganizationNames()
@@ -242,12 +347,19 @@ public final String[] getOrganizationNames()
Gets the organizational names and units associated with the object.
+
**Returns:**
java.lang.String[] - The organizational names and units associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of OrganizationNameRecords .
+
+
+
+
### getMemberRecords() {#getMemberRecords--}
```
public final VCardTextRecord[] getMemberRecords()
@@ -256,8 +368,10 @@ public final VCardTextRecord[] getMemberRecords()
Gets the members in the group this vCard represents.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The members in the group this vCard represents.
+
### getMembers() {#getMembers--}
```
public final String[] getMembers()
@@ -266,12 +380,19 @@ public final String[] getMembers()
Gets the members in the group this vCard represents.
+
**Returns:**
java.lang.String[] - The members in the group this vCard represents.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of MemberRecords .
+
+
+
+
### getRelationshipRecords() {#getRelationshipRecords--}
```
public final VCardTextRecord[] getRelationshipRecords()
@@ -280,8 +401,10 @@ public final VCardTextRecord[] getRelationshipRecords()
Gets the relationships between another entity and the entity represented by this vCard.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The relationships between another entity and the entity represented by this vCard.
+
### getRelationships() {#getRelationships--}
```
public final String[] getRelationships()
@@ -290,9 +413,16 @@ public final String[] getRelationships()
Gets the relationships between another entity and the entity represented by this vCard.
+
**Returns:**
java.lang.String[] - The relationships between another entity and the entity represented by this vCard.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of RelationshipRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardpackage/_index.md b/english/java/com.groupdocs.metadata.core/vcardpackage/_index.md
index fc5b4b349a..14bbca3441 100644
--- a/english/java/com.groupdocs.metadata.core/vcardpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardpackage/_index.md
@@ -14,17 +14,20 @@ public final class VCardPackage extends VCardBasePackage
Represents VCF (Virtual Contact File) electronic business card format metadata.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getCards()](#getCards--) | Gets an array of the cards extracted from the file. |
+| [getCards()](#getCards--) | Gets an array of the cards extracted from the file.
+ |
### getCards() {#getCards--}
```
public final VCardCard[] getCards()
@@ -33,5 +36,7 @@ public final VCardCard[] getCards()
Gets an array of the cards extracted from the file.
+
**Returns:**
com.groupdocs.metadata.core.VCardCard[] - An array of the cards extracted from the file.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardrecord/_index.md b/english/java/com.groupdocs.metadata.core/vcardrecord/_index.md
index 116ac7a7d2..a7d7957998 100644
--- a/english/java/com.groupdocs.metadata.core/vcardrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardrecord/_index.md
@@ -14,26 +14,38 @@ public abstract class VCardRecord extends VCardBasePackage
Represents abstract vCard record metadata class.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getGroup()](#getGroup--) | Gets the grouping value. |
-| [getValueParameters()](#getValueParameters--) | Gets the value parameters. |
-| [getPrefParameter()](#getPrefParameter--) | Gets the preferred parameter. |
-| [getAltIdParameter()](#getAltIdParameter--) | Gets the alternative representations parameter value. |
-| [getTypeParameters()](#getTypeParameters--) | Gets the type parameter values. |
-| [getEncodingParameter()](#getEncodingParameter--) | Gets the encoding parameter value. |
-| [getLanguageParameter()](#getLanguageParameter--) | Gets the language parameter value. |
-| [getAnonymParameters()](#getAnonymParameters--) | Gets the anonymous parameters. |
-| [getContentType()](#getContentType--) | Gets the content type of record. |
-| [getTypeName()](#getTypeName--) | Gets the type of the record. |
+| [getGroup()](#getGroup--) | Gets the grouping value.
+ |
+| [getValueParameters()](#getValueParameters--) | Gets the value parameters.
+ |
+| [getPrefParameter()](#getPrefParameter--) | Gets the preferred parameter.
+ |
+| [getAltIdParameter()](#getAltIdParameter--) | Gets the alternative representations parameter value.
+ |
+| [getTypeParameters()](#getTypeParameters--) | Gets the type parameter values.
+ |
+| [getEncodingParameter()](#getEncodingParameter--) | Gets the encoding parameter value.
+ |
+| [getLanguageParameter()](#getLanguageParameter--) | Gets the language parameter value.
+ |
+| [getAnonymParameters()](#getAnonymParameters--) | Gets the anonymous parameters.
+ |
+| [getContentType()](#getContentType--) | Gets the content type of record.
+ |
+| [getTypeName()](#getTypeName--) | Gets the type of the record.
+ |
### getGroup() {#getGroup--}
```
public final String getGroup()
@@ -42,8 +54,10 @@ public final String getGroup()
Gets the grouping value.
+
**Returns:**
java.lang.String - The grouping value.
+
### getValueParameters() {#getValueParameters--}
```
public final String[] getValueParameters()
@@ -52,12 +66,19 @@ public final String[] getValueParameters()
Gets the value parameters.
+
**Returns:**
java.lang.String[] - The value parameters.
---------------------
+
+
+*** ** * ** ***
Used to identify the value type (data type) and format of the value.
+
+
+
+
### getPrefParameter() {#getPrefParameter--}
```
public final Integer getPrefParameter()
@@ -66,12 +87,19 @@ public final Integer getPrefParameter()
Gets the preferred parameter.
+
**Returns:**
java.lang.Integer - The preferred parameter.
---------------------
+
+
+*** ** * ** ***
Used to indicate that the corresponding instance of a property is preferred by the vCard author.
+
+
+
+
### getAltIdParameter() {#getAltIdParameter--}
```
public final String getAltIdParameter()
@@ -80,12 +108,19 @@ public final String getAltIdParameter()
Gets the alternative representations parameter value.
+
**Returns:**
java.lang.String - The alternative representations parameter value.
---------------------
+
+
+*** ** * ** ***
Used to "tag" property instances as being alternative representations of the same logical property.
+
+
+
+
### getTypeParameters() {#getTypeParameters--}
```
public final String[] getTypeParameters()
@@ -94,12 +129,19 @@ public final String[] getTypeParameters()
Gets the type parameter values.
+
**Returns:**
java.lang.String[] - The type parameter values.
---------------------
+
+
+*** ** * ** ***
The type parameter has multiple, different uses. In general, it is a way of specifying class characteristics of the associated property.
+
+
+
+
### getEncodingParameter() {#getEncodingParameter--}
```
public final String getEncodingParameter()
@@ -108,8 +150,10 @@ public final String getEncodingParameter()
Gets the encoding parameter value.
+
**Returns:**
java.lang.String - The encoding parameter value.
+
### getLanguageParameter() {#getLanguageParameter--}
```
public final String getLanguageParameter()
@@ -118,8 +162,10 @@ public final String getLanguageParameter()
Gets the language parameter value.
+
**Returns:**
java.lang.String - The language parameter value.
+
### getAnonymParameters() {#getAnonymParameters--}
```
public final String[] getAnonymParameters()
@@ -128,8 +174,10 @@ public final String[] getAnonymParameters()
Gets the anonymous parameters.
+
**Returns:**
java.lang.String[] - The anonymous parameters.
+
### getContentType() {#getContentType--}
```
public abstract VCardContentType getContentType()
@@ -138,8 +186,10 @@ public abstract VCardContentType getContentType()
Gets the content type of record.
+
**Returns:**
[VCardContentType](../../com.groupdocs.metadata.core/vcardcontenttype) - The content type of record.
+
### getTypeName() {#getTypeName--}
```
public final String getTypeName()
@@ -148,5 +198,7 @@ public final String getTypeName()
Gets the type of the record.
+
**Returns:**
java.lang.String - The type of the record.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardrecordset/_index.md
index d94ae339b5..bf012b3f91 100644
--- a/english/java/com.groupdocs.metadata.core/vcardrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardrecordset/_index.md
@@ -14,9 +14,11 @@ public class VCardRecordset extends VCardBasePackage
Provides a base vCard record union class.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
+
+
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
diff --git a/english/java/com.groupdocs.metadata.core/vcardrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/vcardrootpackage/_index.md
index 45ef9844e1..173d017f72 100644
--- a/english/java/com.groupdocs.metadata.core/vcardrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardrootpackage/_index.md
@@ -14,15 +14,18 @@ public class VCardRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a VCard file.
+
**Learn more**
- * [Working with vCard metadata][]
+* [Working with vCard metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata)
-This code sample demonstrates how to read metadata properties of a vCard file.
+
+This code sample demonstrates how to read metadata properties of a vCard file.
+>
+> ````
> ```
-> ```
->
+>
> public static void run() {
> try (Metadata metadata = new Metadata(Constants.InputVcf)) {
> VCardRootPackage root = metadata.getRootPackageGeneric();
@@ -45,15 +48,15 @@ This code sample demonstrates how to read metadata properties of a vCard file.
> }
>
> ```
-> ```
+> ````
-[Working with vCard metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+vCard+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getVCardPackage()](#getVCardPackage--) | Gets the VCard metadata package. |
+| [getVCardPackage()](#getVCardPackage--) | Gets the VCard metadata package.
+ |
### getVCardPackage() {#getVCardPackage--}
```
public final VCardPackage getVCardPackage()
@@ -62,5 +65,7 @@ public final VCardPackage getVCardPackage()
Gets the VCard metadata package.
+
**Returns:**
[VCardPackage](../../com.groupdocs.metadata.core/vcardpackage) - The VCard metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardsecurityrecordset/_index.md b/english/java/com.groupdocs.metadata.core/vcardsecurityrecordset/_index.md
index 7209138495..30f472246a 100644
--- a/english/java/com.groupdocs.metadata.core/vcardsecurityrecordset/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardsecurityrecordset/_index.md
@@ -12,17 +12,26 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class VCardSecurityRecordset extends VCardRecordset
```
-Represents a set of Security vCard records. These properties are concerned with the security of communication pathways or access to the vCard.
+Represents a set of Security vCard records.
+These properties are concerned with the security of
+communication pathways or access to the vCard.
+
## Methods
| Method | Description |
| --- | --- |
-| [getAccessClassification()](#getAccessClassification--) | Gets the sensitivity of the information in the vCard. |
-| [getPublicKeyRecords()](#getPublicKeyRecords--) | Gets the public keys or authentication certificates associated with the object. |
-| [getPublicKeyBinaryRecords()](#getPublicKeyBinaryRecords--) | Gets the public keys or authentication certificates associated with the object. |
-| [getBinaryPublicKeys()](#getBinaryPublicKeys--) | Gets the public keys or authentication certificates associated with the object. |
-| [getPublicKeyUriRecords()](#getPublicKeyUriRecords--) | Gets the public keys or authentication certificates associated with the object. |
-| [getUriPublicKeys()](#getUriPublicKeys--) | Gets the public keys or authentication certificates associated with the object. |
+| [getAccessClassification()](#getAccessClassification--) | Gets the sensitivity of the information in the vCard.
+ |
+| [getPublicKeyRecords()](#getPublicKeyRecords--) | Gets the public keys or authentication certificates associated with the object.
+ |
+| [getPublicKeyBinaryRecords()](#getPublicKeyBinaryRecords--) | Gets the public keys or authentication certificates associated with the object.
+ |
+| [getBinaryPublicKeys()](#getBinaryPublicKeys--) | Gets the public keys or authentication certificates associated with the object.
+ |
+| [getPublicKeyUriRecords()](#getPublicKeyUriRecords--) | Gets the public keys or authentication certificates associated with the object.
+ |
+| [getUriPublicKeys()](#getUriPublicKeys--) | Gets the public keys or authentication certificates associated with the object.
+ |
### getAccessClassification() {#getAccessClassification--}
```
public final String getAccessClassification()
@@ -31,8 +40,10 @@ public final String getAccessClassification()
Gets the sensitivity of the information in the vCard.
+
**Returns:**
java.lang.String - The sensitivity of the information in the vCard.
+
### getPublicKeyRecords() {#getPublicKeyRecords--}
```
public final VCardRecord[] getPublicKeyRecords()
@@ -41,8 +52,10 @@ public final VCardRecord[] getPublicKeyRecords()
Gets the public keys or authentication certificates associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardRecord[] - The public keys or authentication certificates associated with the object.
+
### getPublicKeyBinaryRecords() {#getPublicKeyBinaryRecords--}
```
public final VCardBinaryRecord[] getPublicKeyBinaryRecords()
@@ -51,12 +64,19 @@ public final VCardBinaryRecord[] getPublicKeyBinaryRecords()
Gets the public keys or authentication certificates associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardBinaryRecord[] - The public keys or authentication certificates associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PublicKeyRecords .
+
+
+
+
### getBinaryPublicKeys() {#getBinaryPublicKeys--}
```
public final byte[][] getBinaryPublicKeys()
@@ -65,12 +85,19 @@ public final byte[][] getBinaryPublicKeys()
Gets the public keys or authentication certificates associated with the object.
+
**Returns:**
byte[][] - The public keys or authentication certificates associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PublicKeyBinaryRecords .
+
+
+
+
### getPublicKeyUriRecords() {#getPublicKeyUriRecords--}
```
public final VCardTextRecord[] getPublicKeyUriRecords()
@@ -79,12 +106,19 @@ public final VCardTextRecord[] getPublicKeyUriRecords()
Gets the public keys or authentication certificates associated with the object.
+
**Returns:**
com.groupdocs.metadata.core.VCardTextRecord[] - The public keys or authentication certificates associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PublicKeyRecords .
+
+
+
+
### getUriPublicKeys() {#getUriPublicKeys--}
```
public final String[] getUriPublicKeys()
@@ -93,9 +127,16 @@ public final String[] getUriPublicKeys()
Gets the public keys or authentication certificates associated with the object.
+
**Returns:**
java.lang.String[] - The public keys or authentication certificates associated with the object.
---------------------
+
+
+*** ** * ** ***
This property is a simplified version of PublicKeyUriRecords .
+
+
+
+
diff --git a/english/java/com.groupdocs.metadata.core/vcardtextrecord/_index.md b/english/java/com.groupdocs.metadata.core/vcardtextrecord/_index.md
index 3ad5bb81e5..f8927c9ff5 100644
--- a/english/java/com.groupdocs.metadata.core/vcardtextrecord/_index.md
+++ b/english/java/com.groupdocs.metadata.core/vcardtextrecord/_index.md
@@ -16,16 +16,23 @@ public class VCardTextRecord extends VCardRecord implements IVCardRecord
```
Represents vCard text record metadata class.
+
## Methods
| Method | Description |
| --- | --- |
-| [getContentType()](#getContentType--) | Gets the content type of record. |
-| [getMediaTypeParameter()](#getMediaTypeParameter--) | Gets the media type parameter value. |
-| [getCharsetParameter()](#getCharsetParameter--) | Gets the charset parameter. |
-| [getValue()](#getValue--) | Gets the record value. |
-| [isQuotedPrintable()](#isQuotedPrintable--) | Gets a value indicating whether this instance is quoted printable string. |
-| [getReadabilityValue(String codePageName)](#getReadabilityValue-java.lang.String-) | Gets the readability value. |
+| [getContentType()](#getContentType--) | Gets the content type of record.
+ |
+| [getMediaTypeParameter()](#getMediaTypeParameter--) | Gets the media type parameter value.
+ |
+| [getCharsetParameter()](#getCharsetParameter--) | Gets the charset parameter.
+ |
+| [getValue()](#getValue--) | Gets the record value.
+ |
+| [isQuotedPrintable()](#isQuotedPrintable--) | Gets a value indicating whether this instance is quoted printable string.
+ |
+| [getReadabilityValue(String codePageName)](#getReadabilityValue-java.lang.String-) | Gets the readability value.
+ |
### getContentType() {#getContentType--}
```
public VCardContentType getContentType()
@@ -34,8 +41,10 @@ public VCardContentType getContentType()
Gets the content type of record.
+
**Returns:**
[VCardContentType](../../com.groupdocs.metadata.core/vcardcontenttype) - The content type of record.
+
### getMediaTypeParameter() {#getMediaTypeParameter--}
```
public final String getMediaTypeParameter()
@@ -44,12 +53,19 @@ public final String getMediaTypeParameter()
Gets the media type parameter value.
+
**Returns:**
java.lang.String - The media type parameter value.
---------------------
+
+
+*** ** * ** ***
Used with properties whose value is a URI. It provides a hint to the vCard consumer application about the media type [RFC2046] of the resource identified by the URI.
+
+
+
+
### getCharsetParameter() {#getCharsetParameter--}
```
public final String getCharsetParameter()
@@ -58,8 +74,10 @@ public final String getCharsetParameter()
Gets the charset parameter.
+
**Returns:**
java.lang.String - The charset parameter.
+
### getValue() {#getValue--}
```
public final String getValue()
@@ -68,8 +86,10 @@ public final String getValue()
Gets the record value.
+
**Returns:**
java.lang.String - The record value.
+
### isQuotedPrintable() {#isQuotedPrintable--}
```
public final boolean isQuotedPrintable()
@@ -78,8 +98,10 @@ public final boolean isQuotedPrintable()
Gets a value indicating whether this instance is quoted printable string.
+
**Returns:**
boolean - true if this instance is quoted printable; otherwise, false .
+
### getReadabilityValue(String codePageName) {#getReadabilityValue-java.lang.String-}
```
public final String getReadabilityValue(String codePageName)
@@ -88,10 +110,13 @@ public final String getReadabilityValue(String codePageName)
Gets the readability value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| codePageName | java.lang.String | The using encoding code page name or null for ASCII encoding. |
+| codePageName | java.lang.String | The using encoding code page name or null for ASCII encoding.
+ |
**Returns:**
java.lang.String - The readability value.
+
diff --git a/english/java/com.groupdocs.metadata.core/wavpackage/_index.md b/english/java/com.groupdocs.metadata.core/wavpackage/_index.md
index 48dc98ab21..540fc8962b 100644
--- a/english/java/com.groupdocs.metadata.core/wavpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wavpackage/_index.md
@@ -15,10 +15,10 @@ public final class WavPackage extends CustomPackage
Represents a native metadata package in a WAV audio file.
This code sample shows how to extract technical audio information from a WAV file.
-
-> ```
+>
+> ````
> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputWav)) {
> WavRootPackage root = metadata.getRootPackageGeneric();
> if (root.getWavPackage() != null) {
@@ -32,29 +32,43 @@ This code sample shows how to extract technical audio information from a WAV fil
> }
>
> ```
-> ```
+> ````
+
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [WavPackage()](#WavPackage--) | Initializes a new instance of the WavPackage class. |
+| [WavPackage()](#WavPackage--) | Initializes a new instance of the
+WavPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAudioFormat()](#getAudioFormat--) | Gets the audio format. |
-| [getNumberOfChannels()](#getNumberOfChannels--) | Gets the number of channels. |
-| [getSampleRate()](#getSampleRate--) | Gets the sample rate. |
-| [getByteRate()](#getByteRate--) | Gets the byte rate. |
-| [getBlockAlign()](#getBlockAlign--) | Gets the block align. |
-| [getBitsPerSample()](#getBitsPerSample--) | Gets the bits per sample value. |
+| [getAudioFormat()](#getAudioFormat--) | Gets the audio format.
+ |
+| [getNumberOfChannels()](#getNumberOfChannels--) | Gets the number of channels.
+ |
+| [getSampleRate()](#getSampleRate--) | Gets the sample rate.
+ |
+| [getByteRate()](#getByteRate--) | Gets the byte rate.
+ |
+| [getBlockAlign()](#getBlockAlign--) | Gets the block align.
+ |
+| [getBitsPerSample()](#getBitsPerSample--) | Gets the bits per sample value.
+ |
### WavPackage() {#WavPackage--}
```
public WavPackage()
```
-Initializes a new instance of the WavPackage class.
+Initializes a new instance of the
+WavPackage
+ class.
+
### getAudioFormat() {#getAudioFormat--}
```
@@ -62,10 +76,13 @@ public final int getAudioFormat()
```
-Gets the audio format. PCM = 1 (i.e. Linear quantization). Values other than 1 indicate some form of compression.
+Gets the audio format.
+PCM = 1 (i.e. Linear quantization). Values other than 1 indicate some form of compression.
+
**Returns:**
int - The audio format.
+
### getNumberOfChannels() {#getNumberOfChannels--}
```
public final int getNumberOfChannels()
@@ -74,8 +91,10 @@ public final int getNumberOfChannels()
Gets the number of channels.
+
**Returns:**
int - The number of channels.
+
### getSampleRate() {#getSampleRate--}
```
public final int getSampleRate()
@@ -84,8 +103,10 @@ public final int getSampleRate()
Gets the sample rate.
+
**Returns:**
int - The sample rate.
+
### getByteRate() {#getByteRate--}
```
public final int getByteRate()
@@ -94,8 +115,10 @@ public final int getByteRate()
Gets the byte rate.
+
**Returns:**
int - The byte rate.
+
### getBlockAlign() {#getBlockAlign--}
```
public final int getBlockAlign()
@@ -104,8 +127,10 @@ public final int getBlockAlign()
Gets the block align.
+
**Returns:**
int - The block align.
+
### getBitsPerSample() {#getBitsPerSample--}
```
public final int getBitsPerSample()
@@ -114,5 +139,7 @@ public final int getBitsPerSample()
Gets the bits per sample value.
+
**Returns:**
int - The bits per sample value.
+
diff --git a/english/java/com.groupdocs.metadata.core/wavrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/wavrootpackage/_index.md
index 37afa6a29d..ff16c164d1 100644
--- a/english/java/com.groupdocs.metadata.core/wavrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wavrootpackage/_index.md
@@ -18,10 +18,10 @@ public class WavRootPackage extends RootMetadataPackage implements IXmp
Represents the root package allowing working with metadata in a WAV audio.
This code sample shows how to extract technical audio information from a WAV file.
-
-> ```
+>
+> ````
> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputWav)) {
> WavRootPackage root = metadata.getRootPackageGeneric();
> if (root.getWavPackage() != null) {
@@ -35,15 +35,21 @@ This code sample shows how to extract technical audio information from a WAV fil
> }
>
> ```
-> ```
+> ````
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getWavPackage()](#getWavPackage--) | Gets the WAV native metadata package. |
-| [getRiffInfoPackage()](#getRiffInfoPackage--) | Gets the package containing RIFF Info tags. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getWavPackage()](#getWavPackage--) | Gets the WAV native metadata package.
+ |
+| [getRiffInfoPackage()](#getRiffInfoPackage--) | Gets the package containing RIFF Info tags.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -52,15 +58,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -69,17 +78,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getWavPackage() {#getWavPackage--}
```
@@ -89,8 +101,10 @@ public final WavPackage getWavPackage()
Gets the WAV native metadata package.
+
**Returns:**
[WavPackage](../../com.groupdocs.metadata.core/wavpackage) - The WAV native metadata package.
+
### getRiffInfoPackage() {#getRiffInfoPackage--}
```
public final RiffInfoPackage getRiffInfoPackage()
@@ -99,5 +113,7 @@ public final RiffInfoPackage getRiffInfoPackage()
Gets the package containing RIFF Info tags.
+
**Returns:**
[RiffInfoPackage](../../com.groupdocs.metadata.core/riffinfopackage) - The package containing RIFF Info tags.
+
diff --git a/english/java/com.groupdocs.metadata.core/webprootpackage/_index.md b/english/java/com.groupdocs.metadata.core/webprootpackage/_index.md
index a1dfdf71a9..45b8130fde 100644
--- a/english/java/com.groupdocs.metadata.core/webprootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/webprootpackage/_index.md
@@ -17,22 +17,27 @@ public class WebPRootPackage extends ImageRootPackage implements IXmp, IExif
Represents the root package allowing working with metadata in a WEBP image.
+
**Learn more**
- * [Working with EXIF metadata][]
- * [Working with XMP metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Methods
| Method | Description |
| --- | --- |
-| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package. |
-| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package. |
-| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package. |
-| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package. |
+| [getXmpPackage()](#getXmpPackage--) | Gets the XMP metadata package.
+ |
+| [setXmpPackage(XmpPacketWrapper value)](#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-) | Sets the XMP metadata package.
+ |
+| [getExifPackage()](#getExifPackage--) | Gets the EXIF metadata package.
+ |
+| [setExifPackage(ExifPackage value)](#setExifPackage-com.groupdocs.metadata.core.ExifPackage-) | Sets the EXIF metadata package.
+ |
### getXmpPackage() {#getXmpPackage--}
```
public final XmpPacketWrapper getXmpPackage()
@@ -41,15 +46,18 @@ public final XmpPacketWrapper getXmpPackage()
Gets the XMP metadata package.
+
**Returns:**
[XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) - The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
### setXmpPackage(XmpPacketWrapper value) {#setXmpPackage-com.groupdocs.metadata.core.XmpPacketWrapper-}
```
public final void setXmpPackage(XmpPacketWrapper value)
@@ -58,17 +66,20 @@ public final void setXmpPackage(XmpPacketWrapper value)
Sets the XMP metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpPacketWrapper](../../com.groupdocs.metadata.core/xmppacketwrapper) | The XMP metadata package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata |
+ |
### getExifPackage() {#getExifPackage--}
```
@@ -78,15 +89,18 @@ public final ExifPackage getExifPackage()
Gets the EXIF metadata package.
+
**Returns:**
[ExifPackage](../../com.groupdocs.metadata.core/exifpackage) - The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata
### setExifPackage(ExifPackage value) {#setExifPackage-com.groupdocs.metadata.core.ExifPackage-}
```
public final void setExifPackage(ExifPackage value)
@@ -95,15 +109,18 @@ public final void setExifPackage(ExifPackage value)
Sets the EXIF metadata package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [ExifPackage](../../com.groupdocs.metadata.core/exifpackage) | The EXIF metadata package.
+
**Learn more**
- * [Working with EXIF metadata][]
+* [Working with EXIF metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata)
+
-[Working with EXIF metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+EXIF+metadata |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/wmfrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/wmfrootpackage/_index.md
index 1e3794eab4..12512c3e76 100644
--- a/english/java/com.groupdocs.metadata.core/wmfrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wmfrootpackage/_index.md
@@ -13,3 +13,4 @@ public class WmfRootPackage extends ImageRootPackage
```
Represents the root package intended to work with metadata in a WMF image.
+
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingcomment/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingcomment/_index.md
index 80caaea1a8..59da99baf7 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingcomment/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingcomment/_index.md
@@ -14,25 +14,36 @@ public final class WordProcessingComment extends CustomPackage
Represents a comment in a word processing document.
+
**Learn more**
- * [Working with metadata in WordProcessing documents][]
+* [Working with metadata in WordProcessing documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents)
+
+
-[Working with metadata in WordProcessing documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents
## Methods
| Method | Description |
| --- | --- |
-| [getId()](#getId--) | Gets the comment id. |
-| [getAuthor()](#getAuthor--) | Gets the author. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the author. |
-| [getInitials()](#getInitials--) | Gets the author's initials. |
-| [setInitials(String value)](#setInitials-java.lang.String-) | Sets the author's initials. |
-| [getText()](#getText--) | Gets the text of the comment. |
-| [setText(String value)](#setText-java.lang.String-) | Sets the text of the comment. |
-| [getCreatedDate()](#getCreatedDate--) | Gets the date the comment was created. |
-| [setCreatedDate(Date value)](#setCreatedDate-java.util.Date-) | Sets the date the comment was created. |
+| [getId()](#getId--) | Gets the comment id.
+ |
+| [getAuthor()](#getAuthor--) | Gets the author.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the author.
+ |
+| [getInitials()](#getInitials--) | Gets the author's initials.
+ |
+| [setInitials(String value)](#setInitials-java.lang.String-) | Sets the author's initials.
+ |
+| [getText()](#getText--) | Gets the text of the comment.
+ |
+| [setText(String value)](#setText-java.lang.String-) | Sets the text of the comment.
+ |
+| [getCreatedDate()](#getCreatedDate--) | Gets the date the comment was created.
+ |
+| [setCreatedDate(Date value)](#setCreatedDate-java.util.Date-) | Sets the date the comment was created.
+ |
### getId() {#getId--}
```
public final int getId()
@@ -41,8 +52,10 @@ public final int getId()
Gets the comment id.
+
**Returns:**
int - The comment identifier.
+
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -51,8 +64,10 @@ public final String getAuthor()
Gets the author.
+
**Returns:**
java.lang.String - The author.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
@@ -61,10 +76,12 @@ public final void setAuthor(String value)
Sets the author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author. |
+| value | java.lang.String | The author.
+ |
### getInitials() {#getInitials--}
```
@@ -74,8 +91,10 @@ public final String getInitials()
Gets the author's initials.
+
**Returns:**
java.lang.String - The initials of the author.
+
### setInitials(String value) {#setInitials-java.lang.String-}
```
public final void setInitials(String value)
@@ -84,10 +103,12 @@ public final void setInitials(String value)
Sets the author's initials.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The initials of the author. |
+| value | java.lang.String | The initials of the author.
+ |
### getText() {#getText--}
```
@@ -97,8 +118,10 @@ public final String getText()
Gets the text of the comment.
+
**Returns:**
java.lang.String - The text of the comment.
+
### setText(String value) {#setText-java.lang.String-}
```
public final void setText(String value)
@@ -107,10 +130,12 @@ public final void setText(String value)
Sets the text of the comment.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The text of the comment. |
+| value | java.lang.String | The text of the comment.
+ |
### getCreatedDate() {#getCreatedDate--}
```
@@ -120,8 +145,10 @@ public final Date getCreatedDate()
Gets the date the comment was created.
+
**Returns:**
java.util.Date - The date the comment was created.
+
### setCreatedDate(Date value) {#setCreatedDate-java.util.Date-}
```
public final void setCreatedDate(Date value)
@@ -130,8 +157,10 @@ public final void setCreatedDate(Date value)
Sets the date the comment was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date the comment was created. |
+| value | java.util.Date | The date the comment was created.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingfield/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingfield/_index.md
index ab64f06a93..c80f816d1a 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingfield/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingfield/_index.md
@@ -14,18 +14,22 @@ public class WordProcessingField extends CustomPackage
Represents a field in a word processing document.
+
**Learn more**
- * [Working with metadata in WordProcessing documents][]
+* [Working with metadata in WordProcessing documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents)
+
+
-[Working with metadata in WordProcessing documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents
## Methods
| Method | Description |
| --- | --- |
-| [getCode()](#getCode--) | Gets the field code. |
-| [getResult()](#getResult--) | Gets the field result. |
+| [getCode()](#getCode--) | Gets the field code.
+ |
+| [getResult()](#getResult--) | Gets the field result.
+ |
### getCode() {#getCode--}
```
public final String getCode()
@@ -34,8 +38,10 @@ public final String getCode()
Gets the field code.
+
**Returns:**
java.lang.String - The field code.
+
### getResult() {#getResult--}
```
public final String getResult()
@@ -44,5 +50,7 @@ public final String getResult()
Gets the field result.
+
**Returns:**
java.lang.String - The field result.
+
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingformat/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingformat/_index.md
index 9b5e542c06..bd24e38181 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingformat/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingformat/_index.md
@@ -16,18 +16,27 @@ public enum WordProcessingFormat extends Enum implements I
```
Defines various word processing document subformats.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unknown](#Unknown) | The format is not recognized. |
-| [Doc](#Doc) | Represents the .DOC Word format. |
-| [Docm](#Docm) | Represents the .DOCM Word format. |
-| [Docx](#Docx) | Represents the .DOCX Word format. |
-| [Dot](#Dot) | Represents the .DOT Word format. |
-| [Dotx](#Dotx) | Represents the .DOTX Word format. |
-| [Dotm](#Dotm) | Represents the .DOTM Word format. |
-| [Odt](#Odt) | Represents the .ODT format. |
+| [Unknown](#Unknown) | The format is not recognized.
+ |
+| [Doc](#Doc) | Represents the .DOC Word format.
+ |
+| [Docm](#Docm) | Represents the .DOCM Word format.
+ |
+| [Docx](#Docx) | Represents the .DOCX Word format.
+ |
+| [Dot](#Dot) | Represents the .DOT Word format.
+ |
+| [Dotx](#Dotx) | Represents the .DOTX Word format.
+ |
+| [Dotm](#Dotm) | Represents the .DOTM Word format.
+ |
+| [Odt](#Odt) | Represents the .ODT format.
+ |
## Methods
| Method | Description |
@@ -49,27 +58,36 @@ public static final WordProcessingFormat Unknown
The format is not recognized.
+
### Doc {#Doc}
```
public static final WordProcessingFormat Doc
```
-Represents the .DOC Word format. Files with .doc extension represent documents generated by Microsoft Word or other word processing applications in binary file format. The extension was initially used for plain text documentation on several different operating systems. It can contain several different types of data such as images, formatted as well as plain text, graphs, charts, embedded objects, links, pages, page formatting, print settings and a lot others. Learn more about this file format [here][] .
+Represents the .DOC Word format.
+Files with .doc extension represent documents generated by Microsoft Word or other word processing applications in binary file format.
+The extension was initially used for plain text documentation on several different operating systems. It can contain several different types of data such as images,
+formatted as well as plain text, graphs, charts, embedded objects, links, pages, page formatting, print settings and a lot others.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/doc/)
+.
-[here]: https://wiki.fileformat.com/word-processing/doc/
-
### Docm {#Docm}
```
public static final WordProcessingFormat Docm
```
-Represents the .DOCM Word format. DOCM files are Microsoft Word 2007 or higher generated documents with the ability to run macros. It is similar to DOCX file format but the ability to run macros makes it different from DOCX. Like DOCX, DOCM files can be store text, images, tables, shapes, charts and other contents. Learn more about this file format [here][] .
-
+Represents the .DOCM Word format.
+DOCM files are Microsoft Word 2007 or higher generated documents with the ability to run macros.
+It is similar to DOCX file format but the ability to run macros makes it different from DOCX. Like DOCX, DOCM files can be store text, images,
+tables, shapes, charts and other contents.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/docm/)
+.
-[here]: https://wiki.fileformat.com/word-processing/docm/
### Docx {#Docx}
```
@@ -77,21 +95,29 @@ public static final WordProcessingFormat Docx
```
-Represents the .DOCX Word format. DOCX is a well-known format for Microsoft Word documents. Introduced from 2007 with the release of Microsoft Office 2007, the structure of this new Document format was changed from plain binary to a combination of XML and binary files. Docx files can be opened with Word 2007 and lateral versions but not with the earlier versions of MS Word which support DOC file extensions. Learn more about this file format [here][] .
+Represents the .DOCX Word format.
+DOCX is a well-known format for Microsoft Word documents.
+Introduced from 2007 with the release of Microsoft Office 2007, the structure of this new Document format was changed from
+plain binary to a combination of XML and binary files.
+Docx files can be opened with Word 2007 and lateral versions but not with the earlier versions of MS Word which support DOC file extensions.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/docx/)
+.
-[here]: https://wiki.fileformat.com/word-processing/docx/
-
### Dot {#Dot}
```
public static final WordProcessingFormat Dot
```
-Represents the .DOT Word format. Files with .DOT extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOC or DOCX files. A template file is created in order to have specific user settings that should be applied to subsequent files created from these. Learn more about this file format [here][] .
-
+Represents the .DOT Word format.
+Files with .DOT extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOC or DOCX files.
+A template file is created in order to have specific user settings that should be applied to subsequent files created from these.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/dot/)
+.
-[here]: https://wiki.fileformat.com/word-processing/dot/
### Dotx {#Dotx}
```
@@ -99,10 +125,13 @@ public static final WordProcessingFormat Dotx
```
-Represents the .DOTX Word format. Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files. A template file is created in order to have specific user settings that should be applied to subsequent flies created from these. Learn more about this file format [here][] .
-
+Represents the .DOTX Word format.
+Files with DOTX extension are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files.
+A template file is created in order to have specific user settings that should be applied to subsequent flies created from these.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/dotx/)
+.
-[here]: https://wiki.fileformat.com/word-processing/dotx/
### Dotm {#Dotm}
```
@@ -110,21 +139,27 @@ public static final WordProcessingFormat Dotm
```
-Represents the .DOTM Word format. A file with DOTM extension represents template file created with Microsoft Word 2007 or higher. It is similar to the popular DOCX file format other than it retains the user defined settings for reuse in case of creating new documents. Learn more about this file format [here][] .
+Represents the .DOTM Word format.
+A file with DOTM extension represents template file created with Microsoft Word 2007 or higher.
+It is similar to the popular DOCX file format other than it retains the user defined settings for reuse in case of creating new documents.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/dotm/)
+.
-[here]: https://wiki.fileformat.com/word-processing/dotm/
-
### Odt {#Odt}
```
public static final WordProcessingFormat Odt
```
-Represents the .ODT format. ODT files are type of documents created with word processing applications that are based on OpenDocument Text File format. These are created with word processor applications such as free OpenOffice Writer and can hold content such as text, images, objects and styles. Learn more about this file format [here][] .
-
+Represents the .ODT format.
+ODT files are type of documents created with word processing applications that are based on OpenDocument Text File format.
+These are created with word processor applications such as free OpenOffice Writer and can hold content such as text, images, objects and styles.
+Learn more about this file format
+[here](../https://wiki.fileformat.com/word-processing/odt/)
+.
-[here]: https://wiki.fileformat.com/word-processing/odt/
### values() {#values--}
```
@@ -184,6 +219,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -194,6 +230,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -209,6 +246,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -224,6 +262,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -234,5 +273,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessinginspectionpackage/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessinginspectionpackage/_index.md
index 3468bc0cdd..3960b8bc9f 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessinginspectionpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessinginspectionpackage/_index.md
@@ -14,28 +14,42 @@ public final class WordProcessingInspectionPackage extends CustomPackage
Contains information about document parts that can be considered as metadata in some cases.
+
**Learn more**
- * [Working with metadata in WordProcessing documents][]
+* [Working with metadata in WordProcessing documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents)
+
+
-[Working with metadata in WordProcessing documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents
## Methods
| Method | Description |
| --- | --- |
-| [getComments()](#getComments--) | Gets an array of the user comments. |
-| [getFields()](#getFields--) | Gets an array of document fields. |
-| [getHiddenText()](#getHiddenText--) | Gets an array of hidden text fragments extracted from the document. |
-| [getDigitalSignatures()](#getDigitalSignatures--) | Gets an array of digital signatures presented in the document. |
-| [getRevisions()](#getRevisions--) | Gets an array of digital signatures presented in the document. |
-| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification. |
-| [clearComments()](#clearComments--) | Removes all detected user comments from the document. |
-| [clearFields()](#clearFields--) | Removes all detected fields from the document. |
-| [clearHiddenText()](#clearHiddenText--) | Removes all hidden text fragments from the document. |
-| [acceptAllRevisions()](#acceptAllRevisions--) | Accepts all detected revisions in the document. |
-| [rejectAllRevisions()](#rejectAllRevisions--) | Rejects all detected revisions in the document. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from the package. |
+| [getComments()](#getComments--) | Gets an array of the user comments.
+ |
+| [getFields()](#getFields--) | Gets an array of document fields.
+ |
+| [getHiddenText()](#getHiddenText--) | Gets an array of hidden text fragments extracted from the document.
+ |
+| [getDigitalSignatures()](#getDigitalSignatures--) | Gets an array of digital signatures presented in the document.
+ |
+| [getRevisions()](#getRevisions--) | Gets an array of digital signatures presented in the document.
+ |
+| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification.
+ |
+| [clearComments()](#clearComments--) | Removes all detected user comments from the document.
+ |
+| [clearFields()](#clearFields--) | Removes all detected fields from the document.
+ |
+| [clearHiddenText()](#clearHiddenText--) | Removes all hidden text fragments from the document.
+ |
+| [acceptAllRevisions()](#acceptAllRevisions--) | Accepts all detected revisions in the document.
+ |
+| [rejectAllRevisions()](#rejectAllRevisions--) | Rejects all detected revisions in the document.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from the package.
+ |
### getComments() {#getComments--}
```
public final WordProcessingComment[] getComments()
@@ -44,8 +58,10 @@ public final WordProcessingComment[] getComments()
Gets an array of the user comments.
+
**Returns:**
com.groupdocs.metadata.core.WordProcessingComment[] - The user comments.
+
### getFields() {#getFields--}
```
public final WordProcessingField[] getFields()
@@ -54,8 +70,10 @@ public final WordProcessingField[] getFields()
Gets an array of document fields.
+
**Returns:**
com.groupdocs.metadata.core.WordProcessingField[] - An array of document fields.
+
### getHiddenText() {#getHiddenText--}
```
public final String[] getHiddenText()
@@ -64,8 +82,10 @@ public final String[] getHiddenText()
Gets an array of hidden text fragments extracted from the document.
+
**Returns:**
java.lang.String[] - An array of hidden text fragments extracted from the document.
+
### getDigitalSignatures() {#getDigitalSignatures--}
```
public final DigitalSignature[] getDigitalSignatures()
@@ -74,8 +94,10 @@ public final DigitalSignature[] getDigitalSignatures()
Gets an array of digital signatures presented in the document.
+
**Returns:**
com.groupdocs.metadata.core.DigitalSignature[] - The digital signatures.
+
### getRevisions() {#getRevisions--}
```
public final WordProcessingRevision[] getRevisions()
@@ -84,8 +106,10 @@ public final WordProcessingRevision[] getRevisions()
Gets an array of digital signatures presented in the document.
+
**Returns:**
com.groupdocs.metadata.core.WordProcessingRevision[] - The digital signatures.
+
### removeProperties(Specification specification) {#removeProperties-com.groupdocs.metadata.search.Specification-}
```
public int removeProperties(Specification specification)
@@ -94,13 +118,16 @@ public int removeProperties(Specification specification)
Removes metadata properties satisfying a specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
**Returns:**
int - The number of affected properties.
+
### clearComments() {#clearComments--}
```
public final void clearComments()
@@ -109,6 +136,7 @@ public final void clearComments()
Removes all detected user comments from the document.
+
### clearFields() {#clearFields--}
```
public final void clearFields()
@@ -117,6 +145,7 @@ public final void clearFields()
Removes all detected fields from the document.
+
### clearHiddenText() {#clearHiddenText--}
```
public final void clearHiddenText()
@@ -125,6 +154,7 @@ public final void clearHiddenText()
Removes all hidden text fragments from the document.
+
### acceptAllRevisions() {#acceptAllRevisions--}
```
public final void acceptAllRevisions()
@@ -133,6 +163,7 @@ public final void acceptAllRevisions()
Accepts all detected revisions in the document.
+
### rejectAllRevisions() {#rejectAllRevisions--}
```
public final void rejectAllRevisions()
@@ -141,13 +172,17 @@ public final void rejectAllRevisions()
Rejects all detected revisions in the document.
+
### sanitize() {#sanitize--}
```
public int sanitize()
```
-Removes writable metadata properties from the package. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from the package.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingpackage/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingpackage/_index.md
index 668f70c842..d1abeb19f4 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingpackage/_index.md
@@ -14,15 +14,18 @@ public class WordProcessingPackage extends DocumentPackage
Represents a native metadata package in a word processing document.
+
**Learn more**
- * [Working with metadata in WordProcessing documents][]
+* [Working with metadata in WordProcessing documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents)
-This code sample shows how to update built-in metadata properties in a WordProcessing document.
+
+This code sample shows how to update built-in metadata properties in a WordProcessing document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputDoc)) {
> WordProcessingRootPackage root = metadata.getRootPackageGeneric();
> root.getDocumentProperties().setAuthor("test author");
@@ -35,62 +38,109 @@ This code sample shows how to update built-in metadata properties in a WordProce
> }
>
> ```
-> ```
+> ````
-[Working with metadata in WordProcessing documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the document's author. |
-| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document's author. |
-| [getBytesInDocument()](#getBytesInDocument--) | Gets an estimate of the number of bytes in the document. |
-| [getCategory()](#getCategory--) | Gets the category. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category. |
-| [getComments()](#getComments--) | Gets the comments. |
-| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments. |
-| [getCompany()](#getCompany--) | Gets the company. |
-| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company. |
-| [getContentStatus()](#getContentStatus--) | Gets the content status. |
-| [setContentStatus(String value)](#setContentStatus-java.lang.String-) | Sets the content status. |
-| [getContentType()](#getContentType--) | Gets the content type of the document. |
-| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type of the document. |
-| [getCreatedTime()](#getCreatedTime--) | Gets the document created date. |
-| [setCreatedTime(Date value)](#setCreatedTime-java.util.Date-) | Sets the document created date. |
-| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base. |
-| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base. |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getSubject()](#getSubject--) | Gets the subject. |
-| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject. |
-| [getTemplate()](#getTemplate--) | Gets the template. |
-| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets the template. |
-| [getLastPrintedDate()](#getLastPrintedDate--) | Gets the last printed date. |
-| [setLastPrintedDate(Date value)](#setLastPrintedDate-java.util.Date-) | Sets the last printed date. |
-| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last author. |
-| [setLastSavedBy(String value)](#setLastSavedBy-java.lang.String-) | Sets the name of the last author. |
-| [getLastSavedTime()](#getLastSavedTime--) | Gets the time of the last save. |
-| [setLastSavedTime(Date value)](#setLastSavedTime-java.util.Date-) | Sets the time of the last save. |
-| [getManager()](#getManager--) | Gets the manager. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets the manager. |
-| [getNameOfApplication()](#getNameOfApplication--) | Gets the name of the application. |
-| [getRevisionNumber()](#getRevisionNumber--) | Gets the revision number. |
-| [setRevisionNumber(Integer value)](#setRevisionNumber-java.lang.Integer-) | Sets the revision number. |
-| [getVersion()](#getVersion--) | Gets the version number of the application that created the document. |
-| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the total editing time in minutes. |
-| [setTotalEditingTime(Integer value)](#setTotalEditingTime-java.lang.Integer-) | Sets the total editing time in minutes. |
-| [getTitle()](#getTitle--) | Gets the title of the document. |
-| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document. |
-| [getLinksUpToDate()](#getLinksUpToDate--) | Gets a value indicating whether the hyperlinks in the document are up-to-date. |
-| [setLinksUpToDate(Boolean value)](#setLinksUpToDate-java.lang.Boolean-) | Sets a value indicating whether the hyperlinks in the document are up-to-date. |
-| [getTitlesOfParts()](#getTitlesOfParts--) | Gets the titles of document parts. |
-| [getWords()](#getWords--) | Gets an estimate of the number of words in the document. |
-| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name. |
-| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name. |
+| [getAuthor()](#getAuthor--) | Gets the document's author.
+ |
+| [setAuthor(String value)](#setAuthor-java.lang.String-) | Sets the document's author.
+ |
+| [getBytesInDocument()](#getBytesInDocument--) | Gets an estimate of the number of bytes in the document.
+ |
+| [getCategory()](#getCategory--) | Gets the category.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category.
+ |
+| [getComments()](#getComments--) | Gets the comments.
+ |
+| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments.
+ |
+| [getCompany()](#getCompany--) | Gets the company.
+ |
+| [setCompany(String value)](#setCompany-java.lang.String-) | Sets the company.
+ |
+| [getContentStatus()](#getContentStatus--) | Gets the content status.
+ |
+| [setContentStatus(String value)](#setContentStatus-java.lang.String-) | Sets the content status.
+ |
+| [getContentType()](#getContentType--) | Gets the content type of the document.
+ |
+| [setContentType(String value)](#setContentType-java.lang.String-) | Sets the content type of the document.
+ |
+| [getCreatedTime()](#getCreatedTime--) | Gets the document created date.
+ |
+| [setCreatedTime(Date value)](#setCreatedTime-java.util.Date-) | Sets the document created date.
+ |
+| [getHyperlinkBase()](#getHyperlinkBase--) | Gets the hyperlink base.
+ |
+| [setHyperlinkBase(String value)](#setHyperlinkBase-java.lang.String-) | Sets the hyperlink base.
+ |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getSubject()](#getSubject--) | Gets the subject.
+ |
+| [setSubject(String value)](#setSubject-java.lang.String-) | Sets the subject.
+ |
+| [getTemplate()](#getTemplate--) | Gets the template.
+ |
+| [setTemplate(String value)](#setTemplate-java.lang.String-) | Sets the template.
+ |
+| [getLastPrintedDate()](#getLastPrintedDate--) | Gets the last printed date.
+ |
+| [setLastPrintedDate(Date value)](#setLastPrintedDate-java.util.Date-) | Sets the last printed date.
+ |
+| [getLastSavedBy()](#getLastSavedBy--) | Gets the name of the last author.
+ |
+| [setLastSavedBy(String value)](#setLastSavedBy-java.lang.String-) | Sets the name of the last author.
+ |
+| [getLastSavedTime()](#getLastSavedTime--) | Gets the time of the last save.
+ |
+| [setLastSavedTime(Date value)](#setLastSavedTime-java.util.Date-) | Sets the time of the last save.
+ |
+| [getManager()](#getManager--) | Gets the manager.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets the manager.
+ |
+| [getNameOfApplication()](#getNameOfApplication--) | Gets the name of the application.
+ |
+| [getRevisionNumber()](#getRevisionNumber--) | Gets the revision number.
+ |
+| [setRevisionNumber(Integer value)](#setRevisionNumber-java.lang.Integer-) | Sets the revision number.
+ |
+| [getVersion()](#getVersion--) | Gets the version number of the application that created the document.
+ |
+| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the total editing time in minutes.
+ |
+| [setTotalEditingTime(Integer value)](#setTotalEditingTime-java.lang.Integer-) | Sets the total editing time in minutes.
+ |
+| [getTitle()](#getTitle--) | Gets the title of the document.
+ |
+| [setTitle(String value)](#setTitle-java.lang.String-) | Sets the title of the document.
+ |
+| [getLinksUpToDate()](#getLinksUpToDate--) | Gets a value indicating whether the hyperlinks in the document are up-to-date.
+ |
+| [setLinksUpToDate(Boolean value)](#setLinksUpToDate-java.lang.Boolean-) | Sets a value indicating whether the hyperlinks in the document are up-to-date.
+ |
+| [getTitlesOfParts()](#getTitlesOfParts--) | Gets the titles of document parts.
+ |
+| [getWords()](#getWords--) | Gets an estimate of the number of words in the document.
+ |
+| [set(String propertyName, String value)](#set-java.lang.String-java.lang.String-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, boolean value)](#set-java.lang.String-boolean-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, Date value)](#set-java.lang.String-java.util.Date-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, int value)](#set-java.lang.String-int-) | Adds or replaces the metadata property with the specified name.
+ |
+| [set(String propertyName, double value)](#set-java.lang.String-double-) | Adds or replaces the metadata property with the specified name.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -99,8 +149,10 @@ public final String getAuthor()
Gets the document's author.
+
**Returns:**
java.lang.String - The author.
+
### setAuthor(String value) {#setAuthor-java.lang.String-}
```
public final void setAuthor(String value)
@@ -109,10 +161,12 @@ public final void setAuthor(String value)
Sets the document's author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The author. |
+| value | java.lang.String | The author.
+ |
### getBytesInDocument() {#getBytesInDocument--}
```
@@ -122,8 +176,10 @@ public final Integer getBytesInDocument()
Gets an estimate of the number of bytes in the document.
+
**Returns:**
java.lang.Integer - An estimate of the number of bytes in the document.
+
### getCategory() {#getCategory--}
```
public final String getCategory()
@@ -132,8 +188,10 @@ public final String getCategory()
Gets the category.
+
**Returns:**
java.lang.String - The category.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
@@ -142,10 +200,12 @@ public final void setCategory(String value)
Sets the category.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The category. |
+| value | java.lang.String | The category.
+ |
### getComments() {#getComments--}
```
@@ -155,8 +215,10 @@ public final String getComments()
Gets the comments.
+
**Returns:**
java.lang.String - The comments.
+
### setComments(String value) {#setComments-java.lang.String-}
```
public final void setComments(String value)
@@ -165,10 +227,12 @@ public final void setComments(String value)
Sets the comments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The comments. |
+| value | java.lang.String | The comments.
+ |
### getCompany() {#getCompany--}
```
@@ -178,8 +242,10 @@ public final String getCompany()
Gets the company.
+
**Returns:**
java.lang.String - The company.
+
### setCompany(String value) {#setCompany-java.lang.String-}
```
public final void setCompany(String value)
@@ -188,10 +254,12 @@ public final void setCompany(String value)
Sets the company.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The company. |
+| value | java.lang.String | The company.
+ |
### getContentStatus() {#getContentStatus--}
```
@@ -201,8 +269,10 @@ public final String getContentStatus()
Gets the content status.
+
**Returns:**
java.lang.String - The content status.
+
### setContentStatus(String value) {#setContentStatus-java.lang.String-}
```
public final void setContentStatus(String value)
@@ -211,10 +281,12 @@ public final void setContentStatus(String value)
Sets the content status.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The content status. |
+| value | java.lang.String | The content status.
+ |
### getContentType() {#getContentType--}
```
@@ -224,8 +296,10 @@ public final String getContentType()
Gets the content type of the document.
+
**Returns:**
java.lang.String - The type of the content.
+
### setContentType(String value) {#setContentType-java.lang.String-}
```
public final void setContentType(String value)
@@ -234,10 +308,12 @@ public final void setContentType(String value)
Sets the content type of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The type of the content. |
+| value | java.lang.String | The type of the content.
+ |
### getCreatedTime() {#getCreatedTime--}
```
@@ -247,8 +323,10 @@ public final Date getCreatedTime()
Gets the document created date.
+
**Returns:**
java.util.Date - The created time.
+
### setCreatedTime(Date value) {#setCreatedTime-java.util.Date-}
```
public final void setCreatedTime(Date value)
@@ -257,10 +335,12 @@ public final void setCreatedTime(Date value)
Sets the document created date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The created time. |
+| value | java.util.Date | The created time.
+ |
### getHyperlinkBase() {#getHyperlinkBase--}
```
@@ -270,8 +350,10 @@ public final String getHyperlinkBase()
Gets the hyperlink base.
+
**Returns:**
java.lang.String - The hyperlink base.
+
### setHyperlinkBase(String value) {#setHyperlinkBase-java.lang.String-}
```
public final void setHyperlinkBase(String value)
@@ -280,10 +362,12 @@ public final void setHyperlinkBase(String value)
Sets the hyperlink base.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The hyperlink base. |
+| value | java.lang.String | The hyperlink base.
+ |
### getKeywords() {#getKeywords--}
```
@@ -293,8 +377,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -303,10 +389,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The keywords. |
+| value | java.lang.String | The keywords.
+ |
### getSubject() {#getSubject--}
```
@@ -316,8 +404,10 @@ public final String getSubject()
Gets the subject.
+
**Returns:**
java.lang.String - The subject.
+
### setSubject(String value) {#setSubject-java.lang.String-}
```
public final void setSubject(String value)
@@ -326,10 +416,12 @@ public final void setSubject(String value)
Sets the subject.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The subject. |
+| value | java.lang.String | The subject.
+ |
### getTemplate() {#getTemplate--}
```
@@ -339,8 +431,10 @@ public final String getTemplate()
Gets the template.
+
**Returns:**
java.lang.String - The template.
+
### setTemplate(String value) {#setTemplate-java.lang.String-}
```
public final void setTemplate(String value)
@@ -349,10 +443,12 @@ public final void setTemplate(String value)
Sets the template.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The template. |
+| value | java.lang.String | The template.
+ |
### getLastPrintedDate() {#getLastPrintedDate--}
```
@@ -362,8 +458,10 @@ public final Date getLastPrintedDate()
Gets the last printed date.
+
**Returns:**
java.util.Date - The last printed date.
+
### setLastPrintedDate(Date value) {#setLastPrintedDate-java.util.Date-}
```
public final void setLastPrintedDate(Date value)
@@ -372,10 +470,12 @@ public final void setLastPrintedDate(Date value)
Sets the last printed date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The last printed date. |
+| value | java.util.Date | The last printed date.
+ |
### getLastSavedBy() {#getLastSavedBy--}
```
@@ -385,8 +485,10 @@ public final String getLastSavedBy()
Gets the name of the last author.
+
**Returns:**
java.lang.String - The name of the last author.
+
### setLastSavedBy(String value) {#setLastSavedBy-java.lang.String-}
```
public final void setLastSavedBy(String value)
@@ -395,10 +497,12 @@ public final void setLastSavedBy(String value)
Sets the name of the last author.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the last author. |
+| value | java.lang.String | The name of the last author.
+ |
### getLastSavedTime() {#getLastSavedTime--}
```
@@ -408,8 +512,10 @@ public final Date getLastSavedTime()
Gets the time of the last save.
+
**Returns:**
java.util.Date - The time of the last save.
+
### setLastSavedTime(Date value) {#setLastSavedTime-java.util.Date-}
```
public final void setLastSavedTime(Date value)
@@ -418,10 +524,12 @@ public final void setLastSavedTime(Date value)
Sets the time of the last save.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The time of the last save. |
+| value | java.util.Date | The time of the last save.
+ |
### getManager() {#getManager--}
```
@@ -431,8 +539,10 @@ public final String getManager()
Gets the manager.
+
**Returns:**
java.lang.String - The manager.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
@@ -441,10 +551,12 @@ public final void setManager(String value)
Sets the manager.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The manager. |
+| value | java.lang.String | The manager.
+ |
### getNameOfApplication() {#getNameOfApplication--}
```
@@ -454,8 +566,10 @@ public final String getNameOfApplication()
Gets the name of the application.
+
**Returns:**
java.lang.String - The name of the application.
+
### getRevisionNumber() {#getRevisionNumber--}
```
public final Integer getRevisionNumber()
@@ -464,8 +578,10 @@ public final Integer getRevisionNumber()
Gets the revision number.
+
**Returns:**
java.lang.Integer - The revision number.
+
### setRevisionNumber(Integer value) {#setRevisionNumber-java.lang.Integer-}
```
public final void setRevisionNumber(Integer value)
@@ -474,10 +590,12 @@ public final void setRevisionNumber(Integer value)
Sets the revision number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The revision number. |
+| value | java.lang.Integer | The revision number.
+ |
### getVersion() {#getVersion--}
```
@@ -487,12 +605,20 @@ public final Integer getVersion()
Gets the version number of the application that created the document.
+
**Returns:**
java.lang.Integer - The version number of the application that created the document.
---------------------
+
+
+*** ** * ** ***
+
+When a document was created by Microsoft Word, then high 16 bit represent
+the major version and low 16 bit represent the build number.
+
+
+
-When a document was created by Microsoft Word, then high 16 bit represent the major version and low 16 bit represent the build number.
### getTotalEditingTime() {#getTotalEditingTime--}
```
public final Integer getTotalEditingTime()
@@ -501,8 +627,10 @@ public final Integer getTotalEditingTime()
Gets the total editing time in minutes.
+
**Returns:**
java.lang.Integer - The total editing time in minutes.
+
### setTotalEditingTime(Integer value) {#setTotalEditingTime-java.lang.Integer-}
```
public final void setTotalEditingTime(Integer value)
@@ -511,10 +639,12 @@ public final void setTotalEditingTime(Integer value)
Sets the total editing time in minutes.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The total editing time in minutes. |
+| value | java.lang.Integer | The total editing time in minutes.
+ |
### getTitle() {#getTitle--}
```
@@ -524,8 +654,10 @@ public final String getTitle()
Gets the title of the document.
+
**Returns:**
java.lang.String - The title of the document.
+
### setTitle(String value) {#setTitle-java.lang.String-}
```
public final void setTitle(String value)
@@ -534,10 +666,12 @@ public final void setTitle(String value)
Sets the title of the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The title of the document. |
+| value | java.lang.String | The title of the document.
+ |
### getLinksUpToDate() {#getLinksUpToDate--}
```
@@ -547,8 +681,10 @@ public final Boolean getLinksUpToDate()
Gets a value indicating whether the hyperlinks in the document are up-to-date.
+
**Returns:**
java.lang.Boolean - A value indicating whether the hyperlinks in the document are up-to-date.
+
### setLinksUpToDate(Boolean value) {#setLinksUpToDate-java.lang.Boolean-}
```
public final void setLinksUpToDate(Boolean value)
@@ -557,10 +693,12 @@ public final void setLinksUpToDate(Boolean value)
Sets a value indicating whether the hyperlinks in the document are up-to-date.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | A value indicating whether the hyperlinks in the document are up-to-date. |
+| value | java.lang.Boolean | A value indicating whether the hyperlinks in the document are up-to-date.
+ |
### getTitlesOfParts() {#getTitlesOfParts--}
```
@@ -570,8 +708,10 @@ public final String[] getTitlesOfParts()
Gets the titles of document parts. Read-only.
+
**Returns:**
java.lang.String[] - The titles of document parts.
+
### getWords() {#getWords--}
```
public final Integer getWords()
@@ -580,8 +720,10 @@ public final Integer getWords()
Gets an estimate of the number of words in the document.
+
**Returns:**
java.lang.Integer - The number of words in the document.
+
### set(String propertyName, String value) {#set-java.lang.String-java.lang.String-}
```
public final void set(String propertyName, String value)
@@ -590,11 +732,14 @@ public final void set(String propertyName, String value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.lang.String | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.lang.String | The property value.
+ |
### set(String propertyName, boolean value) {#set-java.lang.String-boolean-}
```
@@ -604,11 +749,14 @@ public final void set(String propertyName, boolean value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | boolean | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | boolean | The property value.
+ |
### set(String propertyName, Date value) {#set-java.lang.String-java.util.Date-}
```
@@ -618,11 +766,14 @@ public final void set(String propertyName, Date value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | java.util.Date | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | java.util.Date | The property value.
+ |
### set(String propertyName, int value) {#set-java.lang.String-int-}
```
@@ -632,11 +783,14 @@ public final void set(String propertyName, int value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | int | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | int | The property value.
+ |
### set(String propertyName, double value) {#set-java.lang.String-double-}
```
@@ -646,9 +800,12 @@ public final void set(String propertyName, double value)
Adds or replaces the metadata property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The property name. |
-| value | double | The property value. |
+| propertyName | java.lang.String | The property name.
+ |
+| value | double | The property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingrevision/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingrevision/_index.md
index a83c00bdb0..e35beddc8b 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingrevision/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingrevision/_index.md
@@ -14,19 +14,24 @@ public final class WordProcessingRevision extends CustomPackage
Represents a revision (tracked change) in a document.
+
**Learn more**
- * [Working with metadata in WordProcessing documents][]
+* [Working with metadata in WordProcessing documents](../https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents)
+
+
-[Working with metadata in WordProcessing documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents
## Methods
| Method | Description |
| --- | --- |
-| [getAuthor()](#getAuthor--) | Gets the author of the revision. |
-| [getDateTime()](#getDateTime--) | Gets the date/time of the revision. |
-| [getRevisionType()](#getRevisionType--) | Gets the type of the revision. |
+| [getAuthor()](#getAuthor--) | Gets the author of the revision.
+ |
+| [getDateTime()](#getDateTime--) | Gets the date/time of the revision.
+ |
+| [getRevisionType()](#getRevisionType--) | Gets the type of the revision.
+ |
### getAuthor() {#getAuthor--}
```
public final String getAuthor()
@@ -35,8 +40,10 @@ public final String getAuthor()
Gets the author of the revision.
+
**Returns:**
java.lang.String - The author of the revision.
+
### getDateTime() {#getDateTime--}
```
public final Date getDateTime()
@@ -45,8 +52,10 @@ public final Date getDateTime()
Gets the date/time of the revision.
+
**Returns:**
java.util.Date - The date/time of the revision.
+
### getRevisionType() {#getRevisionType--}
```
public final WordProcessingRevisionType getRevisionType()
@@ -55,5 +64,7 @@ public final WordProcessingRevisionType getRevisionType()
Gets the type of the revision.
+
**Returns:**
[WordProcessingRevisionType](../../com.groupdocs.metadata.core/wordprocessingrevisiontype) - The type of the revision.
+
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingrevisiontype/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingrevisiontype/_index.md
index d156a24198..1002cce068 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingrevisiontype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingrevisiontype/_index.md
@@ -16,15 +16,21 @@ public enum WordProcessingRevisionType extends Enum
```
Specifies the type of the change being tracked by a revision.
+
## Fields
| Field | Description |
| --- | --- |
-| [Insertion](#Insertion) | New content was inserted into the document. |
-| [Deletion](#Deletion) | Content was removed from the document. |
-| [FormatChange](#FormatChange) | Change of formatting was applied to the parent node. |
-| [StyleDefinitionChange](#StyleDefinitionChange) | Change of formatting was applied to the parent style. |
-| [Moving](#Moving) | Content was moved in the document. |
+| [Insertion](#Insertion) | New content was inserted into the document.
+ |
+| [Deletion](#Deletion) | Content was removed from the document.
+ |
+| [FormatChange](#FormatChange) | Change of formatting was applied to the parent node.
+ |
+| [StyleDefinitionChange](#StyleDefinitionChange) | Change of formatting was applied to the parent style.
+ |
+| [Moving](#Moving) | Content was moved in the document.
+ |
## Methods
| Method | Description |
@@ -46,6 +52,7 @@ public static final WordProcessingRevisionType Insertion
New content was inserted into the document.
+
### Deletion {#Deletion}
```
public static final WordProcessingRevisionType Deletion
@@ -54,6 +61,7 @@ public static final WordProcessingRevisionType Deletion
Content was removed from the document.
+
### FormatChange {#FormatChange}
```
public static final WordProcessingRevisionType FormatChange
@@ -62,6 +70,7 @@ public static final WordProcessingRevisionType FormatChange
Change of formatting was applied to the parent node.
+
### StyleDefinitionChange {#StyleDefinitionChange}
```
public static final WordProcessingRevisionType StyleDefinitionChange
@@ -70,6 +79,7 @@ public static final WordProcessingRevisionType StyleDefinitionChange
Change of formatting was applied to the parent style.
+
### Moving {#Moving}
```
public static final WordProcessingRevisionType Moving
@@ -78,6 +88,7 @@ public static final WordProcessingRevisionType Moving
Content was moved in the document.
+
### values() {#values--}
```
public static WordProcessingRevisionType[] values()
@@ -136,6 +147,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -146,6 +158,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +174,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -176,6 +190,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -186,5 +201,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingrootpackage/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingrootpackage/_index.md
index 8bc5f2b242..05ef529fd8 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingrootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingrootpackage/_index.md
@@ -17,15 +17,18 @@ public class WordProcessingRootPackage extends DocumentRootPackage
+This code sample demonstrates how to read built-in metadata properties of a WordProcessing document.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputDocx)) {
> WordProcessingRootPackage root = metadata.getRootPackageGeneric();
> System.out.println(root.getDocumentProperties().getAuthor());
@@ -37,19 +40,23 @@ This code sample demonstrates how to read built-in metadata properties of a Word
> }
>
> ```
-> ```
+> ````
-[Working with metadata in WordProcessing documents]: https://docs.groupdocs.com/display/metadatajava/Working+with+metadata+in+Word+Processing+documents
## Methods
| Method | Description |
| --- | --- |
-| [getWordProcessingType()](#getWordProcessingType--) | Gets the file type metadata package. |
-| [getDublinCorePackage()](#getDublinCorePackage--) | Gets the Dublin Core metadata package extracted from the document. |
-| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document. |
-| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package. |
-| [updateDocumentStatistics()](#updateDocumentStatistics--) | Recalculates count of pages, paragraphs, words, lines, characters in the document and updates appropriate metadata packages. |
+| [getWordProcessingType()](#getWordProcessingType--) | Gets the file type metadata package.
+ |
+| [getDublinCorePackage()](#getDublinCorePackage--) | Gets the Dublin Core metadata package extracted from the document.
+ |
+| [getInspectionPackage()](#getInspectionPackage--) | Gets a metadata package containing inspection results for the document.
+ |
+| [getDocumentStatistics()](#getDocumentStatistics--) | Gets the document statistics package.
+ |
+| [updateDocumentStatistics()](#updateDocumentStatistics--) | Recalculates count of pages, paragraphs, words, lines, characters in the document and updates appropriate metadata packages.
+ |
### getWordProcessingType() {#getWordProcessingType--}
```
public final WordProcessingTypePackage getWordProcessingType()
@@ -58,8 +65,10 @@ public final WordProcessingTypePackage getWordProcessingType()
Gets the file type metadata package.
+
**Returns:**
[WordProcessingTypePackage](../../com.groupdocs.metadata.core/wordprocessingtypepackage) - The file type metadata package.
+
### getDublinCorePackage() {#getDublinCorePackage--}
```
public final DublinCorePackage getDublinCorePackage()
@@ -68,18 +77,23 @@ public final DublinCorePackage getDublinCorePackage()
Gets the Dublin Core metadata package extracted from the document.
+
**Returns:**
[DublinCorePackage](../../com.groupdocs.metadata.core/dublincorepackage) - The Dublin Core metadata package extracted from the document.
+
### getInspectionPackage() {#getInspectionPackage--}
```
public final WordProcessingInspectionPackage getInspectionPackage()
```
-Gets a metadata package containing inspection results for the document. The package contains information about document parts that can be considered as metadata in some cases.
+Gets a metadata package containing inspection results for the document.
+The package contains information about document parts that can be considered as metadata in some cases.
+
**Returns:**
[WordProcessingInspectionPackage](../../com.groupdocs.metadata.core/wordprocessinginspectionpackage) - A metadata package containing inspection results for the document.
+
### getDocumentStatistics() {#getDocumentStatistics--}
```
public final DocumentStatistics getDocumentStatistics()
@@ -88,8 +102,10 @@ public final DocumentStatistics getDocumentStatistics()
Gets the document statistics package.
+
**Returns:**
[DocumentStatistics](../../com.groupdocs.metadata.core/documentstatistics) - The document statistics package.
+
### updateDocumentStatistics() {#updateDocumentStatistics--}
```
public final void updateDocumentStatistics()
@@ -98,3 +114,4 @@ public final void updateDocumentStatistics()
Recalculates count of pages, paragraphs, words, lines, characters in the document and updates appropriate metadata packages.
+
diff --git a/english/java/com.groupdocs.metadata.core/wordprocessingtypepackage/_index.md b/english/java/com.groupdocs.metadata.core/wordprocessingtypepackage/_index.md
index 7b2cd1a950..080964621b 100644
--- a/english/java/com.groupdocs.metadata.core/wordprocessingtypepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/wordprocessingtypepackage/_index.md
@@ -13,11 +13,13 @@ public class WordProcessingTypePackage extends FileTypePackage
```
Represents a metadata package containing document-specific file format information.
+
## Methods
| Method | Description |
| --- | --- |
-| [getWordProcessingFormat()](#getWordProcessingFormat--) | Gets the exact word processing format. |
+| [getWordProcessingFormat()](#getWordProcessingFormat--) | Gets the exact word processing format.
+ |
### getWordProcessingFormat() {#getWordProcessingFormat--}
```
public final WordProcessingFormat getWordProcessingFormat()
@@ -26,5 +28,7 @@ public final WordProcessingFormat getWordProcessingFormat()
Gets the exact word processing format.
+
**Returns:**
[WordProcessingFormat](../../com.groupdocs.metadata.core/wordprocessingformat) - The exact word processing format.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmparray/_index.md b/english/java/com.groupdocs.metadata.core/xmparray/_index.md
index 332d51169b..e56fbf967f 100644
--- a/english/java/com.groupdocs.metadata.core/xmparray/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmparray/_index.md
@@ -13,37 +13,71 @@ public class XmpArray extends XmpValueBase
```
Represents base abstraction for XMP array.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpArray(XmpArrayType arrayType, XmpValueBase[] items)](#XmpArray-com.groupdocs.metadata.core.XmpArrayType-com.groupdocs.metadata.core.XmpValueBase---) | Initializes a new instance of the XmpArray class. |
-| [XmpArray(XmpArrayType arrayType, XmpComplexType[] items)](#XmpArray-com.groupdocs.metadata.core.XmpArrayType-com.groupdocs.metadata.core.XmpComplexType---) | Initializes a new instance of the XmpArray class. |
+| [XmpArray(XmpArrayType arrayType, XmpValueBase[] items)](#XmpArray-com.groupdocs.metadata.core.XmpArrayType-com.groupdocs.metadata.core.XmpValueBase---) | Initializes a new instance of the
+XmpArray
+ class.
+ |
+| [XmpArray(XmpArrayType arrayType, XmpComplexType[] items)](#XmpArray-com.groupdocs.metadata.core.XmpArrayType-com.groupdocs.metadata.core.XmpComplexType---) | Initializes a new instance of the
+XmpArray
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getArrayType()](#getArrayType--) | Gets the type of the XMP array. |
-| [from(T[] array, XmpArrayType type)](#-T-from-T---com.groupdocs.metadata.core.XmpArrayType-) | Creates an XmpArray instance form an array of XmpComplexType . |
-| [from(String[] array, XmpArrayType type)](#from-java.lang.String---com.groupdocs.metadata.core.XmpArrayType-) | Creates an XmpArray instance form a string array. |
-| [from(int[] array, XmpArrayType type)](#from-int---com.groupdocs.metadata.core.XmpArrayType-) | Creates an XmpArray instance form an integer array. |
-| [from(Date[] array, XmpArrayType type)](#from-java.util.Date---com.groupdocs.metadata.core.XmpArrayType-) | Creates an XmpArray instance form a date array. |
-| [from(double[] array, XmpArrayType type)](#from-double---com.groupdocs.metadata.core.XmpArrayType-) | Creates an XmpArray instance form a double array. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation. |
-| [toPlatformArray(Class type)](#-T-toPlatformArray-java.lang.Class-T--) | Converts the XmpArray to a platform-specific array. |
+| [getArrayType()](#getArrayType--) | Gets the type of the XMP array.
+ |
+| [from(T[] array, XmpArrayType type)](#-T-from-T---com.groupdocs.metadata.core.XmpArrayType-) | Creates an
+XmpArray
+ instance form an array of
+XmpComplexType
+.
+ |
+| [from(String[] array, XmpArrayType type)](#from-java.lang.String---com.groupdocs.metadata.core.XmpArrayType-) | Creates an
+XmpArray
+ instance form a string array.
+ |
+| [from(int[] array, XmpArrayType type)](#from-int---com.groupdocs.metadata.core.XmpArrayType-) | Creates an
+XmpArray
+ instance form an integer array.
+ |
+| [from(Date[] array, XmpArrayType type)](#from-java.util.Date---com.groupdocs.metadata.core.XmpArrayType-) | Creates an
+XmpArray
+ instance form a date array.
+ |
+| [from(double[] array, XmpArrayType type)](#from-double---com.groupdocs.metadata.core.XmpArrayType-) | Creates an
+XmpArray
+ instance form a double array.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation.
+ |
+| [toPlatformArray(Class type)](#-T-toPlatformArray-java.lang.Class-T--) | Converts the
+XmpArray
+ to a platform-specific array.
+ |
### XmpArray(XmpArrayType arrayType, XmpValueBase[] items) {#XmpArray-com.groupdocs.metadata.core.XmpArrayType-com.groupdocs.metadata.core.XmpValueBase---}
```
public XmpArray(XmpArrayType arrayType, XmpValueBase[] items)
```
-Initializes a new instance of the XmpArray class.
+Initializes a new instance of the
+XmpArray
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| arrayType | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | Array type. |
-| items | [XmpValueBase\[\]](../../com.groupdocs.metadata.core/xmpvaluebase) | Array items. |
+| arrayType | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | Array type.
+ |
+| items | [XmpValueBase\[\]](../../com.groupdocs.metadata.core/xmpvaluebase) | Array items.
+ |
### XmpArray(XmpArrayType arrayType, XmpComplexType[] items) {#XmpArray-com.groupdocs.metadata.core.XmpArrayType-com.groupdocs.metadata.core.XmpComplexType---}
```
@@ -51,13 +85,18 @@ public XmpArray(XmpArrayType arrayType, XmpComplexType[] items)
```
-Initializes a new instance of the XmpArray class.
+Initializes a new instance of the
+XmpArray
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| arrayType | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | Array type. |
-| items | [XmpComplexType\[\]](../../com.groupdocs.metadata.core/xmpcomplextype) | Array items. |
+| arrayType | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | Array type.
+ |
+| items | [XmpComplexType\[\]](../../com.groupdocs.metadata.core/xmpcomplextype) | Array items.
+ |
### getArrayType() {#getArrayType--}
```
@@ -67,90 +106,126 @@ public final XmpArrayType getArrayType()
Gets the type of the XMP array.
+
**Returns:**
[XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) - The type of the XMP array.
+
### from(T[] array, XmpArrayType type) {#-T-from-T---com.groupdocs.metadata.core.XmpArrayType-}
```
public static XmpArray from(T[] array, XmpArrayType type)
```
-Creates an XmpArray instance form an array of XmpComplexType .
+Creates an
+XmpArray
+ instance form an array of
+XmpComplexType
+.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| array | T[] | The array to create an XmpArray from. |
+| array | T[] | The array to create an XmpArray from.
+ |
| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray .
- T : The element type of the source array. |
+
+T
+: The element type of the source array.
+ |
**Returns:**
[XmpArray](../../com.groupdocs.metadata.core/xmparray) - An XmpArray containing all the elements from the original array.
+
### from(String[] array, XmpArrayType type) {#from-java.lang.String---com.groupdocs.metadata.core.XmpArrayType-}
```
public static XmpArray from(String[] array, XmpArrayType type)
```
-Creates an XmpArray instance form a string array.
+Creates an
+XmpArray
+ instance form a string array.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| array | java.lang.String[] | The array to create an XmpArray from. |
-| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray . |
+| array | java.lang.String[] | The array to create an XmpArray from.
+ |
+| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray .
+ |
**Returns:**
[XmpArray](../../com.groupdocs.metadata.core/xmparray) - An XmpArray containing all the elements from the original array.
+
### from(int[] array, XmpArrayType type) {#from-int---com.groupdocs.metadata.core.XmpArrayType-}
```
public static XmpArray from(int[] array, XmpArrayType type)
```
-Creates an XmpArray instance form an integer array.
+Creates an
+XmpArray
+ instance form an integer array.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| array | int[] | The array to create an XmpArray from. |
-| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray . |
+| array | int[] | The array to create an XmpArray from.
+ |
+| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray .
+ |
**Returns:**
[XmpArray](../../com.groupdocs.metadata.core/xmparray) - An XmpArray containing all the elements from the original array.
+
### from(Date[] array, XmpArrayType type) {#from-java.util.Date---com.groupdocs.metadata.core.XmpArrayType-}
```
public static XmpArray from(Date[] array, XmpArrayType type)
```
-Creates an XmpArray instance form a date array.
+Creates an
+XmpArray
+ instance form a date array.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| array | java.util.Date[] | The array to create an XmpArray from. |
-| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray . |
+| array | java.util.Date[] | The array to create an XmpArray from.
+ |
+| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray .
+ |
**Returns:**
[XmpArray](../../com.groupdocs.metadata.core/xmparray) - An XmpArray containing all the elements from the original array.
+
### from(double[] array, XmpArrayType type) {#from-double---com.groupdocs.metadata.core.XmpArrayType-}
```
public static XmpArray from(double[] array, XmpArrayType type)
```
-Creates an XmpArray instance form a double array.
+Creates an
+XmpArray
+ instance form a double array.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| array | double[] | The array to create an XmpArray from. |
-| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray . |
+| array | double[] | The array to create an XmpArray from.
+ |
+| type | [XmpArrayType](../../com.groupdocs.metadata.core/xmparraytype) | The type of the XmpArray .
+ |
**Returns:**
[XmpArray](../../com.groupdocs.metadata.core/xmparray) - An XmpArray containing all the elements from the original array.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -159,15 +234,20 @@ public String getXmpRepresentation()
Converts XMP value to the xml representation.
+
**Returns:**
java.lang.String - Returns string representation of XMP value.
+
### toPlatformArray(Class type) {#-T-toPlatformArray-java.lang.Class-T--}
```
public final T[] toPlatformArray(Class type)
```
-Converts the XmpArray to a platform-specific array.
+Converts the
+XmpArray
+ to a platform-specific array.
+
**Parameters:**
| Parameter | Type | Description |
@@ -177,4 +257,7 @@ Converts the XmpArray to a platform-specific array.
**Returns:**
T[] - A platform-specific array containing elements of the XmpArray .
- T : The type of the array element.
+
+T
+: The type of the array element.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmparraytype/_index.md b/english/java/com.groupdocs.metadata.core/xmparraytype/_index.md
index d155f3c702..930dbe2ac1 100644
--- a/english/java/com.groupdocs.metadata.core/xmparraytype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmparraytype/_index.md
@@ -15,14 +15,20 @@ java.lang.Object, java.lang.Enum
public enum XmpArrayType extends Enum implements IEnumValue
```
-Represents array type in XmpArray .
+Represents array type in
+XmpArray
+.
+
## Fields
| Field | Description |
| --- | --- |
-| [Unordered](#Unordered) | An unordered array. |
-| [Ordered](#Ordered) | An ordered array. |
-| [Alternative](#Alternative) | An alternative array. |
+| [Unordered](#Unordered) | An unordered array.
+ |
+| [Ordered](#Ordered) | An ordered array.
+ |
+| [Alternative](#Alternative) | An alternative array.
+ |
## Methods
| Method | Description |
@@ -44,6 +50,7 @@ public static final XmpArrayType Unordered
An unordered array.
+
### Ordered {#Ordered}
```
public static final XmpArrayType Ordered
@@ -52,6 +59,7 @@ public static final XmpArrayType Ordered
An ordered array.
+
### Alternative {#Alternative}
```
public static final XmpArrayType Alternative
@@ -60,6 +68,7 @@ public static final XmpArrayType Alternative
An alternative array.
+
### values() {#values--}
```
public static XmpArrayType[] values()
@@ -118,6 +127,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +138,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +154,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +170,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +181,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/xmpaudiochanneltype/_index.md b/english/java/com.groupdocs.metadata.core/xmpaudiochanneltype/_index.md
index 2b479712f0..90e007c35a 100644
--- a/english/java/com.groupdocs.metadata.core/xmpaudiochanneltype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpaudiochanneltype/_index.md
@@ -13,16 +13,23 @@ public final class XmpAudioChannelType extends XmpClosedChoice
```
Represents audio channel type.
+
## Methods
| Method | Description |
| --- | --- |
-| [getMono()](#getMono--) | Gets mono audio channel. |
-| [getStereo()](#getStereo--) | Gets stereo audio channel. |
-| [getAudio51()](#getAudio51--) | Gets 5.1 audio channel. |
-| [getAudio71()](#getAudio71--) | Gets 7.1 audio channel. |
-| [getAudio16Channel()](#getAudio16Channel--) | Gets 16 audio channel. |
-| [getOtherChannel()](#getOtherChannel--) | Gets other channel. |
+| [getMono()](#getMono--) | Gets mono audio channel.
+ |
+| [getStereo()](#getStereo--) | Gets stereo audio channel.
+ |
+| [getAudio51()](#getAudio51--) | Gets 5.1 audio channel.
+ |
+| [getAudio71()](#getAudio71--) | Gets 7.1 audio channel.
+ |
+| [getAudio16Channel()](#getAudio16Channel--) | Gets 16 audio channel.
+ |
+| [getOtherChannel()](#getOtherChannel--) | Gets other channel.
+ |
### getMono() {#getMono--}
```
public static XmpAudioChannelType getMono()
@@ -31,8 +38,10 @@ public static XmpAudioChannelType getMono()
Gets mono audio channel.
+
**Returns:**
[XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) - The mono.
+
### getStereo() {#getStereo--}
```
public static XmpAudioChannelType getStereo()
@@ -41,8 +50,10 @@ public static XmpAudioChannelType getStereo()
Gets stereo audio channel.
+
**Returns:**
[XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) - The stereo.
+
### getAudio51() {#getAudio51--}
```
public static XmpAudioChannelType getAudio51()
@@ -51,8 +62,10 @@ public static XmpAudioChannelType getAudio51()
Gets 5.1 audio channel.
+
**Returns:**
[XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) - The audio 5.1.
+
### getAudio71() {#getAudio71--}
```
public static XmpAudioChannelType getAudio71()
@@ -61,8 +74,10 @@ public static XmpAudioChannelType getAudio71()
Gets 7.1 audio channel.
+
**Returns:**
[XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) - The audio 7.1.
+
### getAudio16Channel() {#getAudio16Channel--}
```
public static XmpAudioChannelType getAudio16Channel()
@@ -71,8 +86,10 @@ public static XmpAudioChannelType getAudio16Channel()
Gets 16 audio channel.
+
**Returns:**
[XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) - 16 channel audio.
+
### getOtherChannel() {#getOtherChannel--}
```
public static XmpAudioChannelType getOtherChannel()
@@ -81,5 +98,7 @@ public static XmpAudioChannelType getOtherChannel()
Gets other channel.
+
**Returns:**
[XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) - The other channel.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpaudiosampletype/_index.md b/english/java/com.groupdocs.metadata.core/xmpaudiosampletype/_index.md
index f125b6706e..4d3276dd08 100644
--- a/english/java/com.groupdocs.metadata.core/xmpaudiosampletype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpaudiosampletype/_index.md
@@ -12,19 +12,30 @@ java.lang.Object, com.groupdocs.metadata.core.XmpClosedChoice
public final class XmpAudioSampleType extends XmpClosedChoice
```
-Represents Audio sample type in XmpDynamicMediaPackage .
+Represents Audio sample type in
+XmpDynamicMediaPackage
+.
+
## Methods
| Method | Description |
| --- | --- |
-| [getSample8Int()](#getSample8Int--) | Gets 8Int audio sample. |
-| [getSample16Int()](#getSample16Int--) | Gets 16Int audio sample. |
-| [getSample24Int()](#getSample24Int--) | Gets 24Int audio sample. |
-| [getSample32Int()](#getSample32Int--) | Gets 32Int audio sample. |
-| [getSample32Float()](#getSample32Float--) | Gets 32Float audio sample. |
-| [getCompressed()](#getCompressed--) | Gets Compressed audio sample. |
-| [getPacked()](#getPacked--) | Gets Packed audio sample. |
-| [getOther()](#getOther--) | Gets Other audio sample. |
+| [getSample8Int()](#getSample8Int--) | Gets 8Int audio sample.
+ |
+| [getSample16Int()](#getSample16Int--) | Gets 16Int audio sample.
+ |
+| [getSample24Int()](#getSample24Int--) | Gets 24Int audio sample.
+ |
+| [getSample32Int()](#getSample32Int--) | Gets 32Int audio sample.
+ |
+| [getSample32Float()](#getSample32Float--) | Gets 32Float audio sample.
+ |
+| [getCompressed()](#getCompressed--) | Gets Compressed audio sample.
+ |
+| [getPacked()](#getPacked--) | Gets Packed audio sample.
+ |
+| [getOther()](#getOther--) | Gets Other audio sample.
+ |
### getSample8Int() {#getSample8Int--}
```
public static XmpAudioSampleType getSample8Int()
@@ -33,8 +44,10 @@ public static XmpAudioSampleType getSample8Int()
Gets 8Int audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - 8Int.
+
### getSample16Int() {#getSample16Int--}
```
public static XmpAudioSampleType getSample16Int()
@@ -43,8 +56,10 @@ public static XmpAudioSampleType getSample16Int()
Gets 16Int audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - 16Int.
+
### getSample24Int() {#getSample24Int--}
```
public static XmpAudioSampleType getSample24Int()
@@ -53,8 +68,10 @@ public static XmpAudioSampleType getSample24Int()
Gets 24Int audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - 24Int.
+
### getSample32Int() {#getSample32Int--}
```
public static XmpAudioSampleType getSample32Int()
@@ -63,8 +80,10 @@ public static XmpAudioSampleType getSample32Int()
Gets 32Int audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - 32Int.
+
### getSample32Float() {#getSample32Float--}
```
public static XmpAudioSampleType getSample32Float()
@@ -73,8 +92,10 @@ public static XmpAudioSampleType getSample32Float()
Gets 32Float audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - 32Float.
+
### getCompressed() {#getCompressed--}
```
public static XmpAudioSampleType getCompressed()
@@ -83,8 +104,10 @@ public static XmpAudioSampleType getCompressed()
Gets Compressed audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - The compressed audio.
+
### getPacked() {#getPacked--}
```
public static XmpAudioSampleType getPacked()
@@ -93,8 +116,10 @@ public static XmpAudioSampleType getPacked()
Gets Packed audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - The packed audio.
+
### getOther() {#getOther--}
```
public static XmpAudioSampleType getOther()
@@ -103,5 +128,7 @@ public static XmpAudioSampleType getOther()
Gets Other audio sample.
+
**Returns:**
[XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) - The packed audio.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpbasicjobticketpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpbasicjobticketpackage/_index.md
index 50aac8cbbb..8da9c73a87 100644
--- a/english/java/com.groupdocs.metadata.core/xmpbasicjobticketpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpbasicjobticketpackage/_index.md
@@ -13,24 +13,33 @@ public final class XmpBasicJobTicketPackage extends XmpPackage
```
Represents Basic Job-Ticket namespace.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpBasicJobTicketPackage()](#XmpBasicJobTicketPackage--) | Initializes a new instance of the XmpBasicJobTicketPackage class. |
+| [XmpBasicJobTicketPackage()](#XmpBasicJobTicketPackage--) | Initializes a new instance of the
+XmpBasicJobTicketPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getJobs()](#getJobs--) | Gets the jobs. |
-| [setJobs(XmpJob[] value)](#setJobs-com.groupdocs.metadata.core.XmpJob---) | Sets the jobs. |
+| [getJobs()](#getJobs--) | Gets the jobs.
+ |
+| [setJobs(XmpJob[] value)](#setJobs-com.groupdocs.metadata.core.XmpJob---) | Sets the jobs.
+ |
### XmpBasicJobTicketPackage() {#XmpBasicJobTicketPackage--}
```
public XmpBasicJobTicketPackage()
```
-Initializes a new instance of the XmpBasicJobTicketPackage class.
+Initializes a new instance of the
+XmpBasicJobTicketPackage
+ class.
+
### getJobs() {#getJobs--}
```
@@ -40,8 +49,10 @@ public final XmpJob[] getJobs()
Gets the jobs.
+
**Returns:**
com.groupdocs.metadata.core.XmpJob[] - The jobs.
+
### setJobs(XmpJob[] value) {#setJobs-com.groupdocs.metadata.core.XmpJob---}
```
public final void setJobs(XmpJob[] value)
@@ -50,8 +61,10 @@ public final void setJobs(XmpJob[] value)
Sets the jobs.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpJob\[\]](../../com.groupdocs.metadata.core/xmpjob) | The jobs. |
+| value | [XmpJob\[\]](../../com.groupdocs.metadata.core/xmpjob) | The jobs.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpbasicpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpbasicpackage/_index.md
index ab6337a5ef..c6f0063011 100644
--- a/english/java/com.groupdocs.metadata.core/xmpbasicpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpbasicpackage/_index.md
@@ -13,50 +13,81 @@ public final class XmpBasicPackage extends XmpPackage
```
Represents the XMP basic namespace.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpBasicPackage()](#XmpBasicPackage--) | Initializes a new instance of the XmpBasicPackage class. |
+| [XmpBasicPackage()](#XmpBasicPackage--) | Initializes a new instance of the
+XmpBasicPackage
+ class.
+ |
## Fields
| Field | Description |
| --- | --- |
-| [RatingRejected](#RatingRejected) | Rating rejected value. |
-| [RatingMin](#RatingMin) | Rating min value. |
-| [RatingMax](#RatingMax) | Rating max value. |
+| [RatingRejected](#RatingRejected) | Rating rejected value.
+ |
+| [RatingMin](#RatingMin) | Rating min value.
+ |
+| [RatingMax](#RatingMax) | Rating max value.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getBaseUrl()](#getBaseUrl--) | Gets the base URL for relative URLs in the document content. |
-| [setBaseUrl(String value)](#setBaseUrl-java.lang.String-) | Sets the base URL for relative URLs in the document content. |
-| [getCreateDate()](#getCreateDate--) | Gets the date and time the resource was created. |
-| [setCreateDate(Date value)](#setCreateDate-java.util.Date-) | Sets the date and time the resource was created. |
-| [getCreatorTool()](#getCreatorTool--) | Gets the name of the tool used to create the resource. |
-| [setCreatorTool(String value)](#setCreatorTool-java.lang.String-) | Sets the name of the tool used to create the resource. |
-| [getIdentifiers()](#getIdentifiers--) | Gets an unordered array of text strings that unambiguously identify the resource within a given context. |
-| [setIdentifiers(String[] value)](#setIdentifiers-java.lang.String---) | Sets an unordered array of text strings that unambiguously identify the resource within a given context. |
-| [getLabel()](#getLabel--) | Gets a word or short phrase that identifies the resource as a member of a user-defined collection. |
-| [setLabel(String value)](#setLabel-java.lang.String-) | Sets a word or short phrase that identifies the resource as a member of a user-defined collection. |
-| [getMetadataDate()](#getMetadataDate--) | Gets the date and time that any metadata for this resource was last changed. |
-| [setMetadataDate(Date value)](#setMetadataDate-java.util.Date-) | Sets the date and time that any metadata for this resource was last changed. |
-| [getModifyDate()](#getModifyDate--) | Gets the date and time the resource was last modified. |
-| [setModifyDate(Date value)](#setModifyDate-java.util.Date-) | Sets the date and time the resource was last modified. |
-| [getNickname()](#getNickname--) | Gets a short informal name for the resource. |
-| [setNickname(String value)](#setNickname-java.lang.String-) | Sets a short informal name for the resource. |
-| [getRating()](#getRating--) | Gets a user-assigned rating for this file. |
-| [setRating(double value)](#setRating-double-) | Sets a user-assigned rating for this file. |
-| [getThumbnails()](#getThumbnails--) | Gets an array of thumbnail images for the file, which can differ in characteristics such as size or image encoding. |
-| [setThumbnails(XmpThumbnail[] value)](#setThumbnails-com.groupdocs.metadata.core.XmpThumbnail---) | Sets an array of thumbnail images for the file, which can differ in characteristics such as size or image encoding. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Adds string property. |
+| [getBaseUrl()](#getBaseUrl--) | Gets the base URL for relative URLs in the document content.
+ |
+| [setBaseUrl(String value)](#setBaseUrl-java.lang.String-) | Sets the base URL for relative URLs in the document content.
+ |
+| [getCreateDate()](#getCreateDate--) | Gets the date and time the resource was created.
+ |
+| [setCreateDate(Date value)](#setCreateDate-java.util.Date-) | Sets the date and time the resource was created.
+ |
+| [getCreatorTool()](#getCreatorTool--) | Gets the name of the tool used to create the resource.
+ |
+| [setCreatorTool(String value)](#setCreatorTool-java.lang.String-) | Sets the name of the tool used to create the resource.
+ |
+| [getIdentifiers()](#getIdentifiers--) | Gets an unordered array of text strings that unambiguously identify the resource within a given context.
+ |
+| [setIdentifiers(String[] value)](#setIdentifiers-java.lang.String---) | Sets an unordered array of text strings that unambiguously identify the resource within a given context.
+ |
+| [getLabel()](#getLabel--) | Gets a word or short phrase that identifies the resource as a member of a user-defined collection.
+ |
+| [setLabel(String value)](#setLabel-java.lang.String-) | Sets a word or short phrase that identifies the resource as a member of a user-defined collection.
+ |
+| [getMetadataDate()](#getMetadataDate--) | Gets the date and time that any metadata for this resource was last changed.
+ |
+| [setMetadataDate(Date value)](#setMetadataDate-java.util.Date-) | Sets the date and time that any metadata for this resource was last changed.
+ |
+| [getModifyDate()](#getModifyDate--) | Gets the date and time the resource was last modified.
+ |
+| [setModifyDate(Date value)](#setModifyDate-java.util.Date-) | Sets the date and time the resource was last modified.
+ |
+| [getNickname()](#getNickname--) | Gets a short informal name for the resource.
+ |
+| [setNickname(String value)](#setNickname-java.lang.String-) | Sets a short informal name for the resource.
+ |
+| [getRating()](#getRating--) | Gets a user-assigned rating for this file.
+ |
+| [setRating(double value)](#setRating-double-) | Sets a user-assigned rating for this file.
+ |
+| [getThumbnails()](#getThumbnails--) | Gets an array of thumbnail images for the file, which can differ in characteristics such as size or image encoding.
+ |
+| [setThumbnails(XmpThumbnail[] value)](#setThumbnails-com.groupdocs.metadata.core.XmpThumbnail---) | Sets an array of thumbnail images for the file, which can differ in characteristics such as size or image encoding.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Adds string property.
+ |
### XmpBasicPackage() {#XmpBasicPackage--}
```
public XmpBasicPackage()
```
-Initializes a new instance of the XmpBasicPackage class.
+Initializes a new instance of the
+XmpBasicPackage
+ class.
+
### RatingRejected {#RatingRejected}
```
@@ -66,6 +97,7 @@ public static final float RatingRejected
Rating rejected value.
+
### RatingMin {#RatingMin}
```
public static final float RatingMin
@@ -74,6 +106,7 @@ public static final float RatingMin
Rating min value.
+
### RatingMax {#RatingMax}
```
public static final float RatingMax
@@ -82,28 +115,35 @@ public static final float RatingMax
Rating max value.
+
### getBaseUrl() {#getBaseUrl--}
```
public final String getBaseUrl()
```
-Gets the base URL for relative URLs in the document content. If this document contains Internet links, and those links are relative, they are relative to this base URL.
+Gets the base URL for relative URLs in the document content.
+If this document contains Internet links, and those links are relative, they are relative to this base URL.
+
**Returns:**
java.lang.String - The base URL.
+
### setBaseUrl(String value) {#setBaseUrl-java.lang.String-}
```
public final void setBaseUrl(String value)
```
-Sets the base URL for relative URLs in the document content. If this document contains Internet links, and those links are relative, they are relative to this base URL.
+Sets the base URL for relative URLs in the document content.
+If this document contains Internet links, and those links are relative, they are relative to this base URL.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The base URL. |
+| value | java.lang.String | The base URL.
+ |
### getCreateDate() {#getCreateDate--}
```
@@ -113,8 +153,10 @@ public final Date getCreateDate()
Gets the date and time the resource was created.
+
**Returns:**
java.util.Date - The resource creation date.
+
### setCreateDate(Date value) {#setCreateDate-java.util.Date-}
```
public final void setCreateDate(Date value)
@@ -123,10 +165,12 @@ public final void setCreateDate(Date value)
Sets the date and time the resource was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The resource creation date. |
+| value | java.util.Date | The resource creation date.
+ |
### getCreatorTool() {#getCreatorTool--}
```
@@ -136,8 +180,10 @@ public final String getCreatorTool()
Gets the name of the tool used to create the resource.
+
**Returns:**
java.lang.String - The name of the tool used to create the resource.
+
### setCreatorTool(String value) {#setCreatorTool-java.lang.String-}
```
public final void setCreatorTool(String value)
@@ -146,10 +192,12 @@ public final void setCreatorTool(String value)
Sets the name of the tool used to create the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the tool used to create the resource. |
+| value | java.lang.String | The name of the tool used to create the resource.
+ |
### getIdentifiers() {#getIdentifiers--}
```
@@ -159,8 +207,10 @@ public final String[] getIdentifiers()
Gets an unordered array of text strings that unambiguously identify the resource within a given context.
+
**Returns:**
java.lang.String[] - An array of the identifiers.
+
### setIdentifiers(String[] value) {#setIdentifiers-java.lang.String---}
```
public final void setIdentifiers(String[] value)
@@ -169,10 +219,12 @@ public final void setIdentifiers(String[] value)
Sets an unordered array of text strings that unambiguously identify the resource within a given context.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | An array of the identifiers. |
+| value | java.lang.String[] | An array of the identifiers.
+ |
### getLabel() {#getLabel--}
```
@@ -182,8 +234,10 @@ public final String getLabel()
Gets a word or short phrase that identifies the resource as a member of a user-defined collection.
+
**Returns:**
java.lang.String - The label of the resource.
+
### setLabel(String value) {#setLabel-java.lang.String-}
```
public final void setLabel(String value)
@@ -192,10 +246,12 @@ public final void setLabel(String value)
Sets a word or short phrase that identifies the resource as a member of a user-defined collection.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The label of the resource. |
+| value | java.lang.String | The label of the resource.
+ |
### getMetadataDate() {#getMetadataDate--}
```
@@ -205,8 +261,10 @@ public final Date getMetadataDate()
Gets the date and time that any metadata for this resource was last changed.
+
**Returns:**
java.util.Date - The metadata date.
+
### setMetadataDate(Date value) {#setMetadataDate-java.util.Date-}
```
public final void setMetadataDate(Date value)
@@ -215,10 +273,12 @@ public final void setMetadataDate(Date value)
Sets the date and time that any metadata for this resource was last changed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The metadata date. |
+| value | java.util.Date | The metadata date.
+ |
### getModifyDate() {#getModifyDate--}
```
@@ -228,8 +288,10 @@ public final Date getModifyDate()
Gets the date and time the resource was last modified.
+
**Returns:**
java.util.Date - The last modification date.
+
### setModifyDate(Date value) {#setModifyDate-java.util.Date-}
```
public final void setModifyDate(Date value)
@@ -238,10 +300,12 @@ public final void setModifyDate(Date value)
Sets the date and time the resource was last modified.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The last modification date. |
+| value | java.util.Date | The last modification date.
+ |
### getNickname() {#getNickname--}
```
@@ -251,8 +315,10 @@ public final String getNickname()
Gets a short informal name for the resource.
+
**Returns:**
java.lang.String - The nickname.
+
### setNickname(String value) {#setNickname-java.lang.String-}
```
public final void setNickname(String value)
@@ -261,10 +327,12 @@ public final void setNickname(String value)
Sets a short informal name for the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The nickname. |
+| value | java.lang.String | The nickname.
+ |
### getRating() {#getRating--}
```
@@ -272,22 +340,28 @@ public final double getRating()
```
-Gets a user-assigned rating for this file. The value shall be -1 or in the range [0..5], where -1 indicates \\u201crejected\\u201d and 0 indicates \\u201cunrated\\u201d.
+Gets a user-assigned rating for this file.
+The value shall be -1 or in the range [0..5], where -1 indicates \\u201crejected\\u201d and 0 indicates \\u201cunrated\\u201d.
+
**Returns:**
double - The rating.
+
### setRating(double value) {#setRating-double-}
```
public final void setRating(double value)
```
-Sets a user-assigned rating for this file. The value shall be -1 or in the range [0..5], where -1 indicates \\u201crejected\\u201d and 0 indicates \\u201cunrated\\u201d.
+Sets a user-assigned rating for this file.
+The value shall be -1 or in the range [0..5], where -1 indicates \\u201crejected\\u201d and 0 indicates \\u201cunrated\\u201d.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | double | The rating. |
+| value | double | The rating.
+ |
### getThumbnails() {#getThumbnails--}
```
@@ -297,8 +371,10 @@ public final XmpThumbnail[] getThumbnails()
Gets an array of thumbnail images for the file, which can differ in characteristics such as size or image encoding.
+
**Returns:**
com.groupdocs.metadata.core.XmpThumbnail[] - The thumbnails.
+
### setThumbnails(XmpThumbnail[] value) {#setThumbnails-com.groupdocs.metadata.core.XmpThumbnail---}
```
public final void setThumbnails(XmpThumbnail[] value)
@@ -307,10 +383,12 @@ public final void setThumbnails(XmpThumbnail[] value)
Sets an array of thumbnail images for the file, which can differ in characteristics such as size or image encoding.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpThumbnail\[\]](../../com.groupdocs.metadata.core/xmpthumbnail) | The thumbnails. |
+| value | [XmpThumbnail\[\]](../../com.groupdocs.metadata.core/xmpthumbnail) | The thumbnails.
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -320,9 +398,12 @@ public void set(String name, String value)
Adds string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XmpBasic key. |
-| value | java.lang.String | String value. |
+| name | java.lang.String | XmpBasic key.
+ |
+| value | java.lang.String | String value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpboolean/_index.md b/english/java/com.groupdocs.metadata.core/xmpboolean/_index.md
index 0249ad7c54..43cb21255a 100644
--- a/english/java/com.groupdocs.metadata.core/xmpboolean/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpboolean/_index.md
@@ -13,31 +13,47 @@ public final class XmpBoolean extends XmpValueBase
```
Represents XMP Boolean basic type.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpBoolean(boolean value)](#XmpBoolean-boolean-) | Initializes a new instance of the XmpBoolean class based on boolean value. |
-| [XmpBoolean()](#XmpBoolean--) | Initializes a new instance of the XmpBoolean class with default value. |
-| [XmpBoolean(String value)](#XmpBoolean-java.lang.String-) | Initializes a new instance of the XmpBoolean class. |
+| [XmpBoolean(boolean value)](#XmpBoolean-boolean-) | Initializes a new instance of the
+XmpBoolean
+ class based on boolean value.
+ |
+| [XmpBoolean()](#XmpBoolean--) | Initializes a new instance of the
+XmpBoolean
+ class with default value.
+ |
+| [XmpBoolean(String value)](#XmpBoolean-java.lang.String-) | Initializes a new instance of the
+XmpBoolean
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getValue()](#getValue--) | Gets the value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpBoolean(boolean value) {#XmpBoolean-boolean-}
```
public XmpBoolean(boolean value)
```
-Initializes a new instance of the XmpBoolean class based on boolean value.
+Initializes a new instance of the
+XmpBoolean
+ class based on boolean value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | boolean | bool value. |
+| value | boolean | bool value.
+ |
### XmpBoolean() {#XmpBoolean--}
```
@@ -45,7 +61,10 @@ public XmpBoolean()
```
-Initializes a new instance of the XmpBoolean class with default value.
+Initializes a new instance of the
+XmpBoolean
+ class with default value.
+
### XmpBoolean(String value) {#XmpBoolean-java.lang.String-}
```
@@ -53,12 +72,16 @@ public XmpBoolean(String value)
```
-Initializes a new instance of the XmpBoolean class.
+Initializes a new instance of the
+XmpBoolean
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value. |
+| value | java.lang.String | The value.
+ |
### getValue() {#getValue--}
```
@@ -68,8 +91,10 @@ public final boolean getValue()
Gets the value.
+
**Returns:**
boolean - Boolean value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -78,5 +103,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - String contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpcamerarawpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpcamerarawpackage/_index.md
index 12a1f4b4f2..0df0c3a8ae 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcamerarawpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcamerarawpackage/_index.md
@@ -13,101 +13,203 @@ public final class XmpCameraRawPackage extends XmpPackage
```
Represents Camera Raw schema.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpCameraRawPackage()](#XmpCameraRawPackage--) | Initializes a new instance of the XmpCameraRawPackage class. |
+| [XmpCameraRawPackage()](#XmpCameraRawPackage--) | Initializes a new instance of the
+XmpCameraRawPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAutoBrightness()](#getAutoBrightness--) | Gets the AutoBrightness value. |
-| [setAutoBrightness(Boolean value)](#setAutoBrightness-java.lang.Boolean-) | Sets the AutoBrightness value. |
-| [getAutoContrast()](#getAutoContrast--) | Gets the AutoContrast value. |
-| [setAutoContrast(Boolean value)](#setAutoContrast-java.lang.Boolean-) | Sets the AutoContrast value. |
-| [getAutoExposure()](#getAutoExposure--) | Gets the AutoExposure value. |
-| [setAutoExposure(Boolean value)](#setAutoExposure-java.lang.Boolean-) | Sets the AutoExposure value. |
-| [getAutoShadows()](#getAutoShadows--) | Gets the AutoShadows value. |
-| [setAutoShadows(Boolean value)](#setAutoShadows-java.lang.Boolean-) | Sets the AutoShadows value. |
-| [getBlueHue()](#getBlueHue--) | Gets the BlueHue value. |
-| [setBlueHue(Integer value)](#setBlueHue-java.lang.Integer-) | Sets the BlueHue value. |
-| [getBlueSaturation()](#getBlueSaturation--) | Gets the BlueSaturation. |
-| [setBlueSaturation(Integer value)](#setBlueSaturation-java.lang.Integer-) | Sets the BlueSaturation. |
-| [getBrightness()](#getBrightness--) | Gets the Brightness value. |
-| [setBrightness(Integer value)](#setBrightness-java.lang.Integer-) | Sets the Brightness value. |
-| [getCameraProfile()](#getCameraProfile--) | Gets the CameraProfile value. |
-| [setCameraProfile(String value)](#setCameraProfile-java.lang.String-) | Sets the CameraProfile value. |
-| [getChromaticAberrationB()](#getChromaticAberrationB--) | Gets the "Chromatic Aberration, Fix Blue/Yellow Fringe" setting. |
-| [setChromaticAberrationB(Integer value)](#setChromaticAberrationB-java.lang.Integer-) | Sets the "Chromatic Aberration, Fix Blue/Yellow Fringe" setting. |
-| [getChromaticAberrationR()](#getChromaticAberrationR--) | Gets the "Chromatic Aberration, Fix Red/Cyan Fringe" setting. |
-| [setChromaticAberrationR(Integer value)](#setChromaticAberrationR-java.lang.Integer-) | Sets the "Chromatic Aberration, Fix Red/Cyan Fringe" setting. |
-| [getColorNoiseReduction()](#getColorNoiseReduction--) | Gets the Color Noise Reduction setting. |
-| [setColorNoiseReduction(Integer value)](#setColorNoiseReduction-java.lang.Integer-) | Sets the Color Noise Reduction setting. |
-| [getContrast()](#getContrast--) | Gets the Contrast setting. |
-| [setContrast(Integer value)](#setContrast-java.lang.Integer-) | Sets the Contrast setting. |
-| [getCropTop()](#getCropTop--) | Gets the CropTop setting. |
-| [setCropTop(Double value)](#setCropTop-java.lang.Double-) | Sets the CropTop setting. |
-| [getCropLeft()](#getCropLeft--) | Gets the CropLeft setting. |
-| [setCropLeft(Double value)](#setCropLeft-java.lang.Double-) | Sets the CropLeft setting. |
-| [getCropBottom()](#getCropBottom--) | Gets the CropBottom setting. |
-| [setCropBottom(Double value)](#setCropBottom-java.lang.Double-) | Sets the CropBottom setting. |
-| [getCropRight()](#getCropRight--) | Gets the CropRight setting. |
-| [setCropRight(Double value)](#setCropRight-java.lang.Double-) | Sets the CropRight setting. |
-| [getCropAngle()](#getCropAngle--) | Gets the CropAngle setting. |
-| [setCropAngle(Double value)](#setCropAngle-java.lang.Double-) | Sets the CropAngle setting. |
-| [getCropWidth()](#getCropWidth--) | Gets the width of the resulting cropped image in CropUnits units. |
-| [setCropWidth(Double value)](#setCropWidth-java.lang.Double-) | Sets the width of the resulting cropped image in CropUnits units. |
-| [getCropHeight()](#getCropHeight--) | Gets the height of the resulting cropped image in CropUnits units. |
-| [setCropHeight(Double value)](#setCropHeight-java.lang.Double-) | Sets the height of the resulting cropped image in CropUnits units. |
-| [getCropUnits()](#getCropUnits--) | Gets units for CropWidth and CropHeight . |
-| [setCropUnits(XmpCropUnit value)](#setCropUnits-com.groupdocs.metadata.core.XmpCropUnit-) | Sets units for CropWidth and CropHeight . |
-| [getExposure()](#getExposure--) | Gets the Exposure setting. |
-| [setExposure(Double value)](#setExposure-java.lang.Double-) | Sets the Exposure setting. |
-| [getGreenHue()](#getGreenHue--) | Gets the Green Hue setting. |
-| [setGreenHue(Integer value)](#setGreenHue-java.lang.Integer-) | Sets the Green Hue setting. |
-| [getGreenSaturation()](#getGreenSaturation--) | Gets the Green Saturation setting. |
-| [setGreenSaturation(Integer value)](#setGreenSaturation-java.lang.Integer-) | Sets the Green Saturation setting. |
-| [hasCrop()](#hasCrop--) | Gets or sets the HasCrop value. |
-| [setCrop(Boolean value)](#setCrop-java.lang.Boolean-) | Sets the HasCrop value. |
-| [hasSettings()](#hasSettings--) | Gets or sets HasSettings value. |
-| [setSettings(Boolean value)](#setSettings-java.lang.Boolean-) | Sets HasSettings value. |
-| [getLuminanceSmoothing()](#getLuminanceSmoothing--) | Gets the LuminanceSmoothing setting. |
-| [setLuminanceSmoothing(Integer value)](#setLuminanceSmoothing-java.lang.Integer-) | Sets the LuminanceSmoothing setting. |
-| [getRawFileName()](#getRawFileName--) | Gets the file name for a raw file (not a complete path). |
-| [setRawFileName(String value)](#setRawFileName-java.lang.String-) | Sets the file name for a raw file (not a complete path). |
-| [getRedHue()](#getRedHue--) | Gets the Red Hue setting. |
-| [setRedHue(Integer value)](#setRedHue-java.lang.Integer-) | Sets the Red Hue setting. |
-| [getRedSaturation()](#getRedSaturation--) | Gets the Red Saturation setting. |
-| [setRedSaturation(Integer value)](#setRedSaturation-java.lang.Integer-) | Sets the Red Saturation setting. |
-| [getSaturation()](#getSaturation--) | Gets the Saturation setting. |
-| [setSaturation(Integer value)](#setSaturation-java.lang.Integer-) | Sets the Saturation setting. |
-| [getShadows()](#getShadows--) | Gets the Shadows setting. |
-| [setShadows(Integer value)](#setShadows-java.lang.Integer-) | Sets the Shadows setting. |
-| [getShadowTint()](#getShadowTint--) | Gets the ShadowTint setting. |
-| [setShadowTint(Integer value)](#setShadowTint-java.lang.Integer-) | Sets the ShadowTint setting. |
-| [getSharpness()](#getSharpness--) | Gets the Sharpness setting. |
-| [setSharpness(Integer value)](#setSharpness-java.lang.Integer-) | Sets the Sharpness setting. |
-| [getTemperature()](#getTemperature--) | Gets the Temperature setting. |
-| [setTemperature(Integer value)](#setTemperature-java.lang.Integer-) | Sets the Temperature setting. |
-| [getTint()](#getTint--) | Gets the Tint setting. |
-| [setTint(Integer value)](#setTint-java.lang.Integer-) | Sets the Tint setting. |
-| [getVersion()](#getVersion--) | Gets the version of the Camera Raw plug-in. |
-| [setVersion(String value)](#setVersion-java.lang.String-) | Sets the version of the Camera Raw plug-in. |
-| [getVignetteAmount()](#getVignetteAmount--) | Gets the Vignette Amount setting. |
-| [setVignetteAmount(Integer value)](#setVignetteAmount-java.lang.Integer-) | Sets the Vignette Amount setting. |
-| [getVignetteMidpoint()](#getVignetteMidpoint--) | Gets the Vignetting Midpoint setting. |
-| [setVignetteMidpoint(Integer value)](#setVignetteMidpoint-java.lang.Integer-) | Sets the Vignetting Midpoint setting. |
-| [getWhiteBalance()](#getWhiteBalance--) | Gets White Balance setting. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Adds string property. |
-| [setWhiteBalance(XmpWhiteBalance whiteBalance)](#setWhiteBalance-com.groupdocs.metadata.core.XmpWhiteBalance-) | Sets the white balance. |
+| [getAutoBrightness()](#getAutoBrightness--) | Gets the AutoBrightness value.
+ |
+| [setAutoBrightness(Boolean value)](#setAutoBrightness-java.lang.Boolean-) | Sets the AutoBrightness value.
+ |
+| [getAutoContrast()](#getAutoContrast--) | Gets the AutoContrast value.
+ |
+| [setAutoContrast(Boolean value)](#setAutoContrast-java.lang.Boolean-) | Sets the AutoContrast value.
+ |
+| [getAutoExposure()](#getAutoExposure--) | Gets the AutoExposure value.
+ |
+| [setAutoExposure(Boolean value)](#setAutoExposure-java.lang.Boolean-) | Sets the AutoExposure value.
+ |
+| [getAutoShadows()](#getAutoShadows--) | Gets the AutoShadows value.
+ |
+| [setAutoShadows(Boolean value)](#setAutoShadows-java.lang.Boolean-) | Sets the AutoShadows value.
+ |
+| [getBlueHue()](#getBlueHue--) | Gets the BlueHue value.
+ |
+| [setBlueHue(Integer value)](#setBlueHue-java.lang.Integer-) | Sets the BlueHue value.
+ |
+| [getBlueSaturation()](#getBlueSaturation--) | Gets the BlueSaturation.
+ |
+| [setBlueSaturation(Integer value)](#setBlueSaturation-java.lang.Integer-) | Sets the BlueSaturation.
+ |
+| [getBrightness()](#getBrightness--) | Gets the Brightness value.
+ |
+| [setBrightness(Integer value)](#setBrightness-java.lang.Integer-) | Sets the Brightness value.
+ |
+| [getCameraProfile()](#getCameraProfile--) | Gets the CameraProfile value.
+ |
+| [setCameraProfile(String value)](#setCameraProfile-java.lang.String-) | Sets the CameraProfile value.
+ |
+| [getChromaticAberrationB()](#getChromaticAberrationB--) | Gets the "Chromatic Aberration, Fix Blue/Yellow Fringe" setting.
+ |
+| [setChromaticAberrationB(Integer value)](#setChromaticAberrationB-java.lang.Integer-) | Sets the "Chromatic Aberration, Fix Blue/Yellow Fringe" setting.
+ |
+| [getChromaticAberrationR()](#getChromaticAberrationR--) | Gets the "Chromatic Aberration, Fix Red/Cyan Fringe" setting.
+ |
+| [setChromaticAberrationR(Integer value)](#setChromaticAberrationR-java.lang.Integer-) | Sets the "Chromatic Aberration, Fix Red/Cyan Fringe" setting.
+ |
+| [getColorNoiseReduction()](#getColorNoiseReduction--) | Gets the Color Noise Reduction setting.
+ |
+| [setColorNoiseReduction(Integer value)](#setColorNoiseReduction-java.lang.Integer-) | Sets the Color Noise Reduction setting.
+ |
+| [getContrast()](#getContrast--) | Gets the Contrast setting.
+ |
+| [setContrast(Integer value)](#setContrast-java.lang.Integer-) | Sets the Contrast setting.
+ |
+| [getCropTop()](#getCropTop--) | Gets the CropTop setting.
+ |
+| [setCropTop(Double value)](#setCropTop-java.lang.Double-) | Sets the CropTop setting.
+ |
+| [getCropLeft()](#getCropLeft--) | Gets the CropLeft setting.
+ |
+| [setCropLeft(Double value)](#setCropLeft-java.lang.Double-) | Sets the CropLeft setting.
+ |
+| [getCropBottom()](#getCropBottom--) | Gets the CropBottom setting.
+ |
+| [setCropBottom(Double value)](#setCropBottom-java.lang.Double-) | Sets the CropBottom setting.
+ |
+| [getCropRight()](#getCropRight--) | Gets the CropRight setting.
+ |
+| [setCropRight(Double value)](#setCropRight-java.lang.Double-) | Sets the CropRight setting.
+ |
+| [getCropAngle()](#getCropAngle--) | Gets the CropAngle setting.
+ |
+| [setCropAngle(Double value)](#setCropAngle-java.lang.Double-) | Sets the CropAngle setting.
+ |
+| [getCropWidth()](#getCropWidth--) | Gets the width of the resulting cropped image in
+CropUnits
+ units.
+ |
+| [setCropWidth(Double value)](#setCropWidth-java.lang.Double-) | Sets the width of the resulting cropped image in
+CropUnits
+ units.
+ |
+| [getCropHeight()](#getCropHeight--) | Gets the height of the resulting cropped image in
+CropUnits
+ units.
+ |
+| [setCropHeight(Double value)](#setCropHeight-java.lang.Double-) | Sets the height of the resulting cropped image in
+CropUnits
+ units.
+ |
+| [getCropUnits()](#getCropUnits--) | Gets units for
+CropWidth
+ and
+CropHeight
+.
+ |
+| [setCropUnits(XmpCropUnit value)](#setCropUnits-com.groupdocs.metadata.core.XmpCropUnit-) | Sets units for
+CropWidth
+ and
+CropHeight
+.
+ |
+| [getExposure()](#getExposure--) | Gets the Exposure setting.
+ |
+| [setExposure(Double value)](#setExposure-java.lang.Double-) | Sets the Exposure setting.
+ |
+| [getGreenHue()](#getGreenHue--) | Gets the Green Hue setting.
+ |
+| [setGreenHue(Integer value)](#setGreenHue-java.lang.Integer-) | Sets the Green Hue setting.
+ |
+| [getGreenSaturation()](#getGreenSaturation--) | Gets the Green Saturation setting.
+ |
+| [setGreenSaturation(Integer value)](#setGreenSaturation-java.lang.Integer-) | Sets the Green Saturation setting.
+ |
+| [hasCrop()](#hasCrop--) | Gets or sets the HasCrop value.
+ |
+| [setCrop(Boolean value)](#setCrop-java.lang.Boolean-) | Sets the HasCrop value.
+ |
+| [hasSettings()](#hasSettings--) | Gets or sets HasSettings value.
+ |
+| [setSettings(Boolean value)](#setSettings-java.lang.Boolean-) | Sets HasSettings value.
+ |
+| [getLuminanceSmoothing()](#getLuminanceSmoothing--) | Gets the LuminanceSmoothing setting.
+ |
+| [setLuminanceSmoothing(Integer value)](#setLuminanceSmoothing-java.lang.Integer-) | Sets the LuminanceSmoothing setting.
+ |
+| [getRawFileName()](#getRawFileName--) | Gets the file name for a raw file (not a complete path).
+ |
+| [setRawFileName(String value)](#setRawFileName-java.lang.String-) | Sets the file name for a raw file (not a complete path).
+ |
+| [getRedHue()](#getRedHue--) | Gets the Red Hue setting.
+ |
+| [setRedHue(Integer value)](#setRedHue-java.lang.Integer-) | Sets the Red Hue setting.
+ |
+| [getRedSaturation()](#getRedSaturation--) | Gets the Red Saturation setting.
+ |
+| [setRedSaturation(Integer value)](#setRedSaturation-java.lang.Integer-) | Sets the Red Saturation setting.
+ |
+| [getSaturation()](#getSaturation--) | Gets the Saturation setting.
+ |
+| [setSaturation(Integer value)](#setSaturation-java.lang.Integer-) | Sets the Saturation setting.
+ |
+| [getShadows()](#getShadows--) | Gets the Shadows setting.
+ |
+| [setShadows(Integer value)](#setShadows-java.lang.Integer-) | Sets the Shadows setting.
+ |
+| [getShadowTint()](#getShadowTint--) | Gets the ShadowTint setting.
+ |
+| [setShadowTint(Integer value)](#setShadowTint-java.lang.Integer-) | Sets the ShadowTint setting.
+ |
+| [getSharpness()](#getSharpness--) | Gets the Sharpness setting.
+ |
+| [setSharpness(Integer value)](#setSharpness-java.lang.Integer-) | Sets the Sharpness setting.
+ |
+| [getTemperature()](#getTemperature--) | Gets the Temperature setting.
+ |
+| [setTemperature(Integer value)](#setTemperature-java.lang.Integer-) | Sets the Temperature setting.
+ |
+| [getTint()](#getTint--) | Gets the Tint setting.
+ |
+| [setTint(Integer value)](#setTint-java.lang.Integer-) | Sets the Tint setting.
+ |
+| [getVersion()](#getVersion--) | Gets the version of the Camera Raw plug-in.
+ |
+| [setVersion(String value)](#setVersion-java.lang.String-) | Sets the version of the Camera Raw plug-in.
+ |
+| [getVignetteAmount()](#getVignetteAmount--) | Gets the Vignette Amount setting.
+ |
+| [setVignetteAmount(Integer value)](#setVignetteAmount-java.lang.Integer-) | Sets the Vignette Amount setting.
+ |
+| [getVignetteMidpoint()](#getVignetteMidpoint--) | Gets the Vignetting Midpoint setting.
+ |
+| [setVignetteMidpoint(Integer value)](#setVignetteMidpoint-java.lang.Integer-) | Sets the Vignetting Midpoint setting.
+ |
+| [getWhiteBalance()](#getWhiteBalance--) | Gets White Balance setting.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Adds string property.
+ |
+| [setWhiteBalance(XmpWhiteBalance whiteBalance)](#setWhiteBalance-com.groupdocs.metadata.core.XmpWhiteBalance-) | Sets the white balance.
+ |
### XmpCameraRawPackage() {#XmpCameraRawPackage--}
```
public XmpCameraRawPackage()
```
-Initializes a new instance of the XmpCameraRawPackage class.
+Initializes a new instance of the
+XmpCameraRawPackage
+ class.
+
### getAutoBrightness() {#getAutoBrightness--}
```
@@ -115,22 +217,30 @@ public final Boolean getAutoBrightness()
```
-Gets the AutoBrightness value. When true, Brightness is automatically adjusted.
+Gets the AutoBrightness value. When true,
+Brightness
+ is automatically adjusted.
+
**Returns:**
java.lang.Boolean - true if [automatic brightness]; otherwise, false .
+
### setAutoBrightness(Boolean value) {#setAutoBrightness-java.lang.Boolean-}
```
public final void setAutoBrightness(Boolean value)
```
-Sets the AutoBrightness value. When true, Brightness is automatically adjusted.
+Sets the AutoBrightness value. When true,
+Brightness
+ is automatically adjusted.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if [automatic brightness]; otherwise, false . |
+| value | java.lang.Boolean | true if [automatic brightness]; otherwise, false .
+ |
### getAutoContrast() {#getAutoContrast--}
```
@@ -140,8 +250,10 @@ public final Boolean getAutoContrast()
Gets the AutoContrast value. When true, "Contrast" is automatically adjusted.
+
**Returns:**
java.lang.Boolean - true if [automatic contrast]; otherwise, false .
+
### setAutoContrast(Boolean value) {#setAutoContrast-java.lang.Boolean-}
```
public final void setAutoContrast(Boolean value)
@@ -150,10 +262,12 @@ public final void setAutoContrast(Boolean value)
Sets the AutoContrast value. When true, "Contrast" is automatically adjusted.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if [automatic contrast]; otherwise, false . |
+| value | java.lang.Boolean | true if [automatic contrast]; otherwise, false .
+ |
### getAutoExposure() {#getAutoExposure--}
```
@@ -163,8 +277,10 @@ public final Boolean getAutoExposure()
Gets the AutoExposure value. When true, "Exposure" is automatically adjusted.
+
**Returns:**
java.lang.Boolean - true if [automatic exposure]; otherwise, false .
+
### setAutoExposure(Boolean value) {#setAutoExposure-java.lang.Boolean-}
```
public final void setAutoExposure(Boolean value)
@@ -173,10 +289,12 @@ public final void setAutoExposure(Boolean value)
Sets the AutoExposure value. When true, "Exposure" is automatically adjusted.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if [automatic exposure]; otherwise, false . |
+| value | java.lang.Boolean | true if [automatic exposure]; otherwise, false .
+ |
### getAutoShadows() {#getAutoShadows--}
```
@@ -186,8 +304,10 @@ public final Boolean getAutoShadows()
Gets the AutoShadows value. When true, "Shadows" is automatically adjusted.
+
**Returns:**
java.lang.Boolean - true if [automatic shadows]; otherwise, false .
+
### setAutoShadows(Boolean value) {#setAutoShadows-java.lang.Boolean-}
```
public final void setAutoShadows(Boolean value)
@@ -196,10 +316,12 @@ public final void setAutoShadows(Boolean value)
Sets the AutoShadows value. When true, "Shadows" is automatically adjusted.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if [automatic shadows]; otherwise, false . |
+| value | java.lang.Boolean | true if [automatic shadows]; otherwise, false .
+ |
### getBlueHue() {#getBlueHue--}
```
@@ -209,8 +331,10 @@ public final Integer getBlueHue()
Gets the BlueHue value. Null if undefined.
+
**Returns:**
java.lang.Integer - The blue hue.
+
### setBlueHue(Integer value) {#setBlueHue-java.lang.Integer-}
```
public final void setBlueHue(Integer value)
@@ -219,10 +343,12 @@ public final void setBlueHue(Integer value)
Sets the BlueHue value. Null if undefined.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The blue hue. |
+| value | java.lang.Integer | The blue hue.
+ |
### getBlueSaturation() {#getBlueSaturation--}
```
@@ -232,8 +358,10 @@ public final Integer getBlueSaturation()
Gets the BlueSaturation. Null if undefined.
+
**Returns:**
java.lang.Integer - The blue saturation.
+
### setBlueSaturation(Integer value) {#setBlueSaturation-java.lang.Integer-}
```
public final void setBlueSaturation(Integer value)
@@ -242,10 +370,12 @@ public final void setBlueSaturation(Integer value)
Sets the BlueSaturation. Null if undefined.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The blue saturation. |
+| value | java.lang.Integer | The blue saturation.
+ |
### getBrightness() {#getBrightness--}
```
@@ -255,8 +385,10 @@ public final Integer getBrightness()
Gets the Brightness value. Null if undefined.
+
**Returns:**
java.lang.Integer - The brightness.
+
### setBrightness(Integer value) {#setBrightness-java.lang.Integer-}
```
public final void setBrightness(Integer value)
@@ -265,10 +397,12 @@ public final void setBrightness(Integer value)
Sets the Brightness value. Null if undefined.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The brightness. |
+| value | java.lang.Integer | The brightness.
+ |
### getCameraProfile() {#getCameraProfile--}
```
@@ -278,8 +412,10 @@ public final String getCameraProfile()
Gets the CameraProfile value.
+
**Returns:**
java.lang.String - The camera profile.
+
### setCameraProfile(String value) {#setCameraProfile-java.lang.String-}
```
public final void setCameraProfile(String value)
@@ -288,10 +424,12 @@ public final void setCameraProfile(String value)
Sets the CameraProfile value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The camera profile. |
+| value | java.lang.String | The camera profile.
+ |
### getChromaticAberrationB() {#getChromaticAberrationB--}
```
@@ -301,8 +439,10 @@ public final Integer getChromaticAberrationB()
Gets the "Chromatic Aberration, Fix Blue/Yellow Fringe" setting. Null if undefined.
+
**Returns:**
java.lang.Integer - The chromatic aberration B.
+
### setChromaticAberrationB(Integer value) {#setChromaticAberrationB-java.lang.Integer-}
```
public final void setChromaticAberrationB(Integer value)
@@ -311,10 +451,12 @@ public final void setChromaticAberrationB(Integer value)
Sets the "Chromatic Aberration, Fix Blue/Yellow Fringe" setting. Null if undefined.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The chromatic aberration B. |
+| value | java.lang.Integer | The chromatic aberration B.
+ |
### getChromaticAberrationR() {#getChromaticAberrationR--}
```
@@ -324,8 +466,10 @@ public final Integer getChromaticAberrationR()
Gets the "Chromatic Aberration, Fix Red/Cyan Fringe" setting. Null if undefined.
+
**Returns:**
java.lang.Integer - The chromatic aberration R.
+
### setChromaticAberrationR(Integer value) {#setChromaticAberrationR-java.lang.Integer-}
```
public final void setChromaticAberrationR(Integer value)
@@ -334,10 +478,12 @@ public final void setChromaticAberrationR(Integer value)
Sets the "Chromatic Aberration, Fix Red/Cyan Fringe" setting. Null if undefined.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The chromatic aberration R. |
+| value | java.lang.Integer | The chromatic aberration R.
+ |
### getColorNoiseReduction() {#getColorNoiseReduction--}
```
@@ -347,8 +493,10 @@ public final Integer getColorNoiseReduction()
Gets the Color Noise Reduction setting. Range 0 to 100.
+
**Returns:**
java.lang.Integer - The color noise reduction.
+
### setColorNoiseReduction(Integer value) {#setColorNoiseReduction-java.lang.Integer-}
```
public final void setColorNoiseReduction(Integer value)
@@ -357,10 +505,12 @@ public final void setColorNoiseReduction(Integer value)
Sets the Color Noise Reduction setting. Range 0 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The color noise reduction. |
+| value | java.lang.Integer | The color noise reduction.
+ |
### getContrast() {#getContrast--}
```
@@ -370,8 +520,10 @@ public final Integer getContrast()
Gets the Contrast setting. Range -50 to 100.
+
**Returns:**
java.lang.Integer - The contrast.
+
### setContrast(Integer value) {#setContrast-java.lang.Integer-}
```
public final void setContrast(Integer value)
@@ -380,10 +532,12 @@ public final void setContrast(Integer value)
Sets the Contrast setting. Range -50 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The contrast. |
+| value | java.lang.Integer | The contrast.
+ |
### getCropTop() {#getCropTop--}
```
@@ -393,8 +547,10 @@ public final Double getCropTop()
Gets the CropTop setting. When HasCrop is true, top of the crop rectangle.
+
**Returns:**
java.lang.Double - The crop top.
+
### setCropTop(Double value) {#setCropTop-java.lang.Double-}
```
public final void setCropTop(Double value)
@@ -403,10 +559,12 @@ public final void setCropTop(Double value)
Sets the CropTop setting. When HasCrop is true, top of the crop rectangle.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The crop top. |
+| value | java.lang.Double | The crop top.
+ |
### getCropLeft() {#getCropLeft--}
```
@@ -416,8 +574,10 @@ public final Double getCropLeft()
Gets the CropLeft setting. When HasCrop is true, left of the crop rectangle.
+
**Returns:**
java.lang.Double - The crop left.
+
### setCropLeft(Double value) {#setCropLeft-java.lang.Double-}
```
public final void setCropLeft(Double value)
@@ -426,10 +586,12 @@ public final void setCropLeft(Double value)
Sets the CropLeft setting. When HasCrop is true, left of the crop rectangle.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The crop left. |
+| value | java.lang.Double | The crop left.
+ |
### getCropBottom() {#getCropBottom--}
```
@@ -439,8 +601,10 @@ public final Double getCropBottom()
Gets the CropBottom setting. When HasCrop is true, bottom of the crop rectangle.
+
**Returns:**
java.lang.Double - The crop bottom.
+
### setCropBottom(Double value) {#setCropBottom-java.lang.Double-}
```
public final void setCropBottom(Double value)
@@ -449,10 +613,12 @@ public final void setCropBottom(Double value)
Sets the CropBottom setting. When HasCrop is true, bottom of the crop rectangle.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The crop bottom. |
+| value | java.lang.Double | The crop bottom.
+ |
### getCropRight() {#getCropRight--}
```
@@ -462,8 +628,10 @@ public final Double getCropRight()
Gets the CropRight setting. When HasCrop is true, right of the crop rectangle.
+
**Returns:**
java.lang.Double - The crop right.
+
### setCropRight(Double value) {#setCropRight-java.lang.Double-}
```
public final void setCropRight(Double value)
@@ -472,10 +640,12 @@ public final void setCropRight(Double value)
Sets the CropRight setting. When HasCrop is true, right of the crop rectangle.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The crop right. |
+| value | java.lang.Double | The crop right.
+ |
### getCropAngle() {#getCropAngle--}
```
@@ -485,8 +655,10 @@ public final Double getCropAngle()
Gets the CropAngle setting. When HasCrop is true, angle of the crop rectangle.
+
**Returns:**
java.lang.Double - The crop angle.
+
### setCropAngle(Double value) {#setCropAngle-java.lang.Double-}
```
public final void setCropAngle(Double value)
@@ -495,10 +667,12 @@ public final void setCropAngle(Double value)
Sets the CropAngle setting. When HasCrop is true, angle of the crop rectangle.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The crop angle. |
+| value | java.lang.Double | The crop angle.
+ |
### getCropWidth() {#getCropWidth--}
```
@@ -506,22 +680,30 @@ public final Double getCropWidth()
```
-Gets the width of the resulting cropped image in CropUnits units.
+Gets the width of the resulting cropped image in
+CropUnits
+ units.
+
**Returns:**
java.lang.Double - The width of the crop.
+
### setCropWidth(Double value) {#setCropWidth-java.lang.Double-}
```
public final void setCropWidth(Double value)
```
-Sets the width of the resulting cropped image in CropUnits units.
+Sets the width of the resulting cropped image in
+CropUnits
+ units.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The width of the crop. |
+| value | java.lang.Double | The width of the crop.
+ |
### getCropHeight() {#getCropHeight--}
```
@@ -529,22 +711,30 @@ public final Double getCropHeight()
```
-Gets the height of the resulting cropped image in CropUnits units.
+Gets the height of the resulting cropped image in
+CropUnits
+ units.
+
**Returns:**
java.lang.Double - The height of the crop.
+
### setCropHeight(Double value) {#setCropHeight-java.lang.Double-}
```
public final void setCropHeight(Double value)
```
-Sets the height of the resulting cropped image in CropUnits units.
+Sets the height of the resulting cropped image in
+CropUnits
+ units.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The height of the crop. |
+| value | java.lang.Double | The height of the crop.
+ |
### getCropUnits() {#getCropUnits--}
```
@@ -552,22 +742,34 @@ public final XmpCropUnit getCropUnits()
```
-Gets units for CropWidth and CropHeight .
+Gets units for
+CropWidth
+ and
+CropHeight
+.
+
**Returns:**
[XmpCropUnit](../../com.groupdocs.metadata.core/xmpcropunit) - The crop units.
+
### setCropUnits(XmpCropUnit value) {#setCropUnits-com.groupdocs.metadata.core.XmpCropUnit-}
```
public final void setCropUnits(XmpCropUnit value)
```
-Sets units for CropWidth and CropHeight .
+Sets units for
+CropWidth
+ and
+CropHeight
+.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpCropUnit](../../com.groupdocs.metadata.core/xmpcropunit) | The crop units. |
+| value | [XmpCropUnit](../../com.groupdocs.metadata.core/xmpcropunit) | The crop units.
+ |
### getExposure() {#getExposure--}
```
@@ -577,8 +779,10 @@ public final Double getExposure()
Gets the Exposure setting.
+
**Returns:**
java.lang.Double - The exposure.
+
### setExposure(Double value) {#setExposure-java.lang.Double-}
```
public final void setExposure(Double value)
@@ -587,10 +791,12 @@ public final void setExposure(Double value)
Sets the Exposure setting.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The exposure. |
+| value | java.lang.Double | The exposure.
+ |
### getGreenHue() {#getGreenHue--}
```
@@ -600,8 +806,10 @@ public final Integer getGreenHue()
Gets the Green Hue setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The green hue.
+
### setGreenHue(Integer value) {#setGreenHue-java.lang.Integer-}
```
public final void setGreenHue(Integer value)
@@ -610,10 +818,12 @@ public final void setGreenHue(Integer value)
Sets the Green Hue setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The green hue. |
+| value | java.lang.Integer | The green hue.
+ |
### getGreenSaturation() {#getGreenSaturation--}
```
@@ -623,8 +833,10 @@ public final Integer getGreenSaturation()
Gets the Green Saturation setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The green saturation.
+
### setGreenSaturation(Integer value) {#setGreenSaturation-java.lang.Integer-}
```
public final void setGreenSaturation(Integer value)
@@ -633,10 +845,12 @@ public final void setGreenSaturation(Integer value)
Sets the Green Saturation setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The green saturation. |
+| value | java.lang.Integer | The green saturation.
+ |
### hasCrop() {#hasCrop--}
```
@@ -646,8 +860,10 @@ public final Boolean hasCrop()
Gets or sets the HasCrop value. When true, the image has a cropping rectangle.
+
**Returns:**
java.lang.Boolean - true if the image has a cropping rectangle; otherwise, false .
+
### setCrop(Boolean value) {#setCrop-java.lang.Boolean-}
```
public final void setCrop(Boolean value)
@@ -656,10 +872,12 @@ public final void setCrop(Boolean value)
Sets the HasCrop value. When true, the image has a cropping rectangle.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if the image has a cropping rectangle; otherwise, false . |
+| value | java.lang.Boolean | true if the image has a cropping rectangle; otherwise, false .
+ |
### hasSettings() {#hasSettings--}
```
@@ -669,8 +887,10 @@ public final Boolean hasSettings()
Gets or sets HasSettings value. When true, non-default camera raw settings.
+
**Returns:**
java.lang.Boolean - true if image has non-default camera raw settings; otherwise, false .
+
### setSettings(Boolean value) {#setSettings-java.lang.Boolean-}
```
public final void setSettings(Boolean value)
@@ -679,10 +899,12 @@ public final void setSettings(Boolean value)
Sets HasSettings value. When true, non-default camera raw settings.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if image has non-default camera raw settings; otherwise, false . |
+| value | java.lang.Boolean | true if image has non-default camera raw settings; otherwise, false .
+ |
### getLuminanceSmoothing() {#getLuminanceSmoothing--}
```
@@ -692,8 +914,10 @@ public final Integer getLuminanceSmoothing()
Gets the LuminanceSmoothing setting. Range 0 to 100.
+
**Returns:**
java.lang.Integer - The luminance smoothing.
+
### setLuminanceSmoothing(Integer value) {#setLuminanceSmoothing-java.lang.Integer-}
```
public final void setLuminanceSmoothing(Integer value)
@@ -702,10 +926,12 @@ public final void setLuminanceSmoothing(Integer value)
Sets the LuminanceSmoothing setting. Range 0 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The luminance smoothing. |
+| value | java.lang.Integer | The luminance smoothing.
+ |
### getRawFileName() {#getRawFileName--}
```
@@ -715,8 +941,10 @@ public final String getRawFileName()
Gets the file name for a raw file (not a complete path).
+
**Returns:**
java.lang.String - The name of the raw file.
+
### setRawFileName(String value) {#setRawFileName-java.lang.String-}
```
public final void setRawFileName(String value)
@@ -725,10 +953,12 @@ public final void setRawFileName(String value)
Sets the file name for a raw file (not a complete path).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the raw file. |
+| value | java.lang.String | The name of the raw file.
+ |
### getRedHue() {#getRedHue--}
```
@@ -738,8 +968,10 @@ public final Integer getRedHue()
Gets the Red Hue setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The red hue.
+
### setRedHue(Integer value) {#setRedHue-java.lang.Integer-}
```
public final void setRedHue(Integer value)
@@ -748,10 +980,12 @@ public final void setRedHue(Integer value)
Sets the Red Hue setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The red hue. |
+| value | java.lang.Integer | The red hue.
+ |
### getRedSaturation() {#getRedSaturation--}
```
@@ -761,8 +995,10 @@ public final Integer getRedSaturation()
Gets the Red Saturation setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The red saturation.
+
### setRedSaturation(Integer value) {#setRedSaturation-java.lang.Integer-}
```
public final void setRedSaturation(Integer value)
@@ -771,10 +1007,12 @@ public final void setRedSaturation(Integer value)
Sets the Red Saturation setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The red saturation. |
+| value | java.lang.Integer | The red saturation.
+ |
### getSaturation() {#getSaturation--}
```
@@ -784,8 +1022,10 @@ public final Integer getSaturation()
Gets the Saturation setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The saturation.
+
### setSaturation(Integer value) {#setSaturation-java.lang.Integer-}
```
public final void setSaturation(Integer value)
@@ -794,10 +1034,12 @@ public final void setSaturation(Integer value)
Sets the Saturation setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The saturation. |
+| value | java.lang.Integer | The saturation.
+ |
### getShadows() {#getShadows--}
```
@@ -807,8 +1049,10 @@ public final Integer getShadows()
Gets the Shadows setting. Range 0 to 100.
+
**Returns:**
java.lang.Integer - The shadows.
+
### setShadows(Integer value) {#setShadows-java.lang.Integer-}
```
public final void setShadows(Integer value)
@@ -817,10 +1061,12 @@ public final void setShadows(Integer value)
Sets the Shadows setting. Range 0 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The shadows. |
+| value | java.lang.Integer | The shadows.
+ |
### getShadowTint() {#getShadowTint--}
```
@@ -830,8 +1076,10 @@ public final Integer getShadowTint()
Gets the ShadowTint setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The shadow tint.
+
### setShadowTint(Integer value) {#setShadowTint-java.lang.Integer-}
```
public final void setShadowTint(Integer value)
@@ -840,10 +1088,12 @@ public final void setShadowTint(Integer value)
Sets the ShadowTint setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The shadow tint. |
+| value | java.lang.Integer | The shadow tint.
+ |
### getSharpness() {#getSharpness--}
```
@@ -853,8 +1103,10 @@ public final Integer getSharpness()
Gets the Sharpness setting. Range 0 to 100.
+
**Returns:**
java.lang.Integer - The sharpness.
+
### setSharpness(Integer value) {#setSharpness-java.lang.Integer-}
```
public final void setSharpness(Integer value)
@@ -863,10 +1115,12 @@ public final void setSharpness(Integer value)
Sets the Sharpness setting. Range 0 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The sharpness. |
+| value | java.lang.Integer | The sharpness.
+ |
### getTemperature() {#getTemperature--}
```
@@ -876,8 +1130,10 @@ public final Integer getTemperature()
Gets the Temperature setting. Range 2000 to 50000.
+
**Returns:**
java.lang.Integer - The temperature.
+
### setTemperature(Integer value) {#setTemperature-java.lang.Integer-}
```
public final void setTemperature(Integer value)
@@ -886,10 +1142,12 @@ public final void setTemperature(Integer value)
Sets the Temperature setting. Range 2000 to 50000.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The temperature. |
+| value | java.lang.Integer | The temperature.
+ |
### getTint() {#getTint--}
```
@@ -899,8 +1157,10 @@ public final Integer getTint()
Gets the Tint setting. Range -150 to 150.
+
**Returns:**
java.lang.Integer - The tint.
+
### setTint(Integer value) {#setTint-java.lang.Integer-}
```
public final void setTint(Integer value)
@@ -909,10 +1169,12 @@ public final void setTint(Integer value)
Sets the Tint setting. Range -150 to 150.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The tint. |
+| value | java.lang.Integer | The tint.
+ |
### getVersion() {#getVersion--}
```
@@ -922,8 +1184,10 @@ public final String getVersion()
Gets the version of the Camera Raw plug-in.
+
**Returns:**
java.lang.String - The version.
+
### setVersion(String value) {#setVersion-java.lang.String-}
```
public final void setVersion(String value)
@@ -932,10 +1196,12 @@ public final void setVersion(String value)
Sets the version of the Camera Raw plug-in.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The version. |
+| value | java.lang.String | The version.
+ |
### getVignetteAmount() {#getVignetteAmount--}
```
@@ -945,8 +1211,10 @@ public final Integer getVignetteAmount()
Gets the Vignette Amount setting. Range -100 to 100.
+
**Returns:**
java.lang.Integer - The vignette amount.
+
### setVignetteAmount(Integer value) {#setVignetteAmount-java.lang.Integer-}
```
public final void setVignetteAmount(Integer value)
@@ -955,10 +1223,12 @@ public final void setVignetteAmount(Integer value)
Sets the Vignette Amount setting. Range -100 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The vignette amount. |
+| value | java.lang.Integer | The vignette amount.
+ |
### getVignetteMidpoint() {#getVignetteMidpoint--}
```
@@ -968,8 +1238,10 @@ public final Integer getVignetteMidpoint()
Gets the Vignetting Midpoint setting. Range 0 to 100.
+
**Returns:**
java.lang.Integer - The Vignette Midpoint.
+
### setVignetteMidpoint(Integer value) {#setVignetteMidpoint-java.lang.Integer-}
```
public final void setVignetteMidpoint(Integer value)
@@ -978,10 +1250,12 @@ public final void setVignetteMidpoint(Integer value)
Sets the Vignetting Midpoint setting. Range 0 to 100.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The Vignette Midpoint. |
+| value | java.lang.Integer | The Vignette Midpoint.
+ |
### getWhiteBalance() {#getWhiteBalance--}
```
@@ -989,10 +1263,14 @@ public final String getWhiteBalance()
```
-Gets White Balance setting. Use SetWhiteBalance to set white balance value.
+Gets White Balance setting. Use
+SetWhiteBalance
+ to set white balance value.
+
**Returns:**
java.lang.String - The white balance.
+
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
public void set(String name, String value)
@@ -1001,11 +1279,14 @@ public void set(String name, String value)
Adds string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata key. |
-| value | java.lang.String | XMP metadata value. |
+| name | java.lang.String | XMP metadata key.
+ |
+| value | java.lang.String | XMP metadata value.
+ |
### setWhiteBalance(XmpWhiteBalance whiteBalance) {#setWhiteBalance-com.groupdocs.metadata.core.XmpWhiteBalance-}
```
@@ -1015,8 +1296,10 @@ public final void setWhiteBalance(XmpWhiteBalance whiteBalance)
Sets the white balance.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| whiteBalance | [XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) | The white balance. |
+| whiteBalance | [XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) | The white balance.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpclosedchoice/_index.md b/english/java/com.groupdocs.metadata.core/xmpclosedchoice/_index.md
index 071f622f69..e59597b268 100644
--- a/english/java/com.groupdocs.metadata.core/xmpclosedchoice/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpclosedchoice/_index.md
@@ -17,15 +17,24 @@ public abstract class XmpClosedChoice implements System.IEquatable other)](#equals-com.groupdocs.metadata.core.XmpClosedChoice-T--) | Indicates whether the current object is equal to another object of the same type. |
-| [toString()](#toString--) | Returns a String that represents this instance. |
+| [hashCode()](#hashCode--) | Returns a hash code for this instance.
+ |
+| [equals(Object obj)](#equals-java.lang.Object-) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [equals(XmpClosedChoice other)](#equals-com.groupdocs.metadata.core.XmpClosedChoice-T--) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [toString()](#toString--) | Returns a
+String
+ that represents this instance.
+ |
### hashCode() {#hashCode--}
```
public int hashCode()
@@ -34,8 +43,10 @@ public int hashCode()
Returns a hash code for this instance.
+
**Returns:**
int - A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
### equals(Object obj) {#equals-java.lang.Object-}
```
public boolean equals(Object obj)
@@ -44,13 +55,16 @@ public boolean equals(Object obj)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| obj | java.lang.Object | An object to compare with this object. |
+| obj | java.lang.Object | An object to compare with this object.
+ |
**Returns:**
boolean - true if the current object is equal to the obj parameter; otherwise, false.
+
### equals(XmpClosedChoice other) {#equals-com.groupdocs.metadata.core.XmpClosedChoice-T--}
```
public final boolean equals(XmpClosedChoice other)
@@ -59,20 +73,27 @@ public final boolean equals(XmpClosedChoice other)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| other | [XmpClosedChoice](../../com.groupdocs.metadata.core/xmpclosedchoice) | An object to compare with this object. |
+| other | [XmpClosedChoice](../../com.groupdocs.metadata.core/xmpclosedchoice) | An object to compare with this object.
+ |
**Returns:**
boolean - true if the current object is equal to the other parameter; otherwise, false.
+
### toString() {#toString--}
```
public String toString()
```
-Returns a String that represents this instance.
+Returns a
+String
+ that represents this instance.
+
**Returns:**
java.lang.String - A String that represents this instance.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpcolorantbase/_index.md b/english/java/com.groupdocs.metadata.core/xmpcolorantbase/_index.md
index 6537b9aabd..abc657abac 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcolorantbase/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcolorantbase/_index.md
@@ -13,15 +13,21 @@ public class XmpColorantBase extends XmpComplexType
```
A structure containing the characteristics of a colorant (swatch) used in a document.
+
## Methods
| Method | Description |
| --- | --- |
-| [getMode()](#getMode--) | Gets the colour space in which the colour is defined. |
-| [getSwatchName()](#getSwatchName--) | Gets the name of the swatch. |
-| [setSwatchName(String value)](#setSwatchName-java.lang.String-) | Sets the name of the swatch. |
-| [getColorType()](#getColorType--) | Gets the type of color. |
-| [setColorType(XmpColorType value)](#setColorType-com.groupdocs.metadata.core.XmpColorType-) | Sets the type of color. |
+| [getMode()](#getMode--) | Gets the colour space in which the colour is defined.
+ |
+| [getSwatchName()](#getSwatchName--) | Gets the name of the swatch.
+ |
+| [setSwatchName(String value)](#setSwatchName-java.lang.String-) | Sets the name of the swatch.
+ |
+| [getColorType()](#getColorType--) | Gets the type of color.
+ |
+| [setColorType(XmpColorType value)](#setColorType-com.groupdocs.metadata.core.XmpColorType-) | Sets the type of color.
+ |
### getMode() {#getMode--}
```
public final XmpColorantColorMode getMode()
@@ -30,8 +36,10 @@ public final XmpColorantColorMode getMode()
Gets the colour space in which the colour is defined. One of: CMYK, RGB, LAB.
+
**Returns:**
[XmpColorantColorMode](../../com.groupdocs.metadata.core/xmpcolorantcolormode) - The color mode.
+
### getSwatchName() {#getSwatchName--}
```
public final String getSwatchName()
@@ -40,8 +48,10 @@ public final String getSwatchName()
Gets the name of the swatch.
+
**Returns:**
java.lang.String - The name of the swatch.
+
### setSwatchName(String value) {#setSwatchName-java.lang.String-}
```
public final void setSwatchName(String value)
@@ -50,10 +60,12 @@ public final void setSwatchName(String value)
Sets the name of the swatch.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the swatch. |
+| value | java.lang.String | The name of the swatch.
+ |
### getColorType() {#getColorType--}
```
@@ -63,8 +75,10 @@ public final XmpColorType getColorType()
Gets the type of color.
+
**Returns:**
[XmpColorType](../../com.groupdocs.metadata.core/xmpcolortype) - The color type.
+
### setColorType(XmpColorType value) {#setColorType-com.groupdocs.metadata.core.XmpColorType-}
```
public final void setColorType(XmpColorType value)
@@ -73,8 +87,10 @@ public final void setColorType(XmpColorType value)
Sets the type of color.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpColorType](../../com.groupdocs.metadata.core/xmpcolortype) | The color type. |
+| value | [XmpColorType](../../com.groupdocs.metadata.core/xmpcolortype) | The color type.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpcolorantcmyk/_index.md b/english/java/com.groupdocs.metadata.core/xmpcolorantcmyk/_index.md
index ee25d7fd68..3eb75adca3 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcolorantcmyk/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcolorantcmyk/_index.md
@@ -13,37 +13,57 @@ public final class XmpColorantCmyk extends XmpColorantBase
```
Represents the CMYK Colorant.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpColorantCmyk()](#XmpColorantCmyk--) | Initializes a new instance of the XmpColorantCmyk class. |
-| [XmpColorantCmyk(double cyan, double magenta, double yellow, double black)](#XmpColorantCmyk-double-double-double-double-) | Initializes a new instance of the XmpColorantCmyk class. |
+| [XmpColorantCmyk()](#XmpColorantCmyk--) | Initializes a new instance of the
+XmpColorantCmyk
+ class.
+ |
+| [XmpColorantCmyk(double cyan, double magenta, double yellow, double black)](#XmpColorantCmyk-double-double-double-double-) | Initializes a new instance of the
+XmpColorantCmyk
+ class.
+ |
## Fields
| Field | Description |
| --- | --- |
-| [ColorValueMax](#ColorValueMax) | Color max value in CMYK colorant. |
-| [ColorValueMin](#ColorValueMin) | Color min value in CMYK colorant. |
+| [ColorValueMax](#ColorValueMax) | Color max value in CMYK colorant.
+ |
+| [ColorValueMin](#ColorValueMin) | Color min value in CMYK colorant.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getBlack()](#getBlack--) | Gets the black component. |
-| [setBlack(Double value)](#setBlack-java.lang.Double-) | Sets the black component. |
-| [getCyan()](#getCyan--) | Gets the cyan component. |
-| [setCyan(Double value)](#setCyan-java.lang.Double-) | Sets the cyan component. |
-| [getMagenta()](#getMagenta--) | Gets the magenta component. |
-| [setMagenta(Double value)](#setMagenta-java.lang.Double-) | Sets the magenta component. |
-| [getYellow()](#getYellow--) | Gets the yellow component. |
-| [setYellow(Double value)](#setYellow-java.lang.Double-) | Sets the yellow component. |
+| [getBlack()](#getBlack--) | Gets the black component.
+ |
+| [setBlack(Double value)](#setBlack-java.lang.Double-) | Sets the black component.
+ |
+| [getCyan()](#getCyan--) | Gets the cyan component.
+ |
+| [setCyan(Double value)](#setCyan-java.lang.Double-) | Sets the cyan component.
+ |
+| [getMagenta()](#getMagenta--) | Gets the magenta component.
+ |
+| [setMagenta(Double value)](#setMagenta-java.lang.Double-) | Sets the magenta component.
+ |
+| [getYellow()](#getYellow--) | Gets the yellow component.
+ |
+| [setYellow(Double value)](#setYellow-java.lang.Double-) | Sets the yellow component.
+ |
### XmpColorantCmyk() {#XmpColorantCmyk--}
```
public XmpColorantCmyk()
```
-Initializes a new instance of the XmpColorantCmyk class.
+Initializes a new instance of the
+XmpColorantCmyk
+ class.
+
### XmpColorantCmyk(double cyan, double magenta, double yellow, double black) {#XmpColorantCmyk-double-double-double-double-}
```
@@ -51,15 +71,22 @@ public XmpColorantCmyk(double cyan, double magenta, double yellow, double black)
```
-Initializes a new instance of the XmpColorantCmyk class.
+Initializes a new instance of the
+XmpColorantCmyk
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| cyan | double | Cyan component. |
-| magenta | double | Magenta component. |
-| yellow | double | Yellow component. |
-| black | double | Black component. |
+| cyan | double | Cyan component.
+ |
+| magenta | double | Magenta component.
+ |
+| yellow | double | Yellow component.
+ |
+| black | double | Black component.
+ |
### ColorValueMax {#ColorValueMax}
```
@@ -69,6 +96,7 @@ public static final double ColorValueMax
Color max value in CMYK colorant.
+
### ColorValueMin {#ColorValueMin}
```
public static final double ColorValueMin
@@ -77,6 +105,7 @@ public static final double ColorValueMin
Color min value in CMYK colorant.
+
### getBlack() {#getBlack--}
```
public final Double getBlack()
@@ -85,8 +114,10 @@ public final Double getBlack()
Gets the black component.
+
**Returns:**
java.lang.Double - The black value.
+
### setBlack(Double value) {#setBlack-java.lang.Double-}
```
public final void setBlack(Double value)
@@ -95,10 +126,12 @@ public final void setBlack(Double value)
Sets the black component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The black value. |
+| value | java.lang.Double | The black value.
+ |
### getCyan() {#getCyan--}
```
@@ -108,8 +141,10 @@ public final Double getCyan()
Gets the cyan component.
+
**Returns:**
java.lang.Double - The cyan value.
+
### setCyan(Double value) {#setCyan-java.lang.Double-}
```
public final void setCyan(Double value)
@@ -118,10 +153,12 @@ public final void setCyan(Double value)
Sets the cyan component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The cyan value. |
+| value | java.lang.Double | The cyan value.
+ |
### getMagenta() {#getMagenta--}
```
@@ -131,8 +168,10 @@ public final Double getMagenta()
Gets the magenta component.
+
**Returns:**
java.lang.Double - The magenta value.
+
### setMagenta(Double value) {#setMagenta-java.lang.Double-}
```
public final void setMagenta(Double value)
@@ -141,10 +180,12 @@ public final void setMagenta(Double value)
Sets the magenta component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The magenta value. |
+| value | java.lang.Double | The magenta value.
+ |
### getYellow() {#getYellow--}
```
@@ -154,8 +195,10 @@ public final Double getYellow()
Gets the yellow component.
+
**Returns:**
java.lang.Double - The yellow value.
+
### setYellow(Double value) {#setYellow-java.lang.Double-}
```
public final void setYellow(Double value)
@@ -164,8 +207,10 @@ public final void setYellow(Double value)
Sets the yellow component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The yellow value. |
+| value | java.lang.Double | The yellow value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpcolorantcolormode/_index.md b/english/java/com.groupdocs.metadata.core/xmpcolorantcolormode/_index.md
index 691fd56a25..6377d2e6a4 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcolorantcolormode/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcolorantcolormode/_index.md
@@ -15,15 +15,22 @@ java.lang.Object, java.lang.Enum
public enum XmpColorantColorMode extends Enum implements IEnumValue
```
-Represents color mode in XmpColorantBase .
+Represents color mode in
+XmpColorantBase
+.
+
## Fields
| Field | Description |
| --- | --- |
-| [Undefined](#Undefined) | The color mode is undefined. |
-| [Cmyk](#Cmyk) | CMYK color mode. |
-| [Rgb](#Rgb) | RGB color mode. |
-| [Lab](#Lab) | LAB color mode. |
+| [Undefined](#Undefined) | The color mode is undefined.
+ |
+| [Cmyk](#Cmyk) | CMYK color mode.
+ |
+| [Rgb](#Rgb) | RGB color mode.
+ |
+| [Lab](#Lab) | LAB color mode.
+ |
## Methods
| Method | Description |
@@ -45,6 +52,7 @@ public static final XmpColorantColorMode Undefined
The color mode is undefined.
+
### Cmyk {#Cmyk}
```
public static final XmpColorantColorMode Cmyk
@@ -53,6 +61,7 @@ public static final XmpColorantColorMode Cmyk
CMYK color mode.
+
### Rgb {#Rgb}
```
public static final XmpColorantColorMode Rgb
@@ -61,6 +70,7 @@ public static final XmpColorantColorMode Rgb
RGB color mode.
+
### Lab {#Lab}
```
public static final XmpColorantColorMode Lab
@@ -69,6 +79,7 @@ public static final XmpColorantColorMode Lab
LAB color mode.
+
### values() {#values--}
```
public static XmpColorantColorMode[] values()
@@ -127,6 +138,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -137,6 +149,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -152,6 +165,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -167,6 +181,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -177,5 +192,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/xmpcolorantlab/_index.md b/english/java/com.groupdocs.metadata.core/xmpcolorantlab/_index.md
index 40e03c5277..fdd2f03770 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcolorantlab/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcolorantlab/_index.md
@@ -13,35 +13,53 @@ public final class XmpColorantLab extends XmpColorantBase
```
Represents the LAB Colorant.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpColorantLab()](#XmpColorantLab--) | Initializes a new instance of the XmpColorantLab class. |
-| [XmpColorantLab(byte a, byte b, double l)](#XmpColorantLab-byte-byte-double-) | Initializes a new instance of the XmpColorantLab class. |
+| [XmpColorantLab()](#XmpColorantLab--) | Initializes a new instance of the
+XmpColorantLab
+ class.
+ |
+| [XmpColorantLab(byte a, byte b, double l)](#XmpColorantLab-byte-byte-double-) | Initializes a new instance of the
+XmpColorantLab
+ class.
+ |
## Fields
| Field | Description |
| --- | --- |
-| [MinL](#MinL) | Component L min value. |
-| [MaxL](#MaxL) | Component L max value. |
+| [MinL](#MinL) | Component L min value.
+ |
+| [MaxL](#MaxL) | Component L max value.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getA()](#getA--) | Gets the A component. |
-| [setA(Byte value)](#setA-java.lang.Byte-) | Sets the A component. |
-| [getB()](#getB--) | Gets the B component. |
-| [setB(Byte value)](#setB-java.lang.Byte-) | Sets the B component. |
-| [getL()](#getL--) | Gets the L component. |
-| [setL(Double value)](#setL-java.lang.Double-) | Sets the L component. |
+| [getA()](#getA--) | Gets the A component.
+ |
+| [setA(Byte value)](#setA-java.lang.Byte-) | Sets the A component.
+ |
+| [getB()](#getB--) | Gets the B component.
+ |
+| [setB(Byte value)](#setB-java.lang.Byte-) | Sets the B component.
+ |
+| [getL()](#getL--) | Gets the L component.
+ |
+| [setL(Double value)](#setL-java.lang.Double-) | Sets the L component.
+ |
### XmpColorantLab() {#XmpColorantLab--}
```
public XmpColorantLab()
```
-Initializes a new instance of the XmpColorantLab class.
+Initializes a new instance of the
+XmpColorantLab
+ class.
+
### XmpColorantLab(byte a, byte b, double l) {#XmpColorantLab-byte-byte-double-}
```
@@ -49,14 +67,20 @@ public XmpColorantLab(byte a, byte b, double l)
```
-Initializes a new instance of the XmpColorantLab class.
+Initializes a new instance of the
+XmpColorantLab
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| a | byte | A component. |
-| b | byte | B component. |
-| l | double | L component. |
+| a | byte | A component.
+ |
+| b | byte | B component.
+ |
+| l | double | L component.
+ |
### MinL {#MinL}
```
@@ -66,6 +90,7 @@ public static final double MinL
Component L min value.
+
### MaxL {#MaxL}
```
public static final double MaxL
@@ -74,6 +99,7 @@ public static final double MaxL
Component L max value.
+
### getA() {#getA--}
```
public final Byte getA()
@@ -82,8 +108,10 @@ public final Byte getA()
Gets the A component.
+
**Returns:**
java.lang.Byte - The A component.
+
### setA(Byte value) {#setA-java.lang.Byte-}
```
public final void setA(Byte value)
@@ -92,10 +120,12 @@ public final void setA(Byte value)
Sets the A component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Byte | The A component. |
+| value | java.lang.Byte | The A component.
+ |
### getB() {#getB--}
```
@@ -105,8 +135,10 @@ public final Byte getB()
Gets the B component.
+
**Returns:**
java.lang.Byte - The B component.
+
### setB(Byte value) {#setB-java.lang.Byte-}
```
public final void setB(Byte value)
@@ -115,10 +147,12 @@ public final void setB(Byte value)
Sets the B component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Byte | The B component. |
+| value | java.lang.Byte | The B component.
+ |
### getL() {#getL--}
```
@@ -128,8 +162,10 @@ public final Double getL()
Gets the L component.
+
**Returns:**
java.lang.Double - The L component.
+
### setL(Double value) {#setL-java.lang.Double-}
```
public final void setL(Double value)
@@ -138,8 +174,10 @@ public final void setL(Double value)
Sets the L component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The L component. |
+| value | java.lang.Double | The L component.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpcolorantrgb/_index.md b/english/java/com.groupdocs.metadata.core/xmpcolorantrgb/_index.md
index 219b7e5ffe..ab3fe4923b 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcolorantrgb/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcolorantrgb/_index.md
@@ -13,29 +13,45 @@ public final class XmpColorantRgb extends XmpColorantBase
```
Represents the RGB Colorant.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpColorantRgb()](#XmpColorantRgb--) | Initializes a new instance of the XmpColorantRgb class. |
-| [XmpColorantRgb(int red, int green, int blue)](#XmpColorantRgb-int-int-int-) | Initializes a new instance of the XmpColorantRgb class. |
+| [XmpColorantRgb()](#XmpColorantRgb--) | Initializes a new instance of the
+XmpColorantRgb
+ class.
+ |
+| [XmpColorantRgb(int red, int green, int blue)](#XmpColorantRgb-int-int-int-) | Initializes a new instance of the
+XmpColorantRgb
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getRed()](#getRed--) | Gets the red component. |
-| [setRed(Integer value)](#setRed-java.lang.Integer-) | Sets the red component. |
-| [getGreen()](#getGreen--) | Gets the green value. |
-| [setGreen(Integer value)](#setGreen-java.lang.Integer-) | Sets the green value. |
-| [getBlue()](#getBlue--) | Gets the blue component. |
-| [setBlue(Integer value)](#setBlue-java.lang.Integer-) | Sets the blue component. |
+| [getRed()](#getRed--) | Gets the red component.
+ |
+| [setRed(Integer value)](#setRed-java.lang.Integer-) | Sets the red component.
+ |
+| [getGreen()](#getGreen--) | Gets the green value.
+ |
+| [setGreen(Integer value)](#setGreen-java.lang.Integer-) | Sets the green value.
+ |
+| [getBlue()](#getBlue--) | Gets the blue component.
+ |
+| [setBlue(Integer value)](#setBlue-java.lang.Integer-) | Sets the blue component.
+ |
### XmpColorantRgb() {#XmpColorantRgb--}
```
public XmpColorantRgb()
```
-Initializes a new instance of the XmpColorantRgb class.
+Initializes a new instance of the
+XmpColorantRgb
+ class.
+
### XmpColorantRgb(int red, int green, int blue) {#XmpColorantRgb-int-int-int-}
```
@@ -43,14 +59,20 @@ public XmpColorantRgb(int red, int green, int blue)
```
-Initializes a new instance of the XmpColorantRgb class.
+Initializes a new instance of the
+XmpColorantRgb
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| red | int | Red component. |
-| green | int | Green component. |
-| blue | int | Blue component. |
+| red | int | Red component.
+ |
+| green | int | Green component.
+ |
+| blue | int | Blue component.
+ |
### getRed() {#getRed--}
```
@@ -60,8 +82,10 @@ public final Integer getRed()
Gets the red component.
+
**Returns:**
java.lang.Integer - The red component.
+
### setRed(Integer value) {#setRed-java.lang.Integer-}
```
public final void setRed(Integer value)
@@ -70,10 +94,12 @@ public final void setRed(Integer value)
Sets the red component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The red component. |
+| value | java.lang.Integer | The red component.
+ |
### getGreen() {#getGreen--}
```
@@ -83,8 +109,10 @@ public final Integer getGreen()
Gets the green value.
+
**Returns:**
java.lang.Integer - The green component.
+
### setGreen(Integer value) {#setGreen-java.lang.Integer-}
```
public final void setGreen(Integer value)
@@ -93,10 +121,12 @@ public final void setGreen(Integer value)
Sets the green value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The green component. |
+| value | java.lang.Integer | The green component.
+ |
### getBlue() {#getBlue--}
```
@@ -106,8 +136,10 @@ public final Integer getBlue()
Gets the blue component.
+
**Returns:**
java.lang.Integer - The blue component.
+
### setBlue(Integer value) {#setBlue-java.lang.Integer-}
```
public final void setBlue(Integer value)
@@ -116,8 +148,10 @@ public final void setBlue(Integer value)
Sets the blue component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The blue component. |
+| value | java.lang.Integer | The blue component.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpcolortype/_index.md b/english/java/com.groupdocs.metadata.core/xmpcolortype/_index.md
index 20ba4bd574..204046b815 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcolortype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcolortype/_index.md
@@ -15,13 +15,18 @@ java.lang.Object, java.lang.Enum
public enum XmpColorType extends Enum implements IEnumValue
```
-Type of color in XmpColorantBase .
+Type of color in
+XmpColorantBase
+.
+
## Fields
| Field | Description |
| --- | --- |
-| [Process](#Process) | The Process color type. |
-| [Spot](#Spot) | The Spot color type. |
+| [Process](#Process) | The Process color type.
+ |
+| [Spot](#Spot) | The Spot color type.
+ |
## Methods
| Method | Description |
@@ -43,6 +48,7 @@ public static final XmpColorType Process
The Process color type.
+
### Spot {#Spot}
```
public static final XmpColorType Spot
@@ -51,6 +57,7 @@ public static final XmpColorType Spot
The Spot color type.
+
### values() {#values--}
```
public static XmpColorType[] values()
@@ -109,6 +116,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -119,6 +127,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -134,6 +143,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -149,6 +159,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -159,5 +170,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/xmpcomplextype/_index.md b/english/java/com.groupdocs.metadata.core/xmpcomplextype/_index.md
index a9958d570c..4bd90196da 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcomplextype/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcomplextype/_index.md
@@ -14,38 +14,63 @@ public class XmpComplexType extends XmpMetadataContainer
Represents base abstraction for XMP Complex value type.
---------------------
+
+
+*** ** * ** ***
See more: XMP Specification Part 2, Chapter 1.2.2
+
+
+
+
## Methods
| Method | Description |
| --- | --- |
-| [getPrefixes()](#getPrefixes--) | Gets the namespace prefixes that are used in the XmpComplexType instance. |
-| [getNamespaceUris()](#getNamespaceUris--) | Gets the namespace URIs that are used in the XmpComplexType instance. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
-| [toString()](#toString--) | Returns a String that represents this instance. |
-| [getNamespaceUri(String prefix)](#getNamespaceUri-java.lang.String-) | Gets the namespace URI associated with the specified prefix. |
+| [getPrefixes()](#getPrefixes--) | Gets the namespace prefixes that are used in the
+XmpComplexType
+ instance.
+ |
+| [getNamespaceUris()](#getNamespaceUris--) | Gets the namespace URIs that are used in the
+XmpComplexType
+ instance.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
+| [toString()](#toString--) | Returns a
+String
+ that represents this instance.
+ |
+| [getNamespaceUri(String prefix)](#getNamespaceUri-java.lang.String-) | Gets the namespace URI associated with the specified prefix.
+ |
### getPrefixes() {#getPrefixes--}
```
public final String[] getPrefixes()
```
-Gets the namespace prefixes that are used in the XmpComplexType instance.
+Gets the namespace prefixes that are used in the
+XmpComplexType
+ instance.
+
**Returns:**
java.lang.String[] - The namespace prefixes.
+
### getNamespaceUris() {#getNamespaceUris--}
```
public final String[] getNamespaceUris()
```
-Gets the namespace URIs that are used in the XmpComplexType instance.
+Gets the namespace URIs that are used in the
+XmpComplexType
+ instance.
+
**Returns:**
java.lang.String[] - The namespace URIs.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -54,18 +79,24 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
### toString() {#toString--}
```
public String toString()
```
-Returns a String that represents this instance.
+Returns a
+String
+ that represents this instance.
+
**Returns:**
java.lang.String - A String that represents this instance.
+
### getNamespaceUri(String prefix) {#getNamespaceUri-java.lang.String-}
```
public final String getNamespaceUri(String prefix)
@@ -74,10 +105,13 @@ public final String getNamespaceUri(String prefix)
Gets the namespace URI associated with the specified prefix.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| prefix | java.lang.String | The prefix of the namespace to get. |
+| prefix | java.lang.String | The prefix of the namespace to get.
+ |
**Returns:**
java.lang.String - The associated namespace URI if the prefix is registered; otherwise, null.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpcomplextypevalue/_index.md b/english/java/com.groupdocs.metadata.core/xmpcomplextypevalue/_index.md
index deb27e1e4b..776df8dbd2 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcomplextypevalue/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcomplextypevalue/_index.md
@@ -13,11 +13,13 @@ public class XmpComplexTypeValue extends XmpValueBase
```
Represents an XMP value containing a complex type instance.
+
## Methods
| Method | Description |
| --- | --- |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -26,5 +28,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpcropunit/_index.md b/english/java/com.groupdocs.metadata.core/xmpcropunit/_index.md
index cc32d30c2f..e6d366005c 100644
--- a/english/java/com.groupdocs.metadata.core/xmpcropunit/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpcropunit/_index.md
@@ -15,14 +15,20 @@ java.lang.Object, java.lang.Enum
public enum XmpCropUnit extends Enum implements IEnumValue
```
-Represent a unit for CropWidth and CropHeight in XmpCameraRawPackage .
+Represent a unit for CropWidth and CropHeight in
+XmpCameraRawPackage
+.
+
## Fields
| Field | Description |
| --- | --- |
-| [Pixels](#Pixels) | Pixels units. |
-| [Inches](#Inches) | Inches units. |
-| [Cm](#Cm) | Centimeters units. |
+| [Pixels](#Pixels) | Pixels units.
+ |
+| [Inches](#Inches) | Inches units.
+ |
+| [Cm](#Cm) | Centimeters units.
+ |
## Methods
| Method | Description |
@@ -44,6 +50,7 @@ public static final XmpCropUnit Pixels
Pixels units.
+
### Inches {#Inches}
```
public static final XmpCropUnit Inches
@@ -52,6 +59,7 @@ public static final XmpCropUnit Inches
Inches units.
+
### Cm {#Cm}
```
public static final XmpCropUnit Cm
@@ -60,6 +68,7 @@ public static final XmpCropUnit Cm
Centimeters units.
+
### values() {#values--}
```
public static XmpCropUnit[] values()
@@ -118,6 +127,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -128,6 +138,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -143,6 +154,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -158,6 +170,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -168,5 +181,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/xmpdate/_index.md b/english/java/com.groupdocs.metadata.core/xmpdate/_index.md
index 16bcb32a99..4da072b3b4 100644
--- a/english/java/com.groupdocs.metadata.core/xmpdate/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpdate/_index.md
@@ -14,39 +14,66 @@ public final class XmpDate extends XmpValueBase
Represents Date in XMP packet.
---------------------
+
+
+*** ** * ** ***
+
+
+A date-time value is represented using a subset of the formats as defined in Date and Time Formats:
+YYYY
+YYYY-MM
+YYYY-MM-DD
+YYYY-MM-DDThh:mmTZD
+YYYY-MM-DDThh:mm:ssTZD
+YYYY-MM-DDThh:mm:ss.sTZD
+
+
+
-A date-time value is represented using a subset of the formats as defined in Date and Time Formats: YYYY YYYY-MM YYYY-MM-DD YYYY-MM-DDThh:mmTZD YYYY-MM-DDThh:mm:ssTZD YYYY-MM-DDThh:mm:ss.sTZD
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpDate(Date dateTime)](#XmpDate-java.util.Date-) | Initializes a new instance of the XmpDate class. |
-| [XmpDate(String dateString)](#XmpDate-java.lang.String-) | Initializes a new instance of the XmpDate class. |
+| [XmpDate(Date dateTime)](#XmpDate-java.util.Date-) | Initializes a new instance of the
+XmpDate
+ class.
+ |
+| [XmpDate(String dateString)](#XmpDate-java.lang.String-) | Initializes a new instance of the
+XmpDate
+ class.
+ |
## Fields
| Field | Description |
| --- | --- |
-| [Iso8601Format](#Iso8601Format) | The ISO 8601 (roundtrip) format string. |
+| [Iso8601Format](#Iso8601Format) | The ISO 8601 (roundtrip) format string.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the value. |
-| [getFormat()](#getFormat--) | Gets format string for current value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getValue()](#getValue--) | Gets the value.
+ |
+| [getFormat()](#getFormat--) | Gets format string for current value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpDate(Date dateTime) {#XmpDate-java.util.Date-}
```
public XmpDate(Date dateTime)
```
-Initializes a new instance of the XmpDate class.
+Initializes a new instance of the
+XmpDate
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dateTime | java.util.Date | DateTime value. |
+| dateTime | java.util.Date | DateTime value.
+ |
### XmpDate(String dateString) {#XmpDate-java.lang.String-}
```
@@ -54,12 +81,16 @@ public XmpDate(String dateString)
```
-Initializes a new instance of the XmpDate class.
+Initializes a new instance of the
+XmpDate
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dateString | java.lang.String | Date in string representation. |
+| dateString | java.lang.String | Date in string representation.
+ |
### Iso8601Format {#Iso8601Format}
```
@@ -69,9 +100,15 @@ public static final String Iso8601Format
The ISO 8601 (roundtrip) format string.
---------------------
+
+
+*** ** * ** ***
+
+See more: https://en.wikipedia.org/wiki/ISO_8601.
+
+
+
-See more: https://en.wikipedia.org/wiki/ISO\_8601.
### getValue() {#getValue--}
```
@@ -81,8 +118,10 @@ public final Date getValue()
Gets the value.
+
**Returns:**
java.util.Date - DateTime value.
+
### getFormat() {#getFormat--}
```
public final String getFormat()
@@ -91,8 +130,10 @@ public final String getFormat()
Gets format string for current value.
+
**Returns:**
java.lang.String - XMP date format string.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -101,5 +142,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpdimensions/_index.md b/english/java/com.groupdocs.metadata.core/xmpdimensions/_index.md
index 5a3b1a49f0..4cdd664212 100644
--- a/english/java/com.groupdocs.metadata.core/xmpdimensions/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpdimensions/_index.md
@@ -13,29 +13,45 @@ public final class XmpDimensions extends XmpComplexType
```
Containing dimensions for a drawn object.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpDimensions()](#XmpDimensions--) | Initializes a new instance of the XmpDimensions class. |
-| [XmpDimensions(double width, double height)](#XmpDimensions-double-double-) | Initializes a new instance of the XmpDimensions class. |
+| [XmpDimensions()](#XmpDimensions--) | Initializes a new instance of the
+XmpDimensions
+ class.
+ |
+| [XmpDimensions(double width, double height)](#XmpDimensions-double-double-) | Initializes a new instance of the
+XmpDimensions
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getWidth()](#getWidth--) | Gets the width. |
-| [setWidth(Double value)](#setWidth-java.lang.Double-) | Sets the width. |
-| [getHeight()](#getHeight--) | Gets the height. |
-| [setHeight(Double value)](#setHeight-java.lang.Double-) | Sets the height. |
-| [getUnits()](#getUnits--) | Gets the units. |
-| [setUnits(String value)](#setUnits-java.lang.String-) | Sets the units. |
+| [getWidth()](#getWidth--) | Gets the width.
+ |
+| [setWidth(Double value)](#setWidth-java.lang.Double-) | Sets the width.
+ |
+| [getHeight()](#getHeight--) | Gets the height.
+ |
+| [setHeight(Double value)](#setHeight-java.lang.Double-) | Sets the height.
+ |
+| [getUnits()](#getUnits--) | Gets the units.
+ |
+| [setUnits(String value)](#setUnits-java.lang.String-) | Sets the units.
+ |
### XmpDimensions() {#XmpDimensions--}
```
public XmpDimensions()
```
-Initializes a new instance of the XmpDimensions class.
+Initializes a new instance of the
+XmpDimensions
+ class.
+
### XmpDimensions(double width, double height) {#XmpDimensions-double-double-}
```
@@ -43,13 +59,18 @@ public XmpDimensions(double width, double height)
```
-Initializes a new instance of the XmpDimensions class.
+Initializes a new instance of the
+XmpDimensions
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| width | double | The width. |
-| height | double | The height. |
+| width | double | The width.
+ |
+| height | double | The height.
+ |
### getWidth() {#getWidth--}
```
@@ -59,8 +80,10 @@ public final Double getWidth()
Gets the width.
+
**Returns:**
java.lang.Double - The width.
+
### setWidth(Double value) {#setWidth-java.lang.Double-}
```
public final void setWidth(Double value)
@@ -69,10 +92,12 @@ public final void setWidth(Double value)
Sets the width.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The width. |
+| value | java.lang.Double | The width.
+ |
### getHeight() {#getHeight--}
```
@@ -82,8 +107,10 @@ public final Double getHeight()
Gets the height.
+
**Returns:**
java.lang.Double - The height.
+
### setHeight(Double value) {#setHeight-java.lang.Double-}
```
public final void setHeight(Double value)
@@ -92,10 +119,12 @@ public final void setHeight(Double value)
Sets the height.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The height. |
+| value | java.lang.Double | The height.
+ |
### getUnits() {#getUnits--}
```
@@ -105,8 +134,10 @@ public final String getUnits()
Gets the units.
+
**Returns:**
java.lang.String - The units.
+
### setUnits(String value) {#setUnits-java.lang.String-}
```
public final void setUnits(String value)
@@ -115,8 +146,10 @@ public final void setUnits(String value)
Sets the units.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The units. |
+| value | java.lang.String | The units.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpdublincorepackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpdublincorepackage/_index.md
index 3673098e48..7e6f4cafa4 100644
--- a/english/java/com.groupdocs.metadata.core/xmpdublincorepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpdublincorepackage/_index.md
@@ -14,67 +14,123 @@ public final class XmpDublinCorePackage extends XmpPackage
Represents the Dublin Core scheme.
---------------------
+
+
+*** ** * ** ***
For more information see: http://dublincore.org/documents/usageguide/elements.shtml.
+
+
+
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpDublinCorePackage()](#XmpDublinCorePackage--) | Initializes a new instance of the XmpDublinCorePackage class. |
+| [XmpDublinCorePackage()](#XmpDublinCorePackage--) | Initializes a new instance of the
+XmpDublinCorePackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getContributors()](#getContributors--) | Gets an array of the contributors. |
-| [setContributors(String[] value)](#setContributors-java.lang.String---) | Sets an array of the contributors. |
-| [getCoverage()](#getCoverage--) | Gets the extent or scope of the resource. |
-| [setCoverage(String value)](#setCoverage-java.lang.String-) | Sets the extent or scope of the resource. |
-| [getCreators()](#getCreators--) | Gets an array of the creators. |
-| [setCreators(String[] value)](#setCreators-java.lang.String---) | Sets an array of the creators. |
-| [getDates()](#getDates--) | Gets an array of dates associated with an event in the life cycle of the resource. |
-| [setDates(Date[] value)](#setDates-java.util.Date---) | Sets an array of dates associated with an event in the life cycle of the resource. |
-| [getDescriptions()](#getDescriptions--) | Gets an array of textual descriptions of the content of the resource, given in various languages. |
-| [setDescriptions(XmpLangAlt value)](#setDescriptions-com.groupdocs.metadata.core.XmpLangAlt-) | Sets an array of textual descriptions of the content of the resource, given in various languages. |
-| [getFormat()](#getFormat--) | Gets the MIME type of the resource. |
-| [setFormat(String value)](#setFormat-java.lang.String-) | Sets the MIME type of the resource. |
-| [getIdentifier()](#getIdentifier--) | Gets a string value representing an unambiguous reference to the resource within a given context. |
-| [setIdentifier(String value)](#setIdentifier-java.lang.String-) | Sets a string value representing an unambiguous reference to the resource within a given context. |
-| [getLanguages()](#getLanguages--) | Gets an array of languages used in the content of the resource. |
-| [setLanguages(String[] value)](#setLanguages-java.lang.String---) | Sets an array of languages used in the content of the resource. |
-| [getPublishers()](#getPublishers--) | Gets an array of publishers made the resource available. |
-| [setPublishers(String[] value)](#setPublishers-java.lang.String---) | Sets an array of publishers made the resource available. |
-| [getRelations()](#getRelations--) | Gets an array of the related resources. |
-| [setRelations(String[] value)](#setRelations-java.lang.String---) | Sets an array of the related resources. |
-| [getRights()](#getRights--) | Gets an array of the informal rights statements, given in various languages. |
-| [setRights(XmpLangAlt value)](#setRights-com.groupdocs.metadata.core.XmpLangAlt-) | Sets an array of the informal rights statements, given in various languages. |
-| [getSource()](#getSource--) | Gets the related resource from which the described resource is derived. |
-| [setSource(String value)](#setSource-java.lang.String-) | Sets the related resource from which the described resource is derived. |
-| [getSubjects()](#getSubjects--) | Gets an array of descriptive phrases or keywords that specify the content of the resource. |
-| [setSubjects(String[] value)](#setSubjects-java.lang.String---) | Sets an array of descriptive phrases or keywords that specify the content of the resource. |
-| [getTitles()](#getTitles--) | Gets the title or name of the resource, given in various languages. |
-| [setTitles(XmpLangAlt value)](#setTitles-com.groupdocs.metadata.core.XmpLangAlt-) | Sets the title or name of the resource, given in various languages. |
-| [getTypes()](#getTypes--) | Gets an array of string values representing the nature or genre of the resource. |
-| [setTypes(String[] value)](#setTypes-java.lang.String---) | Sets an array of string values representing the nature or genre of the resource. |
-| [setContributor(String contributor)](#setContributor-java.lang.String-) | Sets a single contributor of the resource. |
-| [setCreator(String creator)](#setCreator-java.lang.String-) | Sets a single creator of the resource. |
-| [setDate(Date date)](#setDate-java.util.Date-) | Sets a single date associated with the resource. |
-| [setDescription(String description)](#setDescription-java.lang.String-) | Sets the resource description, given in a single laguage. |
-| [setLanguage(String language)](#setLanguage-java.lang.String-) | Sets a single language associated with the resource. |
-| [setPublisher(String publisher)](#setPublisher-java.lang.String-) | Sets a single publisher of the resource. |
-| [setRelation(String relation)](#setRelation-java.lang.String-) | Sets a single related resource. |
-| [setRights(String rights)](#setRights-java.lang.String-) | Sets the resource rights, given in a single laguage. |
-| [setSubject(String subject)](#setSubject-java.lang.String-) | Sets a single subject of the resource. |
-| [setTitle(String title)](#setTitle-java.lang.String-) | Sets the resource title, given in a single laguage. |
-| [setType(String type)](#setType-java.lang.String-) | Sets a single type of the resource. |
-| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from XmpArray . |
+| [getContributors()](#getContributors--) | Gets an array of the contributors.
+ |
+| [setContributors(String[] value)](#setContributors-java.lang.String---) | Sets an array of the contributors.
+ |
+| [getCoverage()](#getCoverage--) | Gets the extent or scope of the resource.
+ |
+| [setCoverage(String value)](#setCoverage-java.lang.String-) | Sets the extent or scope of the resource.
+ |
+| [getCreators()](#getCreators--) | Gets an array of the creators.
+ |
+| [setCreators(String[] value)](#setCreators-java.lang.String---) | Sets an array of the creators.
+ |
+| [getDates()](#getDates--) | Gets an array of dates associated with an event in the life cycle of the resource.
+ |
+| [setDates(Date[] value)](#setDates-java.util.Date---) | Sets an array of dates associated with an event in the life cycle of the resource.
+ |
+| [getDescriptions()](#getDescriptions--) | Gets an array of textual descriptions of the content of the resource, given in various languages.
+ |
+| [setDescriptions(XmpLangAlt value)](#setDescriptions-com.groupdocs.metadata.core.XmpLangAlt-) | Sets an array of textual descriptions of the content of the resource, given in various languages.
+ |
+| [getFormat()](#getFormat--) | Gets the MIME type of the resource.
+ |
+| [setFormat(String value)](#setFormat-java.lang.String-) | Sets the MIME type of the resource.
+ |
+| [getIdentifier()](#getIdentifier--) | Gets a string value representing an unambiguous reference to the resource within a given context.
+ |
+| [setIdentifier(String value)](#setIdentifier-java.lang.String-) | Sets a string value representing an unambiguous reference to the resource within a given context.
+ |
+| [getLanguages()](#getLanguages--) | Gets an array of languages used in the content of the resource.
+ |
+| [setLanguages(String[] value)](#setLanguages-java.lang.String---) | Sets an array of languages used in the content of the resource.
+ |
+| [getPublishers()](#getPublishers--) | Gets an array of publishers made the resource available.
+ |
+| [setPublishers(String[] value)](#setPublishers-java.lang.String---) | Sets an array of publishers made the resource available.
+ |
+| [getRelations()](#getRelations--) | Gets an array of the related resources.
+ |
+| [setRelations(String[] value)](#setRelations-java.lang.String---) | Sets an array of the related resources.
+ |
+| [getRights()](#getRights--) | Gets an array of the informal rights statements, given in various languages.
+ |
+| [setRights(XmpLangAlt value)](#setRights-com.groupdocs.metadata.core.XmpLangAlt-) | Sets an array of the informal rights statements, given in various languages.
+ |
+| [getSource()](#getSource--) | Gets the related resource from which the described resource is derived.
+ |
+| [setSource(String value)](#setSource-java.lang.String-) | Sets the related resource from which the described resource is derived.
+ |
+| [getSubjects()](#getSubjects--) | Gets an array of descriptive phrases or keywords that specify the content of the resource.
+ |
+| [setSubjects(String[] value)](#setSubjects-java.lang.String---) | Sets an array of descriptive phrases or keywords that specify the content of the resource.
+ |
+| [getTitles()](#getTitles--) | Gets the title or name of the resource, given in various languages.
+ |
+| [setTitles(XmpLangAlt value)](#setTitles-com.groupdocs.metadata.core.XmpLangAlt-) | Sets the title or name of the resource, given in various languages.
+ |
+| [getTypes()](#getTypes--) | Gets an array of string values representing the nature or genre of the resource.
+ |
+| [setTypes(String[] value)](#setTypes-java.lang.String---) | Sets an array of string values representing the nature or genre of the resource.
+ |
+| [setContributor(String contributor)](#setContributor-java.lang.String-) | Sets a single contributor of the resource.
+ |
+| [setCreator(String creator)](#setCreator-java.lang.String-) | Sets a single creator of the resource.
+ |
+| [setDate(Date date)](#setDate-java.util.Date-) | Sets a single date associated with the resource.
+ |
+| [setDescription(String description)](#setDescription-java.lang.String-) | Sets the resource description, given in a single laguage.
+ |
+| [setLanguage(String language)](#setLanguage-java.lang.String-) | Sets a single language associated with the resource.
+ |
+| [setPublisher(String publisher)](#setPublisher-java.lang.String-) | Sets a single publisher of the resource.
+ |
+| [setRelation(String relation)](#setRelation-java.lang.String-) | Sets a single related resource.
+ |
+| [setRights(String rights)](#setRights-java.lang.String-) | Sets the resource rights, given in a single laguage.
+ |
+| [setSubject(String subject)](#setSubject-java.lang.String-) | Sets a single subject of the resource.
+ |
+| [setTitle(String title)](#setTitle-java.lang.String-) | Sets the resource title, given in a single laguage.
+ |
+| [setType(String type)](#setType-java.lang.String-) | Sets a single type of the resource.
+ |
+| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from
+XmpArray
+ .
+ |
### XmpDublinCorePackage() {#XmpDublinCorePackage--}
```
public XmpDublinCorePackage()
```
-Initializes a new instance of the XmpDublinCorePackage class.
+Initializes a new instance of the
+XmpDublinCorePackage
+ class.
+
### getContributors() {#getContributors--}
```
@@ -84,12 +140,19 @@ public final String[] getContributors()
Gets an array of the contributors.
+
**Returns:**
java.lang.String[] - An array of the contributors.
---------------------
+
+
+*** ** * ** ***
These contributors should not include those listed in dc:creator.
+
+
+
+
### setContributors(String[] value) {#setContributors-java.lang.String---}
```
public final void setContributors(String[] value)
@@ -98,14 +161,21 @@ public final void setContributors(String[] value)
Sets an array of the contributors.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | An array of the contributors.
---------------------
+
+
+*** ** * ** ***
+
+These contributors should not include those listed in dc:creator.
+
+
-These contributors should not include those listed in dc:creator. |
+ |
### getCoverage() {#getCoverage--}
```
@@ -115,8 +185,10 @@ public final String getCoverage()
Gets the extent or scope of the resource.
+
**Returns:**
java.lang.String - The extent or scope of the resource.
+
### setCoverage(String value) {#setCoverage-java.lang.String-}
```
public final void setCoverage(String value)
@@ -125,10 +197,12 @@ public final void setCoverage(String value)
Sets the extent or scope of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The extent or scope of the resource. |
+| value | java.lang.String | The extent or scope of the resource.
+ |
### getCreators() {#getCreators--}
```
@@ -138,12 +212,19 @@ public final String[] getCreators()
Gets an array of the creators.
+
**Returns:**
java.lang.String[] - An array of the creators.
---------------------
+
+
+*** ** * ** ***
Entities should be listed in order of decreasing precedence, if such order is significant. Examples of a creator include a person, an organization, or a service. Typically, the name of a creator should be used to indicate the entity.
+
+
+
+
### setCreators(String[] value) {#setCreators-java.lang.String---}
```
public final void setCreators(String[] value)
@@ -152,14 +233,21 @@ public final void setCreators(String[] value)
Sets an array of the creators.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | An array of the creators.
---------------------
+
+
+*** ** * ** ***
+
+Entities should be listed in order of decreasing precedence, if such order is significant. Examples of a creator include a person, an organization, or a service. Typically, the name of a creator should be used to indicate the entity.
+
+
-Entities should be listed in order of decreasing precedence, if such order is significant. Examples of a creator include a person, an organization, or a service. Typically, the name of a creator should be used to indicate the entity. |
+ |
### getDates() {#getDates--}
```
@@ -169,8 +257,10 @@ public final Date[] getDates()
Gets an array of dates associated with an event in the life cycle of the resource.
+
**Returns:**
java.util.Date[] - A point or period of time associated with an event in the life cycle of the resource.
+
### setDates(Date[] value) {#setDates-java.util.Date---}
```
public final void setDates(Date[] value)
@@ -179,10 +269,12 @@ public final void setDates(Date[] value)
Sets an array of dates associated with an event in the life cycle of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date[] | A point or period of time associated with an event in the life cycle of the resource. |
+| value | java.util.Date[] | A point or period of time associated with an event in the life cycle of the resource.
+ |
### getDescriptions() {#getDescriptions--}
```
@@ -192,8 +284,10 @@ public final XmpLangAlt getDescriptions()
Gets an array of textual descriptions of the content of the resource, given in various languages.
+
**Returns:**
[XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) - An array of textual descriptions of the content of the resource, given in various languages.
+
### setDescriptions(XmpLangAlt value) {#setDescriptions-com.groupdocs.metadata.core.XmpLangAlt-}
```
public final void setDescriptions(XmpLangAlt value)
@@ -202,10 +296,12 @@ public final void setDescriptions(XmpLangAlt value)
Sets an array of textual descriptions of the content of the resource, given in various languages.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | An array of textual descriptions of the content of the resource, given in various languages. |
+| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | An array of textual descriptions of the content of the resource, given in various languages.
+ |
### getFormat() {#getFormat--}
```
@@ -215,8 +311,10 @@ public final String getFormat()
Gets the MIME type of the resource.
+
**Returns:**
java.lang.String - The MIME type of the resource.
+
### setFormat(String value) {#setFormat-java.lang.String-}
```
public final void setFormat(String value)
@@ -225,10 +323,12 @@ public final void setFormat(String value)
Sets the MIME type of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The MIME type of the resource. |
+| value | java.lang.String | The MIME type of the resource.
+ |
### getIdentifier() {#getIdentifier--}
```
@@ -238,12 +338,19 @@ public final String getIdentifier()
Gets a string value representing an unambiguous reference to the resource within a given context.
+
**Returns:**
java.lang.String - A string value representing an unambiguous reference to the resource within a given context.
---------------------
+
+
+*** ** * ** ***
Recommended best practice is to identify the resource by means of a string conforming to a formal identification system.
+
+
+
+
### setIdentifier(String value) {#setIdentifier-java.lang.String-}
```
public final void setIdentifier(String value)
@@ -252,14 +359,21 @@ public final void setIdentifier(String value)
Sets a string value representing an unambiguous reference to the resource within a given context.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | A string value representing an unambiguous reference to the resource within a given context.
---------------------
+
+
+*** ** * ** ***
+
+Recommended best practice is to identify the resource by means of a string conforming to a formal identification system.
-Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. |
+
+
+ |
### getLanguages() {#getLanguages--}
```
@@ -269,8 +383,10 @@ public final String[] getLanguages()
Gets an array of languages used in the content of the resource.
+
**Returns:**
java.lang.String[] - An array of languages used in the content of the resource.
+
### setLanguages(String[] value) {#setLanguages-java.lang.String---}
```
public final void setLanguages(String[] value)
@@ -279,10 +395,12 @@ public final void setLanguages(String[] value)
Sets an array of languages used in the content of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | An array of languages used in the content of the resource. |
+| value | java.lang.String[] | An array of languages used in the content of the resource.
+ |
### getPublishers() {#getPublishers--}
```
@@ -292,12 +410,19 @@ public final String[] getPublishers()
Gets an array of publishers made the resource available.
+
**Returns:**
java.lang.String[] - An array of publishers made the resource available.
---------------------
+
+
+*** ** * ** ***
Examples of a publisher include a person, an organization, or a service. Typically, the name of a publisher should be used to indicate the entity.
+
+
+
+
### setPublishers(String[] value) {#setPublishers-java.lang.String---}
```
public final void setPublishers(String[] value)
@@ -306,14 +431,21 @@ public final void setPublishers(String[] value)
Sets an array of publishers made the resource available.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | An array of publishers made the resource available.
---------------------
+
-Examples of a publisher include a person, an organization, or a service. Typically, the name of a publisher should be used to indicate the entity. |
+*** ** * ** ***
+
+Examples of a publisher include a person, an organization, or a service. Typically, the name of a publisher should be used to indicate the entity.
+
+
+
+ |
### getRelations() {#getRelations--}
```
@@ -323,12 +455,19 @@ public final String[] getRelations()
Gets an array of the related resources.
+
**Returns:**
java.lang.String[] - An array of the related resources.
---------------------
+
+
+*** ** * ** ***
Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
+
+
+
+
### setRelations(String[] value) {#setRelations-java.lang.String---}
```
public final void setRelations(String[] value)
@@ -337,14 +476,21 @@ public final void setRelations(String[] value)
Sets an array of the related resources.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | An array of the related resources.
---------------------
+
+
+*** ** * ** ***
+
+Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
+
+
-Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. |
+ |
### getRights() {#getRights--}
```
@@ -354,12 +500,19 @@ public final XmpLangAlt getRights()
Gets an array of the informal rights statements, given in various languages.
+
**Returns:**
[XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) - An array of the informal rights statements, given in various languages.
---------------------
+
+
+*** ** * ** ***
Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.
+
+
+
+
### setRights(XmpLangAlt value) {#setRights-com.groupdocs.metadata.core.XmpLangAlt-}
```
public final void setRights(XmpLangAlt value)
@@ -368,14 +521,21 @@ public final void setRights(XmpLangAlt value)
Sets an array of the informal rights statements, given in various languages.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | An array of the informal rights statements, given in various languages.
---------------------
+
+
+*** ** * ** ***
-Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights. |
+Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.
+
+
+
+ |
### getSource() {#getSource--}
```
@@ -385,12 +545,19 @@ public final String getSource()
Gets the related resource from which the described resource is derived.
+
**Returns:**
java.lang.String - The related resource from which the described resource is derived.
---------------------
+
+
+*** ** * ** ***
The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
+
+
+
+
### setSource(String value) {#setSource-java.lang.String-}
```
public final void setSource(String value)
@@ -399,14 +566,21 @@ public final void setSource(String value)
Sets the related resource from which the described resource is derived.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The related resource from which the described resource is derived.
---------------------
+
-The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. |
+*** ** * ** ***
+
+The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.
+
+
+
+ |
### getSubjects() {#getSubjects--}
```
@@ -416,8 +590,10 @@ public final String[] getSubjects()
Gets an array of descriptive phrases or keywords that specify the content of the resource.
+
**Returns:**
java.lang.String[] - An array of descriptive phrases or keywords that specify the content of the resource.
+
### setSubjects(String[] value) {#setSubjects-java.lang.String---}
```
public final void setSubjects(String[] value)
@@ -426,10 +602,12 @@ public final void setSubjects(String[] value)
Sets an array of descriptive phrases or keywords that specify the content of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | An array of descriptive phrases or keywords that specify the content of the resource. |
+| value | java.lang.String[] | An array of descriptive phrases or keywords that specify the content of the resource.
+ |
### getTitles() {#getTitles--}
```
@@ -439,8 +617,10 @@ public final XmpLangAlt getTitles()
Gets the title or name of the resource, given in various languages.
+
**Returns:**
[XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) - The title or name of the resource, given in various languages.
+
### setTitles(XmpLangAlt value) {#setTitles-com.groupdocs.metadata.core.XmpLangAlt-}
```
public final void setTitles(XmpLangAlt value)
@@ -449,10 +629,12 @@ public final void setTitles(XmpLangAlt value)
Sets the title or name of the resource, given in various languages.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | The title or name of the resource, given in various languages. |
+| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | The title or name of the resource, given in various languages.
+ |
### getTypes() {#getTypes--}
```
@@ -462,8 +644,10 @@ public final String[] getTypes()
Gets an array of string values representing the nature or genre of the resource.
+
**Returns:**
java.lang.String[] - An array of string values representing the nature or genre of the resource.
+
### setTypes(String[] value) {#setTypes-java.lang.String---}
```
public final void setTypes(String[] value)
@@ -472,10 +656,12 @@ public final void setTypes(String[] value)
Sets an array of string values representing the nature or genre of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | An array of string values representing the nature or genre of the resource. |
+| value | java.lang.String[] | An array of string values representing the nature or genre of the resource.
+ |
### setContributor(String contributor) {#setContributor-java.lang.String-}
```
@@ -485,10 +671,12 @@ public final void setContributor(String contributor)
Sets a single contributor of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| contributor | java.lang.String | The contributor to set. |
+| contributor | java.lang.String | The contributor to set.
+ |
### setCreator(String creator) {#setCreator-java.lang.String-}
```
@@ -498,10 +686,12 @@ public final void setCreator(String creator)
Sets a single creator of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| creator | java.lang.String | The creator to set. |
+| creator | java.lang.String | The creator to set.
+ |
### setDate(Date date) {#setDate-java.util.Date-}
```
@@ -511,10 +701,12 @@ public final void setDate(Date date)
Sets a single date associated with the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| date | java.util.Date | The date to set. |
+| date | java.util.Date | The date to set.
+ |
### setDescription(String description) {#setDescription-java.lang.String-}
```
@@ -524,10 +716,12 @@ public final void setDescription(String description)
Sets the resource description, given in a single laguage.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| description | java.lang.String | The description to set. |
+| description | java.lang.String | The description to set.
+ |
### setLanguage(String language) {#setLanguage-java.lang.String-}
```
@@ -537,10 +731,12 @@ public final void setLanguage(String language)
Sets a single language associated with the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| language | java.lang.String | The language to set. |
+| language | java.lang.String | The language to set.
+ |
### setPublisher(String publisher) {#setPublisher-java.lang.String-}
```
@@ -550,10 +746,12 @@ public final void setPublisher(String publisher)
Sets a single publisher of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| publisher | java.lang.String | The publisher to set. |
+| publisher | java.lang.String | The publisher to set.
+ |
### setRelation(String relation) {#setRelation-java.lang.String-}
```
@@ -563,10 +761,12 @@ public final void setRelation(String relation)
Sets a single related resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| relation | java.lang.String | The relation to set. |
+| relation | java.lang.String | The relation to set.
+ |
### setRights(String rights) {#setRights-java.lang.String-}
```
@@ -576,10 +776,12 @@ public final void setRights(String rights)
Sets the resource rights, given in a single laguage.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| rights | java.lang.String | The rights statements to set. |
+| rights | java.lang.String | The rights statements to set.
+ |
### setSubject(String subject) {#setSubject-java.lang.String-}
```
@@ -589,10 +791,12 @@ public final void setSubject(String subject)
Sets a single subject of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| subject | java.lang.String | The subject to set. |
+| subject | java.lang.String | The subject to set.
+ |
### setTitle(String title) {#setTitle-java.lang.String-}
```
@@ -602,10 +806,12 @@ public final void setTitle(String title)
Sets the resource title, given in a single laguage.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| title | java.lang.String | The title to set. |
+| title | java.lang.String | The title to set.
+ |
### setType(String type) {#setType-java.lang.String-}
```
@@ -615,10 +821,12 @@ public final void setType(String type)
Sets a single type of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| type | java.lang.String | The type to set. |
+| type | java.lang.String | The type to set.
+ |
### set(String name, XmpArray value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-}
```
@@ -626,11 +834,16 @@ public void set(String name, XmpArray value)
```
-Sets the value inherited from XmpArray .
+Sets the value inherited from
+XmpArray
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpdynamicmediapackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpdynamicmediapackage/_index.md
index 991429f2ff..e8f4baff53 100644
--- a/english/java/com.groupdocs.metadata.core/xmpdynamicmediapackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpdynamicmediapackage/_index.md
@@ -13,114 +13,215 @@ public final class XmpDynamicMediaPackage extends XmpPackage
```
Represents XMP Dynamic Media namespace.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpDynamicMediaPackage()](#XmpDynamicMediaPackage--) | Initializes a new instance of the XmpDynamicMediaPackage class. |
+| [XmpDynamicMediaPackage()](#XmpDynamicMediaPackage--) | Initializes a new instance of the
+XmpDynamicMediaPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAbsPeakAudioFilePath()](#getAbsPeakAudioFilePath--) | Gets the absolute path to the file\\u2019s peak audio file. |
-| [setAbsPeakAudioFilePath(String value)](#setAbsPeakAudioFilePath-java.lang.String-) | Sets the absolute path to the file\\u2019s peak audio file. |
-| [getAlbum()](#getAlbum--) | Gets the name of the album. |
-| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the name of the album. |
-| [getAltTapeName()](#getAltTapeName--) | Gets the alternative tape name, set via the project window or timecode dialog in Premiere. |
-| [setAltTapeName(String value)](#setAltTapeName-java.lang.String-) | Sets the alternative tape name, set via the project window or timecode dialog in Premiere. |
-| [getAltTimecode()](#getAltTimecode--) | Gets the timecode set by the user. |
-| [setAltTimecode(XmpTimecode value)](#setAltTimecode-com.groupdocs.metadata.core.XmpTimecode-) | Sets the timecode set by the user. |
-| [getArtist()](#getArtist--) | Gets the name of the artist or artists. |
-| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the name of the artist or artists. |
-| [getAudioChannelType()](#getAudioChannelType--) | Gets the audio channel type. |
-| [setAudioChannelType(String value)](#setAudioChannelType-java.lang.String-) | Sets the audio channel type. |
-| [getAudioCompressor()](#getAudioCompressor--) | Gets the audio compression used. |
-| [setAudioCompressor(String value)](#setAudioCompressor-java.lang.String-) | Sets the audio compression used. |
-| [getAudioSampleRate()](#getAudioSampleRate--) | Gets the audio sample rate. |
-| [setAudioSampleRate(Integer value)](#setAudioSampleRate-java.lang.Integer-) | Sets the audio sample rate. |
-| [getAudioSampleType()](#getAudioSampleType--) | Gets the audio sample type. |
-| [setAudioSampleType(String value)](#setAudioSampleType-java.lang.String-) | Sets the audio sample type. |
-| [getCameraAngle()](#getCameraAngle--) | Gets the orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology. |
-| [setCameraAngle(String value)](#setCameraAngle-java.lang.String-) | Sets the orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology. |
-| [getCameraLabel()](#getCameraLabel--) | Gets the description of the camera used for a shoot. |
-| [setCameraLabel(String value)](#setCameraLabel-java.lang.String-) | Sets the description of the camera used for a shoot. |
-| [getCameraModel()](#getCameraModel--) | Gets the make and model of the camera used for a shoot. |
-| [setCameraModel(String value)](#setCameraModel-java.lang.String-) | Sets the make and model of the camera used for a shoot. |
-| [getCameraMove()](#getCameraMove--) | Gets the movement of the camera during the shot, from a fixed set of industry standard terminology. |
-| [setCameraMove(String value)](#setCameraMove-java.lang.String-) | Sets the movement of the camera during the shot, from a fixed set of industry standard terminology. |
-| [getClient()](#getClient--) | Gets the client for the job of which this shot or take is a part. |
-| [setClient(String value)](#setClient-java.lang.String-) | Sets the client for the job of which this shot or take is a part. |
-| [getComment()](#getComment--) | Gets the user\\u2019s comments. |
-| [setComment(String value)](#setComment-java.lang.String-) | Sets the user\\u2019s comments. |
-| [getComposer()](#getComposer--) | Gets the composer\\u2019s names. |
-| [setComposer(String value)](#setComposer-java.lang.String-) | Sets the composer\\u2019s names. |
-| [getDirector()](#getDirector--) | Gets the director of the scene. |
-| [setDirector(String value)](#setDirector-java.lang.String-) | Sets the director of the scene. |
-| [getDirectorPhotography()](#getDirectorPhotography--) | Gets the director of photography for the scene. |
-| [setDirectorPhotography(String value)](#setDirectorPhotography-java.lang.String-) | Sets the director of photography for the scene. |
-| [getDuration()](#getDuration--) | Gets the duration of the media file. |
-| [setDuration(XmpTime value)](#setDuration-com.groupdocs.metadata.core.XmpTime-) | Sets the duration of the media file. |
-| [getEngineer()](#getEngineer--) | Gets the engineer's names. |
-| [setEngineer(String value)](#setEngineer-java.lang.String-) | Sets the engineer's names. |
-| [getFileDataRate()](#getFileDataRate--) | Gets the file data rate in megabytes per second. |
-| [setFileDataRate(XmpRational value)](#setFileDataRate-com.groupdocs.metadata.core.XmpRational-) | Sets the file data rate in megabytes per second. |
-| [getGenre()](#getGenre--) | Gets the name of the genres. |
-| [setGenre(String value)](#setGenre-java.lang.String-) | Sets the name of the genres. |
-| [getGood()](#getGood--) | Gets a value indicating whether the shot is a keeper. |
-| [setGood(Boolean value)](#setGood-java.lang.Boolean-) | Sets a value indicating whether the shot is a keeper. |
-| [getInstrument()](#getInstrument--) | Gets the musical instruments. |
-| [setInstrument(String value)](#setInstrument-java.lang.String-) | Sets the musical instruments. |
-| [getIntroTime()](#getIntroTime--) | Gets the duration of lead time for queuing music. |
-| [setIntroTime(XmpTime value)](#setIntroTime-com.groupdocs.metadata.core.XmpTime-) | Sets the duration of lead time for queuing music. |
-| [getKey()](#getKey--) | Gets the audio\\u2019s musical key. |
-| [setKey(String value)](#setKey-java.lang.String-) | Sets the audio\\u2019s musical key. |
-| [getLogComment()](#getLogComment--) | Gets the user\\u2019s log comments. |
-| [setLogComment(String value)](#setLogComment-java.lang.String-) | Sets the user\\u2019s log comments. |
-| [getLoop()](#getLoop--) | Gets a value indicating whether the clip can be looped seamlessly. |
-| [setLoop(Boolean value)](#setLoop-java.lang.Boolean-) | Sets a value indicating whether the clip can be looped seamlessly. |
-| [getNumberOfBeats()](#getNumberOfBeats--) | Gets the total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds. |
-| [setNumberOfBeats(Double value)](#setNumberOfBeats-java.lang.Double-) | Sets the total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds. |
-| [getOutCue()](#getOutCue--) | Gets the time at which to fade out. |
-| [setOutCue(XmpTime value)](#setOutCue-com.groupdocs.metadata.core.XmpTime-) | Sets the time at which to fade out. |
-| [getProjectName()](#getProjectName--) | Gets the name of the project of which this file is a part. |
-| [setProjectName(String value)](#setProjectName-java.lang.String-) | Sets the name of the project of which this file is a part. |
-| [getRelativeTimestamp()](#getRelativeTimestamp--) | Gets the start time of the media inside the audio project. |
-| [setRelativeTimestamp(XmpTime value)](#setRelativeTimestamp-com.groupdocs.metadata.core.XmpTime-) | Sets the start time of the media inside the audio project. |
-| [getReleaseDate()](#getReleaseDate--) | Gets the date the title was released. |
-| [setReleaseDate(Date value)](#setReleaseDate-java.util.Date-) | Sets the date the title was released. |
-| [getShotDate()](#getShotDate--) | Gets the date and time when the video was shot. |
-| [setShotDate(Date value)](#setShotDate-java.util.Date-) | Sets the date and time when the video was shot. |
-| [getStartTimecode()](#getStartTimecode--) | Gets the timecode of the first frame of video in the file, as obtained from the device control. |
-| [setStartTimecode(XmpTimecode value)](#setStartTimecode-com.groupdocs.metadata.core.XmpTimecode-) | Sets the timecode of the first frame of video in the file, as obtained from the device control. |
-| [getTakeNumber()](#getTakeNumber--) | Gets a numeric value indicating the absolute number of a take. |
-| [setTakeNumber(Integer value)](#setTakeNumber-java.lang.Integer-) | Sets a numeric value indicating the absolute number of a take. |
-| [getTempo()](#getTempo--) | Gets the audio\\u2019s tempo. |
-| [setTempo(Double value)](#setTempo-java.lang.Double-) | Sets the audio\\u2019s tempo. |
-| [getTrackNumber()](#getTrackNumber--) | Gets a numeric value indicating the order of the audio file within its original recording. |
-| [setTrackNumber(Integer value)](#setTrackNumber-java.lang.Integer-) | Sets a numeric value indicating the order of the audio file within its original recording. |
-| [getVideoAlphaPremultipleColor()](#getVideoAlphaPremultipleColor--) | Gets the timecode of the first frame of video in the file, as obtained from the device control. |
-| [setVideoAlphaPremultipleColor(XmpColorantBase value)](#setVideoAlphaPremultipleColor-com.groupdocs.metadata.core.XmpColorantBase-) | Sets the timecode of the first frame of video in the file, as obtained from the device control. |
-| [getVideoAlphaUnityIsTransparent()](#getVideoAlphaUnityIsTransparent--) | Gets a value indicating whether the unity is clear. |
-| [setVideoAlphaUnityIsTransparent(Boolean value)](#setVideoAlphaUnityIsTransparent-java.lang.Boolean-) | Sets a value indicating whether the unity is clear. |
-| [getVideoFrameRate()](#getVideoFrameRate--) | Gets the video frame rate. |
-| [setVideoFrameRate(Double value)](#setVideoFrameRate-java.lang.Double-) | Sets the video frame rate. |
-| [getVideoFrameSize()](#getVideoFrameSize--) | Gets the frame size. |
-| [setVideoFrameSize(XmpDimensions value)](#setVideoFrameSize-com.groupdocs.metadata.core.XmpDimensions-) | Sets the frame size. |
-| [getVideoPixelAspectRatio()](#getVideoPixelAspectRatio--) | Gets the aspect ratio, expressed as wd/ht. |
-| [setVideoPixelAspectRatio(XmpRational value)](#setVideoPixelAspectRatio-com.groupdocs.metadata.core.XmpRational-) | Sets the aspect ratio, expressed as wd/ht. |
-| [getPartOfCompilation()](#getPartOfCompilation--) | Gets a value indicating whether the resource is a part of compilation. |
-| [setPartOfCompilation(Boolean value)](#setPartOfCompilation-java.lang.Boolean-) | Sets a value indicating whether the resource is a part of compilation. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
-| [set(String name, XmpComplexType value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpComplexType-) | Sets the value inherited from XmpComplexType . |
-| [setAudioChannelType(XmpAudioChannelType audioChannelType)](#setAudioChannelType-com.groupdocs.metadata.core.XmpAudioChannelType-) | Sets the audio channel type. |
-| [setAudioSampleType(XmpAudioSampleType audioSampleType)](#setAudioSampleType-com.groupdocs.metadata.core.XmpAudioSampleType-) | Sets the audio sample type. |
+| [getAbsPeakAudioFilePath()](#getAbsPeakAudioFilePath--) | Gets the absolute path to the file\\u2019s peak audio file.
+ |
+| [setAbsPeakAudioFilePath(String value)](#setAbsPeakAudioFilePath-java.lang.String-) | Sets the absolute path to the file\\u2019s peak audio file.
+ |
+| [getAlbum()](#getAlbum--) | Gets the name of the album.
+ |
+| [setAlbum(String value)](#setAlbum-java.lang.String-) | Sets the name of the album.
+ |
+| [getAltTapeName()](#getAltTapeName--) | Gets the alternative tape name, set via the project window or timecode dialog in Premiere.
+ |
+| [setAltTapeName(String value)](#setAltTapeName-java.lang.String-) | Sets the alternative tape name, set via the project window or timecode dialog in Premiere.
+ |
+| [getAltTimecode()](#getAltTimecode--) | Gets the timecode set by the user.
+ |
+| [setAltTimecode(XmpTimecode value)](#setAltTimecode-com.groupdocs.metadata.core.XmpTimecode-) | Sets the timecode set by the user.
+ |
+| [getArtist()](#getArtist--) | Gets the name of the artist or artists.
+ |
+| [setArtist(String value)](#setArtist-java.lang.String-) | Sets the name of the artist or artists.
+ |
+| [getAudioChannelType()](#getAudioChannelType--) | Gets the audio channel type.
+ |
+| [setAudioChannelType(String value)](#setAudioChannelType-java.lang.String-) | Sets the audio channel type.
+ |
+| [getAudioCompressor()](#getAudioCompressor--) | Gets the audio compression used.
+ |
+| [setAudioCompressor(String value)](#setAudioCompressor-java.lang.String-) | Sets the audio compression used.
+ |
+| [getAudioSampleRate()](#getAudioSampleRate--) | Gets the audio sample rate.
+ |
+| [setAudioSampleRate(Integer value)](#setAudioSampleRate-java.lang.Integer-) | Sets the audio sample rate.
+ |
+| [getAudioSampleType()](#getAudioSampleType--) | Gets the audio sample type.
+ |
+| [setAudioSampleType(String value)](#setAudioSampleType-java.lang.String-) | Sets the audio sample type.
+ |
+| [getCameraAngle()](#getCameraAngle--) | Gets the orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology.
+ |
+| [setCameraAngle(String value)](#setCameraAngle-java.lang.String-) | Sets the orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology.
+ |
+| [getCameraLabel()](#getCameraLabel--) | Gets the description of the camera used for a shoot.
+ |
+| [setCameraLabel(String value)](#setCameraLabel-java.lang.String-) | Sets the description of the camera used for a shoot.
+ |
+| [getCameraModel()](#getCameraModel--) | Gets the make and model of the camera used for a shoot.
+ |
+| [setCameraModel(String value)](#setCameraModel-java.lang.String-) | Sets the make and model of the camera used for a shoot.
+ |
+| [getCameraMove()](#getCameraMove--) | Gets the movement of the camera during the shot, from a fixed set of industry standard terminology.
+ |
+| [setCameraMove(String value)](#setCameraMove-java.lang.String-) | Sets the movement of the camera during the shot, from a fixed set of industry standard terminology.
+ |
+| [getClient()](#getClient--) | Gets the client for the job of which this shot or take is a part.
+ |
+| [setClient(String value)](#setClient-java.lang.String-) | Sets the client for the job of which this shot or take is a part.
+ |
+| [getComment()](#getComment--) | Gets the user\\u2019s comments.
+ |
+| [setComment(String value)](#setComment-java.lang.String-) | Sets the user\\u2019s comments.
+ |
+| [getComposer()](#getComposer--) | Gets the composer\\u2019s names.
+ |
+| [setComposer(String value)](#setComposer-java.lang.String-) | Sets the composer\\u2019s names.
+ |
+| [getDirector()](#getDirector--) | Gets the director of the scene.
+ |
+| [setDirector(String value)](#setDirector-java.lang.String-) | Sets the director of the scene.
+ |
+| [getDirectorPhotography()](#getDirectorPhotography--) | Gets the director of photography for the scene.
+ |
+| [setDirectorPhotography(String value)](#setDirectorPhotography-java.lang.String-) | Sets the director of photography for the scene.
+ |
+| [getDuration()](#getDuration--) | Gets the duration of the media file.
+ |
+| [setDuration(XmpTime value)](#setDuration-com.groupdocs.metadata.core.XmpTime-) | Sets the duration of the media file.
+ |
+| [getEngineer()](#getEngineer--) | Gets the engineer's names.
+ |
+| [setEngineer(String value)](#setEngineer-java.lang.String-) | Sets the engineer's names.
+ |
+| [getFileDataRate()](#getFileDataRate--) | Gets the file data rate in megabytes per second.
+ |
+| [setFileDataRate(XmpRational value)](#setFileDataRate-com.groupdocs.metadata.core.XmpRational-) | Sets the file data rate in megabytes per second.
+ |
+| [getGenre()](#getGenre--) | Gets the name of the genres.
+ |
+| [setGenre(String value)](#setGenre-java.lang.String-) | Sets the name of the genres.
+ |
+| [getGood()](#getGood--) | Gets a value indicating whether the shot is a keeper.
+ |
+| [setGood(Boolean value)](#setGood-java.lang.Boolean-) | Sets a value indicating whether the shot is a keeper.
+ |
+| [getInstrument()](#getInstrument--) | Gets the musical instruments.
+ |
+| [setInstrument(String value)](#setInstrument-java.lang.String-) | Sets the musical instruments.
+ |
+| [getIntroTime()](#getIntroTime--) | Gets the duration of lead time for queuing music.
+ |
+| [setIntroTime(XmpTime value)](#setIntroTime-com.groupdocs.metadata.core.XmpTime-) | Sets the duration of lead time for queuing music.
+ |
+| [getKey()](#getKey--) | Gets the audio\\u2019s musical key.
+ |
+| [setKey(String value)](#setKey-java.lang.String-) | Sets the audio\\u2019s musical key.
+ |
+| [getLogComment()](#getLogComment--) | Gets the user\\u2019s log comments.
+ |
+| [setLogComment(String value)](#setLogComment-java.lang.String-) | Sets the user\\u2019s log comments.
+ |
+| [getLoop()](#getLoop--) | Gets a value indicating whether the clip can be looped seamlessly.
+ |
+| [setLoop(Boolean value)](#setLoop-java.lang.Boolean-) | Sets a value indicating whether the clip can be looped seamlessly.
+ |
+| [getNumberOfBeats()](#getNumberOfBeats--) | Gets the total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds.
+ |
+| [setNumberOfBeats(Double value)](#setNumberOfBeats-java.lang.Double-) | Sets the total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds.
+ |
+| [getOutCue()](#getOutCue--) | Gets the time at which to fade out.
+ |
+| [setOutCue(XmpTime value)](#setOutCue-com.groupdocs.metadata.core.XmpTime-) | Sets the time at which to fade out.
+ |
+| [getProjectName()](#getProjectName--) | Gets the name of the project of which this file is a part.
+ |
+| [setProjectName(String value)](#setProjectName-java.lang.String-) | Sets the name of the project of which this file is a part.
+ |
+| [getRelativeTimestamp()](#getRelativeTimestamp--) | Gets the start time of the media inside the audio project.
+ |
+| [setRelativeTimestamp(XmpTime value)](#setRelativeTimestamp-com.groupdocs.metadata.core.XmpTime-) | Sets the start time of the media inside the audio project.
+ |
+| [getReleaseDate()](#getReleaseDate--) | Gets the date the title was released.
+ |
+| [setReleaseDate(Date value)](#setReleaseDate-java.util.Date-) | Sets the date the title was released.
+ |
+| [getShotDate()](#getShotDate--) | Gets the date and time when the video was shot.
+ |
+| [setShotDate(Date value)](#setShotDate-java.util.Date-) | Sets the date and time when the video was shot.
+ |
+| [getStartTimecode()](#getStartTimecode--) | Gets the timecode of the first frame of video in the file, as obtained from the device control.
+ |
+| [setStartTimecode(XmpTimecode value)](#setStartTimecode-com.groupdocs.metadata.core.XmpTimecode-) | Sets the timecode of the first frame of video in the file, as obtained from the device control.
+ |
+| [getTakeNumber()](#getTakeNumber--) | Gets a numeric value indicating the absolute number of a take.
+ |
+| [setTakeNumber(Integer value)](#setTakeNumber-java.lang.Integer-) | Sets a numeric value indicating the absolute number of a take.
+ |
+| [getTempo()](#getTempo--) | Gets the audio\\u2019s tempo.
+ |
+| [setTempo(Double value)](#setTempo-java.lang.Double-) | Sets the audio\\u2019s tempo.
+ |
+| [getTrackNumber()](#getTrackNumber--) | Gets a numeric value indicating the order of the audio file within its original recording.
+ |
+| [setTrackNumber(Integer value)](#setTrackNumber-java.lang.Integer-) | Sets a numeric value indicating the order of the audio file within its original recording.
+ |
+| [getVideoAlphaPremultipleColor()](#getVideoAlphaPremultipleColor--) | Gets the timecode of the first frame of video in the file, as obtained from the device control.
+ |
+| [setVideoAlphaPremultipleColor(XmpColorantBase value)](#setVideoAlphaPremultipleColor-com.groupdocs.metadata.core.XmpColorantBase-) | Sets the timecode of the first frame of video in the file, as obtained from the device control.
+ |
+| [getVideoAlphaUnityIsTransparent()](#getVideoAlphaUnityIsTransparent--) | Gets a value indicating whether the unity is clear.
+ |
+| [setVideoAlphaUnityIsTransparent(Boolean value)](#setVideoAlphaUnityIsTransparent-java.lang.Boolean-) | Sets a value indicating whether the unity is clear.
+ |
+| [getVideoFrameRate()](#getVideoFrameRate--) | Gets the video frame rate.
+ |
+| [setVideoFrameRate(Double value)](#setVideoFrameRate-java.lang.Double-) | Sets the video frame rate.
+ |
+| [getVideoFrameSize()](#getVideoFrameSize--) | Gets the frame size.
+ |
+| [setVideoFrameSize(XmpDimensions value)](#setVideoFrameSize-com.groupdocs.metadata.core.XmpDimensions-) | Sets the frame size.
+ |
+| [getVideoPixelAspectRatio()](#getVideoPixelAspectRatio--) | Gets the aspect ratio, expressed as wd/ht.
+ |
+| [setVideoPixelAspectRatio(XmpRational value)](#setVideoPixelAspectRatio-com.groupdocs.metadata.core.XmpRational-) | Sets the aspect ratio, expressed as wd/ht.
+ |
+| [getPartOfCompilation()](#getPartOfCompilation--) | Gets a value indicating whether the resource is a part of compilation.
+ |
+| [setPartOfCompilation(Boolean value)](#setPartOfCompilation-java.lang.Boolean-) | Sets a value indicating whether the resource is a part of compilation.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
+| [set(String name, XmpComplexType value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpComplexType-) | Sets the value inherited from
+XmpComplexType
+ .
+ |
+| [setAudioChannelType(XmpAudioChannelType audioChannelType)](#setAudioChannelType-com.groupdocs.metadata.core.XmpAudioChannelType-) | Sets the audio channel type.
+ |
+| [setAudioSampleType(XmpAudioSampleType audioSampleType)](#setAudioSampleType-com.groupdocs.metadata.core.XmpAudioSampleType-) | Sets the audio sample type.
+ |
### XmpDynamicMediaPackage() {#XmpDynamicMediaPackage--}
```
public XmpDynamicMediaPackage()
```
-Initializes a new instance of the XmpDynamicMediaPackage class.
+Initializes a new instance of the
+XmpDynamicMediaPackage
+ class.
+
### getAbsPeakAudioFilePath() {#getAbsPeakAudioFilePath--}
```
@@ -130,8 +231,10 @@ public final String getAbsPeakAudioFilePath()
Gets the absolute path to the file\\u2019s peak audio file.
+
**Returns:**
java.lang.String - The absolute path to the file\\u2019s peak audio file. If empty, no peak file exists.
+
### setAbsPeakAudioFilePath(String value) {#setAbsPeakAudioFilePath-java.lang.String-}
```
public final void setAbsPeakAudioFilePath(String value)
@@ -140,10 +243,12 @@ public final void setAbsPeakAudioFilePath(String value)
Sets the absolute path to the file\\u2019s peak audio file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The absolute path to the file\\u2019s peak audio file. If empty, no peak file exists. |
+| value | java.lang.String | The absolute path to the file\\u2019s peak audio file. If empty, no peak file exists.
+ |
### getAlbum() {#getAlbum--}
```
@@ -153,8 +258,10 @@ public final String getAlbum()
Gets the name of the album.
+
**Returns:**
java.lang.String - The name of the album.
+
### setAlbum(String value) {#setAlbum-java.lang.String-}
```
public final void setAlbum(String value)
@@ -163,10 +270,12 @@ public final void setAlbum(String value)
Sets the name of the album.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the album. |
+| value | java.lang.String | The name of the album.
+ |
### getAltTapeName() {#getAltTapeName--}
```
@@ -176,8 +285,10 @@ public final String getAltTapeName()
Gets the alternative tape name, set via the project window or timecode dialog in Premiere.
+
**Returns:**
java.lang.String - The alternative tape name, set via the project window or timecode dialog in Premiere.
+
### setAltTapeName(String value) {#setAltTapeName-java.lang.String-}
```
public final void setAltTapeName(String value)
@@ -186,10 +297,12 @@ public final void setAltTapeName(String value)
Sets the alternative tape name, set via the project window or timecode dialog in Premiere.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The alternative tape name, set via the project window or timecode dialog in Premiere. |
+| value | java.lang.String | The alternative tape name, set via the project window or timecode dialog in Premiere.
+ |
### getAltTimecode() {#getAltTimecode--}
```
@@ -199,8 +312,10 @@ public final XmpTimecode getAltTimecode()
Gets the timecode set by the user.
+
**Returns:**
[XmpTimecode](../../com.groupdocs.metadata.core/xmptimecode) - The timecode set by the user. When specified, it is used instead of the startTimecode.
+
### setAltTimecode(XmpTimecode value) {#setAltTimecode-com.groupdocs.metadata.core.XmpTimecode-}
```
public final void setAltTimecode(XmpTimecode value)
@@ -209,10 +324,12 @@ public final void setAltTimecode(XmpTimecode value)
Sets the timecode set by the user.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTimecode](../../com.groupdocs.metadata.core/xmptimecode) | The timecode set by the user. When specified, it is used instead of the startTimecode. |
+| value | [XmpTimecode](../../com.groupdocs.metadata.core/xmptimecode) | The timecode set by the user. When specified, it is used instead of the startTimecode.
+ |
### getArtist() {#getArtist--}
```
@@ -222,8 +339,10 @@ public final String getArtist()
Gets the name of the artist or artists.
+
**Returns:**
java.lang.String - The name of the artist or artists.
+
### setArtist(String value) {#setArtist-java.lang.String-}
```
public final void setArtist(String value)
@@ -232,10 +351,12 @@ public final void setArtist(String value)
Sets the name of the artist or artists.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the artist or artists. |
+| value | java.lang.String | The name of the artist or artists.
+ |
### getAudioChannelType() {#getAudioChannelType--}
```
@@ -245,8 +366,10 @@ public final String getAudioChannelType()
Gets the audio channel type.
+
**Returns:**
java.lang.String - The audio channel type. One of: Mono, Stereo, 5.1, 7.1, 16 Channel, Other
+
### setAudioChannelType(String value) {#setAudioChannelType-java.lang.String-}
```
public final void setAudioChannelType(String value)
@@ -255,10 +378,12 @@ public final void setAudioChannelType(String value)
Sets the audio channel type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The audio channel type. One of: Mono, Stereo, 5.1, 7.1, 16 Channel, Other |
+| value | java.lang.String | The audio channel type. One of: Mono, Stereo, 5.1, 7.1, 16 Channel, Other
+ |
### getAudioCompressor() {#getAudioCompressor--}
```
@@ -268,8 +393,10 @@ public final String getAudioCompressor()
Gets the audio compression used.
+
**Returns:**
java.lang.String - The audio compression used. For example, MP3.
+
### setAudioCompressor(String value) {#setAudioCompressor-java.lang.String-}
```
public final void setAudioCompressor(String value)
@@ -278,10 +405,12 @@ public final void setAudioCompressor(String value)
Sets the audio compression used.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The audio compression used. For example, MP3. |
+| value | java.lang.String | The audio compression used. For example, MP3.
+ |
### getAudioSampleRate() {#getAudioSampleRate--}
```
@@ -291,8 +420,10 @@ public final Integer getAudioSampleRate()
Gets the audio sample rate.
+
**Returns:**
java.lang.Integer - The audio sample rate. Can be any value, but commonly 32000, 44100, or 48000.
+
### setAudioSampleRate(Integer value) {#setAudioSampleRate-java.lang.Integer-}
```
public final void setAudioSampleRate(Integer value)
@@ -301,10 +432,12 @@ public final void setAudioSampleRate(Integer value)
Sets the audio sample rate.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The audio sample rate. Can be any value, but commonly 32000, 44100, or 48000. |
+| value | java.lang.Integer | The audio sample rate. Can be any value, but commonly 32000, 44100, or 48000.
+ |
### getAudioSampleType() {#getAudioSampleType--}
```
@@ -314,8 +447,10 @@ public final String getAudioSampleType()
Gets the audio sample type.
+
**Returns:**
java.lang.String - The audio sample type. One of: 8Int, 16Int, 24Int, 32Int, 32Float, Compressed, Packed, Other.
+
### setAudioSampleType(String value) {#setAudioSampleType-java.lang.String-}
```
public final void setAudioSampleType(String value)
@@ -324,10 +459,12 @@ public final void setAudioSampleType(String value)
Sets the audio sample type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The audio sample type. One of: 8Int, 16Int, 24Int, 32Int, 32Float, Compressed, Packed, Other. |
+| value | java.lang.String | The audio sample type. One of: 8Int, 16Int, 24Int, 32Int, 32Float, Compressed, Packed, Other.
+ |
### getCameraAngle() {#getCameraAngle--}
```
@@ -337,8 +474,10 @@ public final String getCameraAngle()
Gets the orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology.
+
**Returns:**
java.lang.String - The orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology. Predefined values include: Low Angle, Eye Level, High Angle, Overhead Shot, Birds Eye Shot, Dutch Angle, POV, Over the Shoulder, Reaction Shot.
+
### setCameraAngle(String value) {#setCameraAngle-java.lang.String-}
```
public final void setCameraAngle(String value)
@@ -347,10 +486,12 @@ public final void setCameraAngle(String value)
Sets the orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology. Predefined values include: Low Angle, Eye Level, High Angle, Overhead Shot, Birds Eye Shot, Dutch Angle, POV, Over the Shoulder, Reaction Shot. |
+| value | java.lang.String | The orientation of the camera to the subject in a static shot, from a fixed set of industry standard terminology. Predefined values include: Low Angle, Eye Level, High Angle, Overhead Shot, Birds Eye Shot, Dutch Angle, POV, Over the Shoulder, Reaction Shot.
+ |
### getCameraLabel() {#getCameraLabel--}
```
@@ -360,8 +501,10 @@ public final String getCameraLabel()
Gets the description of the camera used for a shoot.
+
**Returns:**
java.lang.String - The description of the camera used for a shoot. Can be any string, but is usually simply a number, for example "1", "2", or more explicitly "Camera 1".
+
### setCameraLabel(String value) {#setCameraLabel-java.lang.String-}
```
public final void setCameraLabel(String value)
@@ -370,10 +513,12 @@ public final void setCameraLabel(String value)
Sets the description of the camera used for a shoot.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The description of the camera used for a shoot. Can be any string, but is usually simply a number, for example "1", "2", or more explicitly "Camera 1". |
+| value | java.lang.String | The description of the camera used for a shoot. Can be any string, but is usually simply a number, for example "1", "2", or more explicitly "Camera 1".
+ |
### getCameraModel() {#getCameraModel--}
```
@@ -383,8 +528,10 @@ public final String getCameraModel()
Gets the make and model of the camera used for a shoot.
+
**Returns:**
java.lang.String - The make and model of the camera used for a shoot.
+
### setCameraModel(String value) {#setCameraModel-java.lang.String-}
```
public final void setCameraModel(String value)
@@ -393,10 +540,12 @@ public final void setCameraModel(String value)
Sets the make and model of the camera used for a shoot.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The make and model of the camera used for a shoot. |
+| value | java.lang.String | The make and model of the camera used for a shoot.
+ |
### getCameraMove() {#getCameraMove--}
```
@@ -406,8 +555,10 @@ public final String getCameraMove()
Gets the movement of the camera during the shot, from a fixed set of industry standard terminology.
+
**Returns:**
java.lang.String - The movement of the camera during the shot, from a fixed set of industry standard terminology. Predefined values include: Aerial, Boom Up, Boom Down, Crane Up, Crane Down, Dolly In, Dolly Out, Pan Left, Pan Right, Pedestal Up, Pedestal Down, Tilt Up, Tilt Down, Tracking, Truck Left, Truck Right, Zoom In, Zoom Out.
+
### setCameraMove(String value) {#setCameraMove-java.lang.String-}
```
public final void setCameraMove(String value)
@@ -416,10 +567,12 @@ public final void setCameraMove(String value)
Sets the movement of the camera during the shot, from a fixed set of industry standard terminology.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The movement of the camera during the shot, from a fixed set of industry standard terminology. Predefined values include: Aerial, Boom Up, Boom Down, Crane Up, Crane Down, Dolly In, Dolly Out, Pan Left, Pan Right, Pedestal Up, Pedestal Down, Tilt Up, Tilt Down, Tracking, Truck Left, Truck Right, Zoom In, Zoom Out. |
+| value | java.lang.String | The movement of the camera during the shot, from a fixed set of industry standard terminology. Predefined values include: Aerial, Boom Up, Boom Down, Crane Up, Crane Down, Dolly In, Dolly Out, Pan Left, Pan Right, Pedestal Up, Pedestal Down, Tilt Up, Tilt Down, Tracking, Truck Left, Truck Right, Zoom In, Zoom Out.
+ |
### getClient() {#getClient--}
```
@@ -429,8 +582,10 @@ public final String getClient()
Gets the client for the job of which this shot or take is a part.
+
**Returns:**
java.lang.String - The client for the job of which this shot or take is a part.
+
### setClient(String value) {#setClient-java.lang.String-}
```
public final void setClient(String value)
@@ -439,10 +594,12 @@ public final void setClient(String value)
Sets the client for the job of which this shot or take is a part.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The client for the job of which this shot or take is a part. |
+| value | java.lang.String | The client for the job of which this shot or take is a part.
+ |
### getComment() {#getComment--}
```
@@ -452,8 +609,10 @@ public final String getComment()
Gets the user\\u2019s comments.
+
**Returns:**
java.lang.String - The user\\u2019s comments.
+
### setComment(String value) {#setComment-java.lang.String-}
```
public final void setComment(String value)
@@ -462,10 +621,12 @@ public final void setComment(String value)
Sets the user\\u2019s comments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The user\\u2019s comments. |
+| value | java.lang.String | The user\\u2019s comments.
+ |
### getComposer() {#getComposer--}
```
@@ -475,8 +636,10 @@ public final String getComposer()
Gets the composer\\u2019s names.
+
**Returns:**
java.lang.String - The composer\\u2019s names.
+
### setComposer(String value) {#setComposer-java.lang.String-}
```
public final void setComposer(String value)
@@ -485,10 +648,12 @@ public final void setComposer(String value)
Sets the composer\\u2019s names.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The composer\\u2019s names. |
+| value | java.lang.String | The composer\\u2019s names.
+ |
### getDirector() {#getDirector--}
```
@@ -498,8 +663,10 @@ public final String getDirector()
Gets the director of the scene.
+
**Returns:**
java.lang.String - The director of the scene.
+
### setDirector(String value) {#setDirector-java.lang.String-}
```
public final void setDirector(String value)
@@ -508,10 +675,12 @@ public final void setDirector(String value)
Sets the director of the scene.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The director of the scene. |
+| value | java.lang.String | The director of the scene.
+ |
### getDirectorPhotography() {#getDirectorPhotography--}
```
@@ -521,8 +690,10 @@ public final String getDirectorPhotography()
Gets the director of photography for the scene.
+
**Returns:**
java.lang.String - The director of photography for the scene.
+
### setDirectorPhotography(String value) {#setDirectorPhotography-java.lang.String-}
```
public final void setDirectorPhotography(String value)
@@ -531,10 +702,12 @@ public final void setDirectorPhotography(String value)
Sets the director of photography for the scene.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The director of photography for the scene. |
+| value | java.lang.String | The director of photography for the scene.
+ |
### getDuration() {#getDuration--}
```
@@ -544,8 +717,10 @@ public final XmpTime getDuration()
Gets the duration of the media file.
+
**Returns:**
[XmpTime](../../com.groupdocs.metadata.core/xmptime) - The duration of the media file.
+
### setDuration(XmpTime value) {#setDuration-com.groupdocs.metadata.core.XmpTime-}
```
public final void setDuration(XmpTime value)
@@ -554,10 +729,12 @@ public final void setDuration(XmpTime value)
Sets the duration of the media file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The duration of the media file. |
+| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The duration of the media file.
+ |
### getEngineer() {#getEngineer--}
```
@@ -567,8 +744,10 @@ public final String getEngineer()
Gets the engineer's names.
+
**Returns:**
java.lang.String - The engineer's names.
+
### setEngineer(String value) {#setEngineer-java.lang.String-}
```
public final void setEngineer(String value)
@@ -577,10 +756,12 @@ public final void setEngineer(String value)
Sets the engineer's names.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The engineer's names. |
+| value | java.lang.String | The engineer's names.
+ |
### getFileDataRate() {#getFileDataRate--}
```
@@ -590,8 +771,10 @@ public final XmpRational getFileDataRate()
Gets the file data rate in megabytes per second.
+
**Returns:**
[XmpRational](../../com.groupdocs.metadata.core/xmprational) - The file data rate in megabytes per second. For example: "36/10" = 3.6 MB/sec.
+
### setFileDataRate(XmpRational value) {#setFileDataRate-com.groupdocs.metadata.core.XmpRational-}
```
public final void setFileDataRate(XmpRational value)
@@ -600,10 +783,12 @@ public final void setFileDataRate(XmpRational value)
Sets the file data rate in megabytes per second.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The file data rate in megabytes per second. For example: "36/10" = 3.6 MB/sec. |
+| value | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The file data rate in megabytes per second. For example: "36/10" = 3.6 MB/sec.
+ |
### getGenre() {#getGenre--}
```
@@ -613,8 +798,10 @@ public final String getGenre()
Gets the name of the genres.
+
**Returns:**
java.lang.String - The name of the genres.
+
### setGenre(String value) {#setGenre-java.lang.String-}
```
public final void setGenre(String value)
@@ -623,10 +810,12 @@ public final void setGenre(String value)
Sets the name of the genres.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the genres. |
+| value | java.lang.String | The name of the genres.
+ |
### getGood() {#getGood--}
```
@@ -636,8 +825,10 @@ public final Boolean getGood()
Gets a value indicating whether the shot is a keeper.
+
**Returns:**
java.lang.Boolean - A value indicating whether the shot is a keeper.
+
### setGood(Boolean value) {#setGood-java.lang.Boolean-}
```
public final void setGood(Boolean value)
@@ -646,10 +837,12 @@ public final void setGood(Boolean value)
Sets a value indicating whether the shot is a keeper.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | A value indicating whether the shot is a keeper. |
+| value | java.lang.Boolean | A value indicating whether the shot is a keeper.
+ |
### getInstrument() {#getInstrument--}
```
@@ -659,8 +852,10 @@ public final String getInstrument()
Gets the musical instruments.
+
**Returns:**
java.lang.String - The musical instruments.
+
### setInstrument(String value) {#setInstrument-java.lang.String-}
```
public final void setInstrument(String value)
@@ -669,10 +864,12 @@ public final void setInstrument(String value)
Sets the musical instruments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The musical instruments. |
+| value | java.lang.String | The musical instruments.
+ |
### getIntroTime() {#getIntroTime--}
```
@@ -682,8 +879,10 @@ public final XmpTime getIntroTime()
Gets the duration of lead time for queuing music.
+
**Returns:**
[XmpTime](../../com.groupdocs.metadata.core/xmptime) - The duration of lead time for queuing music.
+
### setIntroTime(XmpTime value) {#setIntroTime-com.groupdocs.metadata.core.XmpTime-}
```
public final void setIntroTime(XmpTime value)
@@ -692,10 +891,12 @@ public final void setIntroTime(XmpTime value)
Sets the duration of lead time for queuing music.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The duration of lead time for queuing music. |
+| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The duration of lead time for queuing music.
+ |
### getKey() {#getKey--}
```
@@ -705,8 +906,10 @@ public final String getKey()
Gets the audio\\u2019s musical key.
+
**Returns:**
-java.lang.String - The audio\\u2019s musical key. One of: C, C\#, D, D\#, E, F, F\#, G, G\#, A, A\#, B.
+java.lang.String - The audio\\u2019s musical key. One of: C, C#, D, D#, E, F, F#, G, G#, A, A#, B.
+
### setKey(String value) {#setKey-java.lang.String-}
```
public final void setKey(String value)
@@ -715,10 +918,12 @@ public final void setKey(String value)
Sets the audio\\u2019s musical key.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The audio\\u2019s musical key. One of: C, C\#, D, D\#, E, F, F\#, G, G\#, A, A\#, B. |
+| value | java.lang.String | The audio\\u2019s musical key. One of: C, C#, D, D#, E, F, F#, G, G#, A, A#, B.
+ |
### getLogComment() {#getLogComment--}
```
@@ -728,8 +933,10 @@ public final String getLogComment()
Gets the user\\u2019s log comments.
+
**Returns:**
java.lang.String - The user\\u2019s log comments.
+
### setLogComment(String value) {#setLogComment-java.lang.String-}
```
public final void setLogComment(String value)
@@ -738,10 +945,12 @@ public final void setLogComment(String value)
Sets the user\\u2019s log comments.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The user\\u2019s log comments. |
+| value | java.lang.String | The user\\u2019s log comments.
+ |
### getLoop() {#getLoop--}
```
@@ -751,8 +960,10 @@ public final Boolean getLoop()
Gets a value indicating whether the clip can be looped seamlessly.
+
**Returns:**
java.lang.Boolean - A value indicating whether the clip can be looped seamlessly.
+
### setLoop(Boolean value) {#setLoop-java.lang.Boolean-}
```
public final void setLoop(Boolean value)
@@ -761,10 +972,12 @@ public final void setLoop(Boolean value)
Sets a value indicating whether the clip can be looped seamlessly.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | A value indicating whether the clip can be looped seamlessly. |
+| value | java.lang.Boolean | A value indicating whether the clip can be looped seamlessly.
+ |
### getNumberOfBeats() {#getNumberOfBeats--}
```
@@ -774,8 +987,10 @@ public final Double getNumberOfBeats()
Gets the total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds.
+
**Returns:**
java.lang.Double - The total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds.
+
### setNumberOfBeats(Double value) {#setNumberOfBeats-java.lang.Double-}
```
public final void setNumberOfBeats(Double value)
@@ -784,10 +999,12 @@ public final void setNumberOfBeats(Double value)
Sets the total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds. |
+| value | java.lang.Double | The total number of musical beats in a clip; for example, the beats-per-second times the duration in seconds.
+ |
### getOutCue() {#getOutCue--}
```
@@ -797,8 +1014,10 @@ public final XmpTime getOutCue()
Gets the time at which to fade out.
+
**Returns:**
[XmpTime](../../com.groupdocs.metadata.core/xmptime) - The time at which to fade out.
+
### setOutCue(XmpTime value) {#setOutCue-com.groupdocs.metadata.core.XmpTime-}
```
public final void setOutCue(XmpTime value)
@@ -807,10 +1026,12 @@ public final void setOutCue(XmpTime value)
Sets the time at which to fade out.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The time at which to fade out. |
+| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The time at which to fade out.
+ |
### getProjectName() {#getProjectName--}
```
@@ -820,8 +1041,10 @@ public final String getProjectName()
Gets the name of the project of which this file is a part.
+
**Returns:**
java.lang.String - The name of the project of which this file is a part.
+
### setProjectName(String value) {#setProjectName-java.lang.String-}
```
public final void setProjectName(String value)
@@ -830,10 +1053,12 @@ public final void setProjectName(String value)
Sets the name of the project of which this file is a part.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the project of which this file is a part. |
+| value | java.lang.String | The name of the project of which this file is a part.
+ |
### getRelativeTimestamp() {#getRelativeTimestamp--}
```
@@ -843,8 +1068,10 @@ public final XmpTime getRelativeTimestamp()
Gets the start time of the media inside the audio project.
+
**Returns:**
[XmpTime](../../com.groupdocs.metadata.core/xmptime) - The start time of the media inside the audio project.
+
### setRelativeTimestamp(XmpTime value) {#setRelativeTimestamp-com.groupdocs.metadata.core.XmpTime-}
```
public final void setRelativeTimestamp(XmpTime value)
@@ -853,10 +1080,12 @@ public final void setRelativeTimestamp(XmpTime value)
Sets the start time of the media inside the audio project.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The start time of the media inside the audio project. |
+| value | [XmpTime](../../com.groupdocs.metadata.core/xmptime) | The start time of the media inside the audio project.
+ |
### getReleaseDate() {#getReleaseDate--}
```
@@ -866,8 +1095,10 @@ public final Date getReleaseDate()
Gets the date the title was released.
+
**Returns:**
java.util.Date - The date the title was released.
+
### setReleaseDate(Date value) {#setReleaseDate-java.util.Date-}
```
public final void setReleaseDate(Date value)
@@ -876,10 +1107,12 @@ public final void setReleaseDate(Date value)
Sets the date the title was released.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date the title was released. |
+| value | java.util.Date | The date the title was released.
+ |
### getShotDate() {#getShotDate--}
```
@@ -889,8 +1122,10 @@ public final Date getShotDate()
Gets the date and time when the video was shot.
+
**Returns:**
java.util.Date - The date and time when the video was shot.
+
### setShotDate(Date value) {#setShotDate-java.util.Date-}
```
public final void setShotDate(Date value)
@@ -899,10 +1134,12 @@ public final void setShotDate(Date value)
Sets the date and time when the video was shot.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date and time when the video was shot. |
+| value | java.util.Date | The date and time when the video was shot.
+ |
### getStartTimecode() {#getStartTimecode--}
```
@@ -912,8 +1149,10 @@ public final XmpTimecode getStartTimecode()
Gets the timecode of the first frame of video in the file, as obtained from the device control.
+
**Returns:**
[XmpTimecode](../../com.groupdocs.metadata.core/xmptimecode) - The timecode of the first frame of video in the file, as obtained from the device control.
+
### setStartTimecode(XmpTimecode value) {#setStartTimecode-com.groupdocs.metadata.core.XmpTimecode-}
```
public final void setStartTimecode(XmpTimecode value)
@@ -922,10 +1161,12 @@ public final void setStartTimecode(XmpTimecode value)
Sets the timecode of the first frame of video in the file, as obtained from the device control.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTimecode](../../com.groupdocs.metadata.core/xmptimecode) | The timecode of the first frame of video in the file, as obtained from the device control. |
+| value | [XmpTimecode](../../com.groupdocs.metadata.core/xmptimecode) | The timecode of the first frame of video in the file, as obtained from the device control.
+ |
### getTakeNumber() {#getTakeNumber--}
```
@@ -935,8 +1176,10 @@ public final Integer getTakeNumber()
Gets a numeric value indicating the absolute number of a take.
+
**Returns:**
java.lang.Integer - A numeric value indicating the absolute number of a take.
+
### setTakeNumber(Integer value) {#setTakeNumber-java.lang.Integer-}
```
public final void setTakeNumber(Integer value)
@@ -945,10 +1188,12 @@ public final void setTakeNumber(Integer value)
Sets a numeric value indicating the absolute number of a take.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | A numeric value indicating the absolute number of a take. |
+| value | java.lang.Integer | A numeric value indicating the absolute number of a take.
+ |
### getTempo() {#getTempo--}
```
@@ -958,8 +1203,10 @@ public final Double getTempo()
Gets the audio\\u2019s tempo.
+
**Returns:**
java.lang.Double - The audio\\u2019s tempo.
+
### setTempo(Double value) {#setTempo-java.lang.Double-}
```
public final void setTempo(Double value)
@@ -968,10 +1215,12 @@ public final void setTempo(Double value)
Sets the audio\\u2019s tempo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The audio\\u2019s tempo. |
+| value | java.lang.Double | The audio\\u2019s tempo.
+ |
### getTrackNumber() {#getTrackNumber--}
```
@@ -981,8 +1230,10 @@ public final Integer getTrackNumber()
Gets a numeric value indicating the order of the audio file within its original recording.
+
**Returns:**
java.lang.Integer - A numeric value indicating the order of the audio file within its original recording.
+
### setTrackNumber(Integer value) {#setTrackNumber-java.lang.Integer-}
```
public final void setTrackNumber(Integer value)
@@ -991,10 +1242,12 @@ public final void setTrackNumber(Integer value)
Sets a numeric value indicating the order of the audio file within its original recording.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | A numeric value indicating the order of the audio file within its original recording. |
+| value | java.lang.Integer | A numeric value indicating the order of the audio file within its original recording.
+ |
### getVideoAlphaPremultipleColor() {#getVideoAlphaPremultipleColor--}
```
@@ -1004,8 +1257,10 @@ public final XmpColorantBase getVideoAlphaPremultipleColor()
Gets the timecode of the first frame of video in the file, as obtained from the device control.
+
**Returns:**
[XmpColorantBase](../../com.groupdocs.metadata.core/xmpcolorantbase) - The timecode of the first frame of video in the file, as obtained from the device control.
+
### setVideoAlphaPremultipleColor(XmpColorantBase value) {#setVideoAlphaPremultipleColor-com.groupdocs.metadata.core.XmpColorantBase-}
```
public final void setVideoAlphaPremultipleColor(XmpColorantBase value)
@@ -1014,10 +1269,12 @@ public final void setVideoAlphaPremultipleColor(XmpColorantBase value)
Sets the timecode of the first frame of video in the file, as obtained from the device control.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpColorantBase](../../com.groupdocs.metadata.core/xmpcolorantbase) | The timecode of the first frame of video in the file, as obtained from the device control. |
+| value | [XmpColorantBase](../../com.groupdocs.metadata.core/xmpcolorantbase) | The timecode of the first frame of video in the file, as obtained from the device control.
+ |
### getVideoAlphaUnityIsTransparent() {#getVideoAlphaUnityIsTransparent--}
```
@@ -1027,8 +1284,10 @@ public final Boolean getVideoAlphaUnityIsTransparent()
Gets a value indicating whether the unity is clear.
+
**Returns:**
java.lang.Boolean - true , if unity is clear; otherwise, it is opaque.
+
### setVideoAlphaUnityIsTransparent(Boolean value) {#setVideoAlphaUnityIsTransparent-java.lang.Boolean-}
```
public final void setVideoAlphaUnityIsTransparent(Boolean value)
@@ -1037,10 +1296,12 @@ public final void setVideoAlphaUnityIsTransparent(Boolean value)
Sets a value indicating whether the unity is clear.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true , if unity is clear; otherwise, it is opaque. |
+| value | java.lang.Boolean | true , if unity is clear; otherwise, it is opaque.
+ |
### getVideoFrameRate() {#getVideoFrameRate--}
```
@@ -1050,8 +1311,10 @@ public final Double getVideoFrameRate()
Gets the video frame rate.
+
**Returns:**
java.lang.Double - The video frame rate.
+
### setVideoFrameRate(Double value) {#setVideoFrameRate-java.lang.Double-}
```
public final void setVideoFrameRate(Double value)
@@ -1060,10 +1323,12 @@ public final void setVideoFrameRate(Double value)
Sets the video frame rate.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Double | The video frame rate. |
+| value | java.lang.Double | The video frame rate.
+ |
### getVideoFrameSize() {#getVideoFrameSize--}
```
@@ -1073,8 +1338,10 @@ public final XmpDimensions getVideoFrameSize()
Gets the frame size.
+
**Returns:**
[XmpDimensions](../../com.groupdocs.metadata.core/xmpdimensions) - The frame size.
+
### setVideoFrameSize(XmpDimensions value) {#setVideoFrameSize-com.groupdocs.metadata.core.XmpDimensions-}
```
public final void setVideoFrameSize(XmpDimensions value)
@@ -1083,10 +1350,12 @@ public final void setVideoFrameSize(XmpDimensions value)
Sets the frame size.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpDimensions](../../com.groupdocs.metadata.core/xmpdimensions) | The frame size. |
+| value | [XmpDimensions](../../com.groupdocs.metadata.core/xmpdimensions) | The frame size.
+ |
### getVideoPixelAspectRatio() {#getVideoPixelAspectRatio--}
```
@@ -1096,8 +1365,10 @@ public final XmpRational getVideoPixelAspectRatio()
Gets the aspect ratio, expressed as wd/ht.
+
**Returns:**
[XmpRational](../../com.groupdocs.metadata.core/xmprational) - The aspect ratio, expressed as wd/ht.
+
### setVideoPixelAspectRatio(XmpRational value) {#setVideoPixelAspectRatio-com.groupdocs.metadata.core.XmpRational-}
```
public final void setVideoPixelAspectRatio(XmpRational value)
@@ -1106,10 +1377,12 @@ public final void setVideoPixelAspectRatio(XmpRational value)
Sets the aspect ratio, expressed as wd/ht.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The aspect ratio, expressed as wd/ht. |
+| value | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The aspect ratio, expressed as wd/ht.
+ |
### getPartOfCompilation() {#getPartOfCompilation--}
```
@@ -1119,8 +1392,10 @@ public final Boolean getPartOfCompilation()
Gets a value indicating whether the resource is a part of compilation.
+
**Returns:**
java.lang.Boolean - A value indicating whether the resource is a part of compilation.
+
### setPartOfCompilation(Boolean value) {#setPartOfCompilation-java.lang.Boolean-}
```
public final void setPartOfCompilation(Boolean value)
@@ -1129,10 +1404,12 @@ public final void setPartOfCompilation(Boolean value)
Sets a value indicating whether the resource is a part of compilation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | A value indicating whether the resource is a part of compilation. |
+| value | java.lang.Boolean | A value indicating whether the resource is a part of compilation.
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -1142,11 +1419,14 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
### set(String name, XmpComplexType value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpComplexType-}
```
@@ -1154,13 +1434,18 @@ public void set(String name, XmpComplexType value)
```
-Sets the value inherited from XmpComplexType .
+Sets the value inherited from
+XmpComplexType
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpComplexType](../../com.groupdocs.metadata.core/xmpcomplextype) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpComplexType](../../com.groupdocs.metadata.core/xmpcomplextype) | XMP metadata property value.
+ |
### setAudioChannelType(XmpAudioChannelType audioChannelType) {#setAudioChannelType-com.groupdocs.metadata.core.XmpAudioChannelType-}
```
@@ -1170,10 +1455,12 @@ public final void setAudioChannelType(XmpAudioChannelType audioChannelType)
Sets the audio channel type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| audioChannelType | [XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) | The audio channel type. |
+| audioChannelType | [XmpAudioChannelType](../../com.groupdocs.metadata.core/xmpaudiochanneltype) | The audio channel type.
+ |
### setAudioSampleType(XmpAudioSampleType audioSampleType) {#setAudioSampleType-com.groupdocs.metadata.core.XmpAudioSampleType-}
```
@@ -1183,8 +1470,10 @@ public final void setAudioSampleType(XmpAudioSampleType audioSampleType)
Sets the audio sample type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| audioSampleType | [XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) | The audio sample type. |
+| audioSampleType | [XmpAudioSampleType](../../com.groupdocs.metadata.core/xmpaudiosampletype) | The audio sample type.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpelementbase/_index.md b/english/java/com.groupdocs.metadata.core/xmpelementbase/_index.md
index ac02e11f4e..6fc9c638c1 100644
--- a/english/java/com.groupdocs.metadata.core/xmpelementbase/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpelementbase/_index.md
@@ -13,14 +13,19 @@ public abstract class XmpElementBase extends CustomPackage
```
Represents base XMP element that contains attributes.
+
## Methods
| Method | Description |
| --- | --- |
-| [setAttribute(String attribute, String value)](#setAttribute-java.lang.String-java.lang.String-) | Adds the attribute. |
-| [clearAttributes()](#clearAttributes--) | Removes all attributes. |
-| [containsAttribute(String attribute)](#containsAttribute-java.lang.String-) | Determines whether the element contains a specific attribute. |
-| [getAttribute(String attribute)](#getAttribute-java.lang.String-) | Gets the attribute. |
+| [setAttribute(String attribute, String value)](#setAttribute-java.lang.String-java.lang.String-) | Adds the attribute.
+ |
+| [clearAttributes()](#clearAttributes--) | Removes all attributes.
+ |
+| [containsAttribute(String attribute)](#containsAttribute-java.lang.String-) | Determines whether the element contains a specific attribute.
+ |
+| [getAttribute(String attribute)](#getAttribute-java.lang.String-) | Gets the attribute.
+ |
### setAttribute(String attribute, String value) {#setAttribute-java.lang.String-java.lang.String-}
```
public void setAttribute(String attribute, String value)
@@ -29,11 +34,14 @@ public void setAttribute(String attribute, String value)
Adds the attribute.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| attribute | java.lang.String | Attribute key. |
-| value | java.lang.String | Attribute value. |
+| attribute | java.lang.String | Attribute key.
+ |
+| value | java.lang.String | Attribute value.
+ |
### clearAttributes() {#clearAttributes--}
```
@@ -43,6 +51,7 @@ public final void clearAttributes()
Removes all attributes.
+
### containsAttribute(String attribute) {#containsAttribute-java.lang.String-}
```
public final boolean containsAttribute(String attribute)
@@ -51,13 +60,16 @@ public final boolean containsAttribute(String attribute)
Determines whether the element contains a specific attribute.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| attribute | java.lang.String | Attribute name. |
+| attribute | java.lang.String | Attribute name.
+ |
**Returns:**
boolean - true if attribute is exist; otherwise false.
+
### getAttribute(String attribute) {#getAttribute-java.lang.String-}
```
public final String getAttribute(String attribute)
@@ -66,10 +78,13 @@ public final String getAttribute(String attribute)
Gets the attribute.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| attribute | java.lang.String | The attribute. |
+| attribute | java.lang.String | The attribute.
+ |
**Returns:**
java.lang.String - The attribute value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpexception/_index.md b/english/java/com.groupdocs.metadata.core/xmpexception/_index.md
index d8945af55b..0e0b9e51eb 100644
--- a/english/java/com.groupdocs.metadata.core/xmpexception/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpexception/_index.md
@@ -13,20 +13,33 @@ public final class XmpException extends GroupDocsMetadataException
```
The exception that is thrown when XMP has invalid structure.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpException()](#XmpException--) | Initializes a new instance of the XmpException class. |
-| [XmpException(String message)](#XmpException-java.lang.String-) | Initializes a new instance of the XmpException class. |
-| [XmpException(String message, RuntimeException innerException)](#XmpException-java.lang.String-java.lang.RuntimeException-) | Initializes a new instance of the XmpException class. |
+| [XmpException()](#XmpException--) | Initializes a new instance of the
+XmpException
+ class.
+ |
+| [XmpException(String message)](#XmpException-java.lang.String-) | Initializes a new instance of the
+XmpException
+ class.
+ |
+| [XmpException(String message, RuntimeException innerException)](#XmpException-java.lang.String-java.lang.RuntimeException-) | Initializes a new instance of the
+XmpException
+ class.
+ |
### XmpException() {#XmpException--}
```
public XmpException()
```
-Initializes a new instance of the XmpException class.
+Initializes a new instance of the
+XmpException
+ class.
+
### XmpException(String message) {#XmpException-java.lang.String-}
```
@@ -34,12 +47,16 @@ public XmpException(String message)
```
-Initializes a new instance of the XmpException class.
+Initializes a new instance of the
+XmpException
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| message | java.lang.String | The message. |
+| message | java.lang.String | The message.
+ |
### XmpException(String message, RuntimeException innerException) {#XmpException-java.lang.String-java.lang.RuntimeException-}
```
@@ -47,11 +64,16 @@ public XmpException(String message, RuntimeException innerException)
```
-Initializes a new instance of the XmpException class.
+Initializes a new instance of the
+XmpException
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| message | java.lang.String | The message. |
-| innerException | java.lang.RuntimeException | The inner exception. |
+| message | java.lang.String | The message.
+ |
+| innerException | java.lang.RuntimeException | The inner exception.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpfont/_index.md b/english/java/com.groupdocs.metadata.core/xmpfont/_index.md
index 64ea12baae..f26ab9de0a 100644
--- a/english/java/com.groupdocs.metadata.core/xmpfont/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpfont/_index.md
@@ -13,39 +13,65 @@ public final class XmpFont extends XmpComplexType
```
A structure containing the characteristics of a font used in a document.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpFont()](#XmpFont--) | Initializes a new instance of the XmpFont class. |
-| [XmpFont(String fontFamily)](#XmpFont-java.lang.String-) | Initializes a new instance of the XmpFont class. |
+| [XmpFont()](#XmpFont--) | Initializes a new instance of the
+XmpFont
+ class.
+ |
+| [XmpFont(String fontFamily)](#XmpFont-java.lang.String-) | Initializes a new instance of the
+XmpFont
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getChildFontFiles()](#getChildFontFiles--) | Gets the list of file names for the fonts that make up a composite font. |
-| [setChildFontFiles(String[] value)](#setChildFontFiles-java.lang.String---) | Sets the list of file names for the fonts that make up a composite font. |
-| [isComposite()](#isComposite--) | Gets a value indicating whether whether the font is composite. |
-| [setComposite(Boolean value)](#setComposite-java.lang.Boolean-) | Sets a value indicating whether whether the font is composite. |
-| [getFontFace()](#getFontFace--) | Gets the font face name. |
-| [setFontFace(String value)](#setFontFace-java.lang.String-) | Sets the font face name. |
-| [getFontFamily()](#getFontFamily--) | Gets the font family name. |
-| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Sets the font family name. |
-| [getFontFileName()](#getFontFileName--) | Gets the font file name (not a complete path). |
-| [setFontFileName(String value)](#setFontFileName-java.lang.String-) | Sets the font file name (not a complete path). |
-| [getFontName()](#getFontName--) | Gets the PostScript name of the font. |
-| [setFontName(String value)](#setFontName-java.lang.String-) | Sets the PostScript name of the font. |
-| [getFontType()](#getFontType--) | Gets the font type. |
-| [setFontType(String value)](#setFontType-java.lang.String-) | Sets the font type. |
-| [getVersion()](#getVersion--) | Gets the font version. |
-| [setVersion(String value)](#setVersion-java.lang.String-) | Sets the font version. |
+| [getChildFontFiles()](#getChildFontFiles--) | Gets the list of file names for the fonts that make up a composite font.
+ |
+| [setChildFontFiles(String[] value)](#setChildFontFiles-java.lang.String---) | Sets the list of file names for the fonts that make up a composite font.
+ |
+| [isComposite()](#isComposite--) | Gets a value indicating whether whether the font is composite.
+ |
+| [setComposite(Boolean value)](#setComposite-java.lang.Boolean-) | Sets a value indicating whether whether the font is composite.
+ |
+| [getFontFace()](#getFontFace--) | Gets the font face name.
+ |
+| [setFontFace(String value)](#setFontFace-java.lang.String-) | Sets the font face name.
+ |
+| [getFontFamily()](#getFontFamily--) | Gets the font family name.
+ |
+| [setFontFamily(String value)](#setFontFamily-java.lang.String-) | Sets the font family name.
+ |
+| [getFontFileName()](#getFontFileName--) | Gets the font file name (not a complete path).
+ |
+| [setFontFileName(String value)](#setFontFileName-java.lang.String-) | Sets the font file name (not a complete path).
+ |
+| [getFontName()](#getFontName--) | Gets the PostScript name of the font.
+ |
+| [setFontName(String value)](#setFontName-java.lang.String-) | Sets the PostScript name of the font.
+ |
+| [getFontType()](#getFontType--) | Gets the font type.
+ |
+| [setFontType(String value)](#setFontType-java.lang.String-) | Sets the font type.
+ |
+| [getVersion()](#getVersion--) | Gets the font version.
+ |
+| [setVersion(String value)](#setVersion-java.lang.String-) | Sets the font version.
+ |
### XmpFont() {#XmpFont--}
```
public XmpFont()
```
-Initializes a new instance of the XmpFont class.
+Initializes a new instance of the
+XmpFont
+ class.
+
### XmpFont(String fontFamily) {#XmpFont-java.lang.String-}
```
@@ -53,12 +79,16 @@ public XmpFont(String fontFamily)
```
-Initializes a new instance of the XmpFont class.
+Initializes a new instance of the
+XmpFont
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| fontFamily | java.lang.String | Font family. |
+| fontFamily | java.lang.String | Font family.
+ |
### getChildFontFiles() {#getChildFontFiles--}
```
@@ -68,8 +98,10 @@ public final String[] getChildFontFiles()
Gets the list of file names for the fonts that make up a composite font.
+
**Returns:**
java.lang.String[] - The list of file names for the fonts that make up a composite font.
+
### setChildFontFiles(String[] value) {#setChildFontFiles-java.lang.String---}
```
public final void setChildFontFiles(String[] value)
@@ -78,10 +110,12 @@ public final void setChildFontFiles(String[] value)
Sets the list of file names for the fonts that make up a composite font.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The list of file names for the fonts that make up a composite font. |
+| value | java.lang.String[] | The list of file names for the fonts that make up a composite font.
+ |
### isComposite() {#isComposite--}
```
@@ -91,8 +125,10 @@ public final Boolean isComposite()
Gets a value indicating whether whether the font is composite.
+
**Returns:**
java.lang.Boolean - true if the font is composite; otherwise, false .
+
### setComposite(Boolean value) {#setComposite-java.lang.Boolean-}
```
public final void setComposite(Boolean value)
@@ -101,10 +137,12 @@ public final void setComposite(Boolean value)
Sets a value indicating whether whether the font is composite.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if the font is composite; otherwise, false . |
+| value | java.lang.Boolean | true if the font is composite; otherwise, false .
+ |
### getFontFace() {#getFontFace--}
```
@@ -114,8 +152,10 @@ public final String getFontFace()
Gets the font face name.
+
**Returns:**
java.lang.String - The font face name.
+
### setFontFace(String value) {#setFontFace-java.lang.String-}
```
public final void setFontFace(String value)
@@ -124,10 +164,12 @@ public final void setFontFace(String value)
Sets the font face name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The font face name. |
+| value | java.lang.String | The font face name.
+ |
### getFontFamily() {#getFontFamily--}
```
@@ -137,8 +179,10 @@ public final String getFontFamily()
Gets the font family name.
+
**Returns:**
java.lang.String - The font family name.
+
### setFontFamily(String value) {#setFontFamily-java.lang.String-}
```
public final void setFontFamily(String value)
@@ -147,10 +191,12 @@ public final void setFontFamily(String value)
Sets the font family name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The font family name. |
+| value | java.lang.String | The font family name.
+ |
### getFontFileName() {#getFontFileName--}
```
@@ -160,8 +206,10 @@ public final String getFontFileName()
Gets the font file name (not a complete path).
+
**Returns:**
java.lang.String - The name of the font file.
+
### setFontFileName(String value) {#setFontFileName-java.lang.String-}
```
public final void setFontFileName(String value)
@@ -170,10 +218,12 @@ public final void setFontFileName(String value)
Sets the font file name (not a complete path).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the font file. |
+| value | java.lang.String | The name of the font file.
+ |
### getFontName() {#getFontName--}
```
@@ -183,8 +233,10 @@ public final String getFontName()
Gets the PostScript name of the font.
+
**Returns:**
java.lang.String - The PostScript name of the font.
+
### setFontName(String value) {#setFontName-java.lang.String-}
```
public final void setFontName(String value)
@@ -193,10 +245,12 @@ public final void setFontName(String value)
Sets the PostScript name of the font.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The PostScript name of the font. |
+| value | java.lang.String | The PostScript name of the font.
+ |
### getFontType() {#getFontType--}
```
@@ -206,12 +260,19 @@ public final String getFontType()
Gets the font type.
+
**Returns:**
java.lang.String - The font type.
---------------------
+
+
+*** ** * ** ***
TrueType, Type 1, Open Type, and so on.
+
+
+
+
### setFontType(String value) {#setFontType-java.lang.String-}
```
public final void setFontType(String value)
@@ -220,14 +281,21 @@ public final void setFontType(String value)
Sets the font type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The font type.
---------------------
+
+
+*** ** * ** ***
+
+TrueType, Type 1, Open Type, and so on.
+
+
-TrueType, Type 1, Open Type, and so on. |
+ |
### getVersion() {#getVersion--}
```
@@ -237,12 +305,19 @@ public final String getVersion()
Gets the font version.
+
**Returns:**
java.lang.String - The version.
---------------------
+
+
+*** ** * ** ***
/version for Type1 fonts nameId 5 for Apple True Type and OpenType /CIDFontVersion for CID fonts The empty string for bitmap fonts
+
+
+
+
### setVersion(String value) {#setVersion-java.lang.String-}
```
public final void setVersion(String value)
@@ -251,12 +326,19 @@ public final void setVersion(String value)
Sets the font version.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The version.
---------------------
+
+
+*** ** * ** ***
+
+/version for Type1 fonts nameId 5 for Apple True Type and OpenType /CIDFontVersion for CID fonts The empty string for bitmap fonts
+
+
-/version for Type1 fonts nameId 5 for Apple True Type and OpenType /CIDFontVersion for CID fonts The empty string for bitmap fonts |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpguid/_index.md b/english/java/com.groupdocs.metadata.core/xmpguid/_index.md
index 8b80f0289c..fbb2228bbb 100644
--- a/english/java/com.groupdocs.metadata.core/xmpguid/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpguid/_index.md
@@ -13,30 +13,43 @@ public final class XmpGuid extends XmpValueBase
```
Represents XMP global unique identifier.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpGuid(String value)](#XmpGuid-java.lang.String-) | Initializes a new instance of the XmpGuid class. |
-| [XmpGuid(UUID value)](#XmpGuid-java.util.UUID-) | Initializes a new instance of the XmpGuid class. |
+| [XmpGuid(String value)](#XmpGuid-java.lang.String-) | Initializes a new instance of the
+XmpGuid
+ class.
+ |
+| [XmpGuid(UUID value)](#XmpGuid-java.util.UUID-) | Initializes a new instance of the
+XmpGuid
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getValue()](#getValue--) | Gets the value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpGuid(String value) {#XmpGuid-java.lang.String-}
```
public XmpGuid(String value)
```
-Initializes a new instance of the XmpGuid class.
+Initializes a new instance of the
+XmpGuid
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value. |
+| value | java.lang.String | The value.
+ |
### XmpGuid(UUID value) {#XmpGuid-java.util.UUID-}
```
@@ -44,12 +57,16 @@ public XmpGuid(UUID value)
```
-Initializes a new instance of the XmpGuid class.
+Initializes a new instance of the
+XmpGuid
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.UUID | The unique identifier. |
+| value | java.util.UUID | The unique identifier.
+ |
### getValue() {#getValue--}
```
@@ -59,8 +76,10 @@ public final UUID getValue()
Gets the value.
+
**Returns:**
java.util.UUID - The value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -69,5 +88,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpheaderpi/_index.md b/english/java/com.groupdocs.metadata.core/xmpheaderpi/_index.md
index d5f0cdc913..1258e9560c 100644
--- a/english/java/com.groupdocs.metadata.core/xmpheaderpi/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpheaderpi/_index.md
@@ -16,24 +16,33 @@ public final class XmpHeaderPI implements IXmpType
```
Represents XMP header processing instruction.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpHeaderPI()](#XmpHeaderPI--) | Initializes a new instance of the XmpHeaderPI class. |
+| [XmpHeaderPI()](#XmpHeaderPI--) | Initializes a new instance of the
+XmpHeaderPI
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getGuid()](#getGuid--) | Represents Header GUID. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation. |
+| [getGuid()](#getGuid--) | Represents Header GUID.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation.
+ |
### XmpHeaderPI() {#XmpHeaderPI--}
```
public XmpHeaderPI()
```
-Initializes a new instance of the XmpHeaderPI class.
+Initializes a new instance of the
+XmpHeaderPI
+ class.
+
### getGuid() {#getGuid--}
```
@@ -43,12 +52,19 @@ public final String getGuid()
Represents Header GUID.
+
**Returns:**
java.lang.String - The unique identifier.
---------------------
+
+
+*** ** * ** ***
The text of the header PI contains a GUID, making it unlikely to appear by accident in the data stream.
+
+
+
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public final String getXmpRepresentation()
@@ -57,5 +73,7 @@ public final String getXmpRepresentation()
Converts XMP value to the xml representation.
+
**Returns:**
java.lang.String - Returns string representation of XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpinteger/_index.md b/english/java/com.groupdocs.metadata.core/xmpinteger/_index.md
index 91f8de30cb..b86d26bfc0 100644
--- a/english/java/com.groupdocs.metadata.core/xmpinteger/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpinteger/_index.md
@@ -13,31 +13,47 @@ public final class XmpInteger extends XmpValueBase
```
Represents XMP Integer basic type.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpInteger(long value)](#XmpInteger-long-) | Initializes a new instance of the XmpInteger class. |
-| [XmpInteger(int value)](#XmpInteger-int-) | Initializes a new instance of the XmpInteger class. |
-| [XmpInteger(String value)](#XmpInteger-java.lang.String-) | Initializes a new instance of the XmpInteger class. |
+| [XmpInteger(long value)](#XmpInteger-long-) | Initializes a new instance of the
+XmpInteger
+ class.
+ |
+| [XmpInteger(int value)](#XmpInteger-int-) | Initializes a new instance of the
+XmpInteger
+ class.
+ |
+| [XmpInteger(String value)](#XmpInteger-java.lang.String-) | Initializes a new instance of the
+XmpInteger
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getValue()](#getValue--) | Gets the value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpInteger(long value) {#XmpInteger-long-}
```
public XmpInteger(long value)
```
-Initializes a new instance of the XmpInteger class.
+Initializes a new instance of the
+XmpInteger
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | long | The value. |
+| value | long | The value.
+ |
### XmpInteger(int value) {#XmpInteger-int-}
```
@@ -45,12 +61,16 @@ public XmpInteger(int value)
```
-Initializes a new instance of the XmpInteger class.
+Initializes a new instance of the
+XmpInteger
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The value. |
+| value | int | The value.
+ |
### XmpInteger(String value) {#XmpInteger-java.lang.String-}
```
@@ -58,12 +78,16 @@ public XmpInteger(String value)
```
-Initializes a new instance of the XmpInteger class.
+Initializes a new instance of the
+XmpInteger
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | String value contained integer. |
+| value | java.lang.String | String value contained integer.
+ |
### getValue() {#getValue--}
```
@@ -73,8 +97,10 @@ public final long getValue()
Gets the value.
+
**Returns:**
long - Integer value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -83,5 +109,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpiptccorepackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpiptccorepackage/_index.md
index ef3280ffe2..2131506da2 100644
--- a/english/java/com.groupdocs.metadata.core/xmpiptccorepackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpiptccorepackage/_index.md
@@ -13,32 +13,49 @@ public final class XmpIptcCorePackage extends XmpPackage
```
Represents the IPTC Core XMP package.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpIptcCorePackage()](#XmpIptcCorePackage--) | Initializes a new instance of the XmpIptcCorePackage class. |
+| [XmpIptcCorePackage()](#XmpIptcCorePackage--) | Initializes a new instance of the
+XmpIptcCorePackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCountryCode()](#getCountryCode--) | Gets the code of the country the content is focusing on. |
-| [setCountryCode(String value)](#setCountryCode-java.lang.String-) | Sets the code of the country the content is focusing on. |
-| [getIntellectualGenre()](#getIntellectualGenre--) | Gets the intellectual genre. |
-| [setIntellectualGenre(String value)](#setIntellectualGenre-java.lang.String-) | Sets the intellectual genre. |
-| [getLocation()](#getLocation--) | Gets the location the content is focusing on. |
-| [setLocation(String value)](#setLocation-java.lang.String-) | Sets the location the content is focusing on. |
-| [getScenes()](#getScenes--) | Gets the scene of the photo content. |
-| [setScenes(String[] value)](#setScenes-java.lang.String---) | Sets the scene of the photo content. |
-| [getSubjectCodes()](#getSubjectCodes--) | Gets one or more Subjects from the IPTC "Subject-NewsCodes" taxonomy to categorize the content.Each Subject is represented as a string of 8 digits in an unordered list. |
-| [setSubjectCodes(String[] value)](#setSubjectCodes-java.lang.String---) | Sets one or more Subjects from the IPTC "Subject-NewsCodes" taxonomy to categorize the content.Each Subject is represented as a string of 8 digits in an unordered list. |
+| [getCountryCode()](#getCountryCode--) | Gets the code of the country the content is focusing on.
+ |
+| [setCountryCode(String value)](#setCountryCode-java.lang.String-) | Sets the code of the country the content is focusing on.
+ |
+| [getIntellectualGenre()](#getIntellectualGenre--) | Gets the intellectual genre.
+ |
+| [setIntellectualGenre(String value)](#setIntellectualGenre-java.lang.String-) | Sets the intellectual genre.
+ |
+| [getLocation()](#getLocation--) | Gets the location the content is focusing on.
+ |
+| [setLocation(String value)](#setLocation-java.lang.String-) | Sets the location the content is focusing on.
+ |
+| [getScenes()](#getScenes--) | Gets the scene of the photo content.
+ |
+| [setScenes(String[] value)](#setScenes-java.lang.String---) | Sets the scene of the photo content.
+ |
+| [getSubjectCodes()](#getSubjectCodes--) | Gets one or more Subjects from the IPTC "Subject-NewsCodes" taxonomy to categorize the content.Each Subject is represented as a string of 8 digits in an unordered list.
+ |
+| [setSubjectCodes(String[] value)](#setSubjectCodes-java.lang.String---) | Sets one or more Subjects from the IPTC "Subject-NewsCodes" taxonomy to categorize the content.Each Subject is represented as a string of 8 digits in an unordered list.
+ |
### XmpIptcCorePackage() {#XmpIptcCorePackage--}
```
public XmpIptcCorePackage()
```
-Initializes a new instance of the XmpIptcCorePackage class.
+Initializes a new instance of the
+XmpIptcCorePackage
+ class.
+
### getCountryCode() {#getCountryCode--}
```
@@ -48,8 +65,10 @@ public final String getCountryCode()
Gets the code of the country the content is focusing on. The code should be taken from ISO 3166 two or three letter code.
+
**Returns:**
java.lang.String - The country code.
+
### setCountryCode(String value) {#setCountryCode-java.lang.String-}
```
public final void setCountryCode(String value)
@@ -58,10 +77,12 @@ public final void setCountryCode(String value)
Sets the code of the country the content is focusing on. The code should be taken from ISO 3166 two or three letter code.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The country code. |
+| value | java.lang.String | The country code.
+ |
### getIntellectualGenre() {#getIntellectualGenre--}
```
@@ -71,8 +92,10 @@ public final String getIntellectualGenre()
Gets the intellectual genre. Describes the nature, intellectual, artistic or journalistic characteristic of a news object, not specifically its content.
+
**Returns:**
java.lang.String - The intellectual genre.
+
### setIntellectualGenre(String value) {#setIntellectualGenre-java.lang.String-}
```
public final void setIntellectualGenre(String value)
@@ -81,10 +104,12 @@ public final void setIntellectualGenre(String value)
Sets the intellectual genre. Describes the nature, intellectual, artistic or journalistic characteristic of a news object, not specifically its content.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The intellectual genre. |
+| value | java.lang.String | The intellectual genre.
+ |
### getLocation() {#getLocation--}
```
@@ -94,12 +119,19 @@ public final String getLocation()
Gets the location the content is focusing on.
+
**Returns:**
java.lang.String - The location.
---------------------
+
+
+*** ** * ** ***
This location name could either be the name of a sublocation to a city or the name of a well known location or (natural) monument outside a city. In the sense of a sublocation to a city this element is at the fourth level of a top-down geographical hierarchy.
+
+
+
+
### setLocation(String value) {#setLocation-java.lang.String-}
```
public final void setLocation(String value)
@@ -108,14 +140,21 @@ public final void setLocation(String value)
Sets the location the content is focusing on.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The location.
---------------------
+
-This location name could either be the name of a sublocation to a city or the name of a well known location or (natural) monument outside a city. In the sense of a sublocation to a city this element is at the fourth level of a top-down geographical hierarchy. |
+*** ** * ** ***
+
+This location name could either be the name of a sublocation to a city or the name of a well known location or (natural) monument outside a city. In the sense of a sublocation to a city this element is at the fourth level of a top-down geographical hierarchy.
+
+
+
+ |
### getScenes() {#getScenes--}
```
@@ -125,12 +164,19 @@ public final String[] getScenes()
Gets the scene of the photo content.
+
**Returns:**
java.lang.String[] - The scene codes.
---------------------
+
+
+*** ** * ** ***
Specifies one or more terms from the IPTC "Scene-NewsCodes". Each Scene is represented as a string of 6 digits in an unordered list
+
+
+
+
### setScenes(String[] value) {#setScenes-java.lang.String---}
```
public final void setScenes(String[] value)
@@ -139,14 +185,21 @@ public final void setScenes(String[] value)
Sets the scene of the photo content.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | The scene codes.
---------------------
+
-Specifies one or more terms from the IPTC "Scene-NewsCodes". Each Scene is represented as a string of 6 digits in an unordered list |
+*** ** * ** ***
+
+Specifies one or more terms from the IPTC "Scene-NewsCodes". Each Scene is represented as a string of 6 digits in an unordered list
+
+
+
+ |
### getSubjectCodes() {#getSubjectCodes--}
```
@@ -156,12 +209,19 @@ public final String[] getSubjectCodes()
Gets one or more Subjects from the IPTC "Subject-NewsCodes" taxonomy to categorize the content.Each Subject is represented as a string of 8 digits in an unordered list.
+
**Returns:**
java.lang.String[] - The subject codes.
---------------------
+
+
+*** ** * ** ***
More about IPTC Subject-NewsCodes at http://www.newscodes.org.
+
+
+
+
### setSubjectCodes(String[] value) {#setSubjectCodes-java.lang.String---}
```
public final void setSubjectCodes(String[] value)
@@ -170,12 +230,19 @@ public final void setSubjectCodes(String[] value)
Sets one or more Subjects from the IPTC "Subject-NewsCodes" taxonomy to categorize the content.Each Subject is represented as a string of 8 digits in an unordered list.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | The subject codes.
---------------------
+
+
+*** ** * ** ***
+
+More about IPTC Subject-NewsCodes at http://www.newscodes.org.
+
+
-More about IPTC Subject-NewsCodes at http://www.newscodes.org. |
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpiptcextensionpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpiptcextensionpackage/_index.md
index 478cd8efe6..fc0c8b23b0 100644
--- a/english/java/com.groupdocs.metadata.core/xmpiptcextensionpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpiptcextensionpackage/_index.md
@@ -13,46 +13,79 @@ public final class XmpIptcExtensionPackage extends XmpPackage
```
Represents the IPTC Extension XMP package.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpIptcExtensionPackage()](#XmpIptcExtensionPackage--) | Initializes a new instance of the XmpIptcExtensionPackage class. |
+| [XmpIptcExtensionPackage()](#XmpIptcExtensionPackage--) | Initializes a new instance of the
+XmpIptcExtensionPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAdditionalModelInformation()](#getAdditionalModelInformation--) | Gets the information about the ethnicity and other facets of the model(s) in a model-released image. |
-| [setAdditionalModelInformation(String value)](#setAdditionalModelInformation-java.lang.String-) | Sets the information about the ethnicity and other facets of the model(s) in a model-released image. |
-| [getOrganisationInImageCodes()](#getOrganisationInImageCodes--) | Gets codes from a controlled vocabulary for identifying the organisations or companies which are featured in the image. |
-| [setOrganisationInImageCodes(String[] value)](#setOrganisationInImageCodes-java.lang.String---) | Sets codes from a controlled vocabulary for identifying the organisations or companies which are featured in the image. |
-| [getOrganisationInImageNames()](#getOrganisationInImageNames--) | Gets names of the organisations or companies which are featured in the image. |
-| [setOrganisationInImageNames(String[] value)](#setOrganisationInImageNames-java.lang.String---) | Sets names of the organisations or companies which are featured in the image. |
-| [getAgesOfModels()](#getAgesOfModels--) | Gets ages of the human models at the time this image was taken in a model released image. |
-| [setAgesOfModels(int[] value)](#setAgesOfModels-int---) | Sets ages of the human models at the time this image was taken in a model released image. |
-| [getPersonsInImage()](#getPersonsInImage--) | Gets names of the persons the content of the item is about. |
-| [setPersonsInImage(String[] value)](#setPersonsInImage-java.lang.String---) | Sets names of the persons the content of the item is about. |
-| [getDigitalImageGuid()](#getDigitalImageGuid--) | Gets the globally unique identifier for this digital image. |
-| [setDigitalImageGuid(String value)](#setDigitalImageGuid-java.lang.String-) | Sets the globally unique identifier for this digital image. |
-| [getDigitalSourceType()](#getDigitalSourceType--) | Gets the type of the source of this digital image. |
-| [setDigitalSourceType(String value)](#setDigitalSourceType-java.lang.String-) | Sets the type of the source of this digital image. |
-| [getEvent()](#getEvent--) | Gets the description of the specific event at which the photo was taken. |
-| [setEvent(XmpLangAlt value)](#setEvent-com.groupdocs.metadata.core.XmpLangAlt-) | Sets the description of the specific event at which the photo was taken. |
-| [getIptcLastEdited()](#getIptcLastEdited--) | Gets the date and optionally time when any of the IPTC photo metadata fields has been last edited. |
-| [setIptcLastEdited(Date value)](#setIptcLastEdited-java.util.Date-) | Sets the date and optionally time when any of the IPTC photo metadata fields has been last edited. |
-| [getMaxAvailableHeight()](#getMaxAvailableHeight--) | Gets the maximum available height in pixels of the original photo from which this photo has been derived by downsizing. |
-| [setMaxAvailableHeight(Integer value)](#setMaxAvailableHeight-java.lang.Integer-) | Sets the maximum available height in pixels of the original photo from which this photo has been derived by downsizing. |
-| [getMaxAvailableWidth()](#getMaxAvailableWidth--) | Gets the the maximum available width in pixels of the original photo from which this photo has been derived by downsizing. |
-| [setMaxAvailableWidth(Integer value)](#setMaxAvailableWidth-java.lang.Integer-) | Sets the the maximum available width in pixels of the original photo from which this photo has been derived by downsizing. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
-| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from XmpArray . |
+| [getAdditionalModelInformation()](#getAdditionalModelInformation--) | Gets the information about the ethnicity and other facets of the model(s) in a model-released image.
+ |
+| [setAdditionalModelInformation(String value)](#setAdditionalModelInformation-java.lang.String-) | Sets the information about the ethnicity and other facets of the model(s) in a model-released image.
+ |
+| [getOrganisationInImageCodes()](#getOrganisationInImageCodes--) | Gets codes from a controlled vocabulary for identifying the organisations or companies which are featured in the image.
+ |
+| [setOrganisationInImageCodes(String[] value)](#setOrganisationInImageCodes-java.lang.String---) | Sets codes from a controlled vocabulary for identifying the organisations or companies which are featured in the image.
+ |
+| [getOrganisationInImageNames()](#getOrganisationInImageNames--) | Gets names of the organisations or companies which are featured in the image.
+ |
+| [setOrganisationInImageNames(String[] value)](#setOrganisationInImageNames-java.lang.String---) | Sets names of the organisations or companies which are featured in the image.
+ |
+| [getAgesOfModels()](#getAgesOfModels--) | Gets ages of the human models at the time this image was taken in a model released image.
+ |
+| [setAgesOfModels(int[] value)](#setAgesOfModels-int---) | Sets ages of the human models at the time this image was taken in a model released image.
+ |
+| [getPersonsInImage()](#getPersonsInImage--) | Gets names of the persons the content of the item is about.
+ |
+| [setPersonsInImage(String[] value)](#setPersonsInImage-java.lang.String---) | Sets names of the persons the content of the item is about.
+ |
+| [getDigitalImageGuid()](#getDigitalImageGuid--) | Gets the globally unique identifier for this digital image.
+ |
+| [setDigitalImageGuid(String value)](#setDigitalImageGuid-java.lang.String-) | Sets the globally unique identifier for this digital image.
+ |
+| [getDigitalSourceType()](#getDigitalSourceType--) | Gets the type of the source of this digital image.
+ |
+| [setDigitalSourceType(String value)](#setDigitalSourceType-java.lang.String-) | Sets the type of the source of this digital image.
+ |
+| [getEvent()](#getEvent--) | Gets the description of the specific event at which the photo was taken.
+ |
+| [setEvent(XmpLangAlt value)](#setEvent-com.groupdocs.metadata.core.XmpLangAlt-) | Sets the description of the specific event at which the photo was taken.
+ |
+| [getIptcLastEdited()](#getIptcLastEdited--) | Gets the date and optionally time when any of the IPTC photo metadata fields has been last edited.
+ |
+| [setIptcLastEdited(Date value)](#setIptcLastEdited-java.util.Date-) | Sets the date and optionally time when any of the IPTC photo metadata fields has been last edited.
+ |
+| [getMaxAvailableHeight()](#getMaxAvailableHeight--) | Gets the maximum available height in pixels of the original photo from which this photo has been derived by downsizing.
+ |
+| [setMaxAvailableHeight(Integer value)](#setMaxAvailableHeight-java.lang.Integer-) | Sets the maximum available height in pixels of the original photo from which this photo has been derived by downsizing.
+ |
+| [getMaxAvailableWidth()](#getMaxAvailableWidth--) | Gets the the maximum available width in pixels of the original photo from which this photo has been derived by downsizing.
+ |
+| [setMaxAvailableWidth(Integer value)](#setMaxAvailableWidth-java.lang.Integer-) | Sets the the maximum available width in pixels of the original photo from which this photo has been derived by downsizing.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
+| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from
+XmpArray
+ .
+ |
### XmpIptcExtensionPackage() {#XmpIptcExtensionPackage--}
```
public XmpIptcExtensionPackage()
```
-Initializes a new instance of the XmpIptcExtensionPackage class.
+Initializes a new instance of the
+XmpIptcExtensionPackage
+ class.
+
### getAdditionalModelInformation() {#getAdditionalModelInformation--}
```
@@ -62,8 +95,10 @@ public final String getAdditionalModelInformation()
Gets the information about the ethnicity and other facets of the model(s) in a model-released image.
+
**Returns:**
java.lang.String - The additional model information.
+
### setAdditionalModelInformation(String value) {#setAdditionalModelInformation-java.lang.String-}
```
public final void setAdditionalModelInformation(String value)
@@ -72,10 +107,12 @@ public final void setAdditionalModelInformation(String value)
Sets the information about the ethnicity and other facets of the model(s) in a model-released image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The additional model information. |
+| value | java.lang.String | The additional model information.
+ |
### getOrganisationInImageCodes() {#getOrganisationInImageCodes--}
```
@@ -85,8 +122,10 @@ public final String[] getOrganisationInImageCodes()
Gets codes from a controlled vocabulary for identifying the organisations or companies which are featured in the image.
+
**Returns:**
java.lang.String[] - The codes of the organisations.
+
### setOrganisationInImageCodes(String[] value) {#setOrganisationInImageCodes-java.lang.String---}
```
public final void setOrganisationInImageCodes(String[] value)
@@ -95,10 +134,12 @@ public final void setOrganisationInImageCodes(String[] value)
Sets codes from a controlled vocabulary for identifying the organisations or companies which are featured in the image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The codes of the organisations. |
+| value | java.lang.String[] | The codes of the organisations.
+ |
### getOrganisationInImageNames() {#getOrganisationInImageNames--}
```
@@ -108,8 +149,10 @@ public final String[] getOrganisationInImageNames()
Gets names of the organisations or companies which are featured in the image.
+
**Returns:**
java.lang.String[] - Names of the organisations.
+
### setOrganisationInImageNames(String[] value) {#setOrganisationInImageNames-java.lang.String---}
```
public final void setOrganisationInImageNames(String[] value)
@@ -118,10 +161,12 @@ public final void setOrganisationInImageNames(String[] value)
Sets names of the organisations or companies which are featured in the image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | Names of the organisations. |
+| value | java.lang.String[] | Names of the organisations.
+ |
### getAgesOfModels() {#getAgesOfModels--}
```
@@ -131,8 +176,10 @@ public final int[] getAgesOfModels()
Gets ages of the human models at the time this image was taken in a model released image.
+
**Returns:**
int[] - Ages of the models.
+
### setAgesOfModels(int[] value) {#setAgesOfModels-int---}
```
public final void setAgesOfModels(int[] value)
@@ -141,10 +188,12 @@ public final void setAgesOfModels(int[] value)
Sets ages of the human models at the time this image was taken in a model released image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | Ages of the models. |
+| value | int[] | Ages of the models.
+ |
### getPersonsInImage() {#getPersonsInImage--}
```
@@ -154,8 +203,10 @@ public final String[] getPersonsInImage()
Gets names of the persons the content of the item is about.
+
**Returns:**
java.lang.String[] - Names of the persons that are shown in the image.
+
### setPersonsInImage(String[] value) {#setPersonsInImage-java.lang.String---}
```
public final void setPersonsInImage(String[] value)
@@ -164,10 +215,12 @@ public final void setPersonsInImage(String[] value)
Sets names of the persons the content of the item is about.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | Names of the persons that are shown in the image. |
+| value | java.lang.String[] | Names of the persons that are shown in the image.
+ |
### getDigitalImageGuid() {#getDigitalImageGuid--}
```
@@ -177,12 +230,19 @@ public final String getDigitalImageGuid()
Gets the globally unique identifier for this digital image.
+
**Returns:**
java.lang.String - The image GUID.
---------------------
+
+
+*** ** * ** ***
It is created and applied by the creator of the digital image at the time of its creation. This value shall not be changed after that time.
+
+
+
+
### setDigitalImageGuid(String value) {#setDigitalImageGuid-java.lang.String-}
```
public final void setDigitalImageGuid(String value)
@@ -191,14 +251,21 @@ public final void setDigitalImageGuid(String value)
Sets the globally unique identifier for this digital image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The image GUID.
---------------------
+
+
+*** ** * ** ***
+
+It is created and applied by the creator of the digital image at the time of its creation. This value shall not be changed after that time.
+
+
-It is created and applied by the creator of the digital image at the time of its creation. This value shall not be changed after that time. |
+ |
### getDigitalSourceType() {#getDigitalSourceType--}
```
@@ -208,8 +275,10 @@ public final String getDigitalSourceType()
Gets the type of the source of this digital image.
+
**Returns:**
java.lang.String - The type of the source digital file.
+
### setDigitalSourceType(String value) {#setDigitalSourceType-java.lang.String-}
```
public final void setDigitalSourceType(String value)
@@ -218,10 +287,12 @@ public final void setDigitalSourceType(String value)
Sets the type of the source of this digital image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The type of the source digital file. |
+| value | java.lang.String | The type of the source digital file.
+ |
### getEvent() {#getEvent--}
```
@@ -231,8 +302,10 @@ public final XmpLangAlt getEvent()
Gets the description of the specific event at which the photo was taken.
+
**Returns:**
[XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) - The specific event at which the photo was taken.
+
### setEvent(XmpLangAlt value) {#setEvent-com.groupdocs.metadata.core.XmpLangAlt-}
```
public final void setEvent(XmpLangAlt value)
@@ -241,10 +314,12 @@ public final void setEvent(XmpLangAlt value)
Sets the description of the specific event at which the photo was taken.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | The specific event at which the photo was taken. |
+| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | The specific event at which the photo was taken.
+ |
### getIptcLastEdited() {#getIptcLastEdited--}
```
@@ -254,8 +329,10 @@ public final Date getIptcLastEdited()
Gets the date and optionally time when any of the IPTC photo metadata fields has been last edited.
+
**Returns:**
java.util.Date - The last edited date.
+
### setIptcLastEdited(Date value) {#setIptcLastEdited-java.util.Date-}
```
public final void setIptcLastEdited(Date value)
@@ -264,10 +341,12 @@ public final void setIptcLastEdited(Date value)
Sets the date and optionally time when any of the IPTC photo metadata fields has been last edited.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The last edited date. |
+| value | java.util.Date | The last edited date.
+ |
### getMaxAvailableHeight() {#getMaxAvailableHeight--}
```
@@ -277,8 +356,10 @@ public final Integer getMaxAvailableHeight()
Gets the maximum available height in pixels of the original photo from which this photo has been derived by downsizing.
+
**Returns:**
java.lang.Integer - The maximum available height.
+
### setMaxAvailableHeight(Integer value) {#setMaxAvailableHeight-java.lang.Integer-}
```
public final void setMaxAvailableHeight(Integer value)
@@ -287,10 +368,12 @@ public final void setMaxAvailableHeight(Integer value)
Sets the maximum available height in pixels of the original photo from which this photo has been derived by downsizing.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The maximum available height. |
+| value | java.lang.Integer | The maximum available height.
+ |
### getMaxAvailableWidth() {#getMaxAvailableWidth--}
```
@@ -300,8 +383,10 @@ public final Integer getMaxAvailableWidth()
Gets the the maximum available width in pixels of the original photo from which this photo has been derived by downsizing.
+
**Returns:**
java.lang.Integer - The maximum available width.
+
### setMaxAvailableWidth(Integer value) {#setMaxAvailableWidth-java.lang.Integer-}
```
public final void setMaxAvailableWidth(Integer value)
@@ -310,10 +395,12 @@ public final void setMaxAvailableWidth(Integer value)
Sets the the maximum available width in pixels of the original photo from which this photo has been derived by downsizing.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The maximum available width. |
+| value | java.lang.Integer | The maximum available width.
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -323,11 +410,14 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
### set(String name, XmpArray value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-}
```
@@ -335,11 +425,16 @@ public void set(String name, XmpArray value)
```
-Sets the value inherited from XmpArray .
+Sets the value inherited from
+XmpArray
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpiptciimpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpiptciimpackage/_index.md
index 1f6fa56d34..edf6ee856a 100644
--- a/english/java/com.groupdocs.metadata.core/xmpiptciimpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpiptciimpackage/_index.md
@@ -13,83 +13,151 @@ public final class XmpIptcIimPackage extends XmpPackage
```
Represents the IPTC-IIM XMP package.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpIptcIimPackage()](#XmpIptcIimPackage--) | Initializes a new instance of the XmpIptcIimPackage class. |
+| [XmpIptcIimPackage()](#XmpIptcIimPackage--) | Initializes a new instance of the
+XmpIptcIimPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getModelVersion()](#getModelVersion--) | Gets the binary number identifying the version of the Information |
-| [setModelVersion(Integer value)](#setModelVersion-java.lang.Integer-) | Sets the binary number identifying the version of the Information |
-| [getDestination()](#getDestination--) | Gets the destination. |
-| [setDestination(String[] value)](#setDestination-java.lang.String---) | Sets the destination. |
-| [getFileFormat()](#getFileFormat--) | Gets the binary number identifying the version of the Information |
-| [setFileFormat(Integer value)](#setFileFormat-java.lang.Integer-) | Sets the binary number identifying the version of the Information |
-| [getFileFormatVersion()](#getFileFormatVersion--) | Gets the file format version. |
-| [setFileFormatVersion(Integer value)](#setFileFormatVersion-java.lang.Integer-) | Sets the file format version. |
-| [getServiceIdentifier()](#getServiceIdentifier--) | Gets the service identifier. |
-| [setServiceIdentifier(String value)](#setServiceIdentifier-java.lang.String-) | Sets the service identifier. |
-| [getEnvelopeNumber()](#getEnvelopeNumber--) | Gets the envelope number. |
-| [setEnvelopeNumber(String value)](#setEnvelopeNumber-java.lang.String-) | Sets the envelope number. |
-| [getProductIDs()](#getProductIDs--) | Gets the product identifiers. |
-| [setProductIDs(String[] value)](#setProductIDs-java.lang.String---) | Sets the product identifiers. |
-| [getEnvelopePriority()](#getEnvelopePriority--) | Gets the envelope handling priority. |
-| [setEnvelopePriority(Integer value)](#setEnvelopePriority-java.lang.Integer-) | Sets the envelope handling priority. |
-| [getDateSent()](#getDateSent--) | Gets the date the service sent the material. |
-| [setDateSent(Date value)](#setDateSent-java.util.Date-) | Sets the date the service sent the material. |
-| [getUniqueNameOfObject()](#getUniqueNameOfObject--) | Gets the unique name of the object. |
-| [setUniqueNameOfObject(String value)](#setUniqueNameOfObject-java.lang.String-) | Sets the unique name of the object. |
-| [getObjectTypeReference()](#getObjectTypeReference--) | Gets the object type reference. |
-| [setObjectTypeReference(String value)](#setObjectTypeReference-java.lang.String-) | Sets the object type reference. |
-| [getEditStatus()](#getEditStatus--) | Gets the status of the object data, according to the practice of the provider. |
-| [setEditStatus(String value)](#setEditStatus-java.lang.String-) | Sets the status of the object data, according to the practice of the provider. |
-| [getUrgency()](#getUrgency--) | Gets the editorial urgency of the content. |
-| [setUrgency(Integer value)](#setUrgency-java.lang.Integer-) | Sets the editorial urgency of the content. |
-| [getCategory()](#getCategory--) | Gets the subject of the object data in the opinion of the provider. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the subject of the object data in the opinion of the provider. |
-| [getSupplementalCategories()](#getSupplementalCategories--) | Gets the supplemental categories. |
-| [setSupplementalCategories(String[] value)](#setSupplementalCategories-java.lang.String---) | Sets the supplemental categories. |
-| [getFixtureIdentifier()](#getFixtureIdentifier--) | Gets the object data that recurs often and predictably. |
-| [setFixtureIdentifier(String value)](#setFixtureIdentifier-java.lang.String-) | Sets the object data that recurs often and predictably. |
-| [getContentLocationCodes()](#getContentLocationCodes--) | Gets the content location codes. |
-| [setContentLocationCodes(String[] value)](#setContentLocationCodes-java.lang.String---) | Sets the content location codes. |
-| [getContentLocationNames()](#getContentLocationNames--) | Gets the content location names. |
-| [setContentLocationNames(String[] value)](#setContentLocationNames-java.lang.String---) | Sets the content location names. |
-| [getReleaseDate()](#getReleaseDate--) | Gets the earliest date the provider intends the object to be used. |
-| [setReleaseDate(Date value)](#setReleaseDate-java.util.Date-) | Sets the earliest date the provider intends the object to be used. |
-| [getExpirationDate()](#getExpirationDate--) | Gets the latest date the provider or owner intends the object data to be used. |
-| [setExpirationDate(Date value)](#setExpirationDate-java.util.Date-) | Sets the latest date the provider or owner intends the object data to be used. |
-| [getActionAdvised()](#getActionAdvised--) | Gets the type of action that this object provides to a previous object. |
-| [setActionAdvised(String value)](#setActionAdvised-java.lang.String-) | Sets the type of action that this object provides to a previous object. |
-| [getReferenceService()](#getReferenceService--) | Gets the Service Identifier of a prior envelope to which the current object refers. |
-| [setReferenceService(String value)](#setReferenceService-java.lang.String-) | Sets the Service Identifier of a prior envelope to which the current object refers. |
-| [getReferenceDate()](#getReferenceDate--) | Gets the date of a prior envelope to which the current object refers. |
-| [setReferenceDate(Date value)](#setReferenceDate-java.util.Date-) | Sets the date of a prior envelope to which the current object refers. |
-| [getReferenceNumber()](#getReferenceNumber--) | Gets the Envelope Number of a prior envelope to which the current object refers. |
-| [setReferenceNumber(String value)](#setReferenceNumber-java.lang.String-) | Sets the Envelope Number of a prior envelope to which the current object refers. |
-| [getDigitalCreationDate()](#getDigitalCreationDate--) | Gets the date the digital representation of the object data was created. |
-| [setDigitalCreationDate(Date value)](#setDigitalCreationDate-java.util.Date-) | Sets the date the digital representation of the object data was created. |
-| [getOriginatingProgram()](#getOriginatingProgram--) | Gets the type of program used to originate the object data. |
-| [setOriginatingProgram(String value)](#setOriginatingProgram-java.lang.String-) | Sets the type of program used to originate the object data. |
-| [getProgramVersion()](#getProgramVersion--) | Gets the program version. |
-| [setProgramVersion(String value)](#setProgramVersion-java.lang.String-) | Sets the program version. |
-| [getImageType()](#getImageType--) | Gets the type of the image. |
-| [setImageType(String value)](#setImageType-java.lang.String-) | Sets the type of the image. |
-| [getImageOrientation()](#getImageOrientation--) | Gets the image orientation. |
-| [setImageOrientation(String value)](#setImageOrientation-java.lang.String-) | Sets the image orientation. |
-| [getLanguageIdentifier()](#getLanguageIdentifier--) | Gets the language identifier according to the 2-letter codes of ISO 639:1988. |
-| [setLanguageIdentifier(String value)](#setLanguageIdentifier-java.lang.String-) | Sets the language identifier according to the 2-letter codes of ISO 639:1988. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
+| [getModelVersion()](#getModelVersion--) | Gets the binary number identifying the version of the Information
+ |
+| [setModelVersion(Integer value)](#setModelVersion-java.lang.Integer-) | Sets the binary number identifying the version of the Information
+ |
+| [getDestination()](#getDestination--) | Gets the destination.
+ |
+| [setDestination(String[] value)](#setDestination-java.lang.String---) | Sets the destination.
+ |
+| [getFileFormat()](#getFileFormat--) | Gets the binary number identifying the version of the Information
+ |
+| [setFileFormat(Integer value)](#setFileFormat-java.lang.Integer-) | Sets the binary number identifying the version of the Information
+ |
+| [getFileFormatVersion()](#getFileFormatVersion--) | Gets the file format version.
+ |
+| [setFileFormatVersion(Integer value)](#setFileFormatVersion-java.lang.Integer-) | Sets the file format version.
+ |
+| [getServiceIdentifier()](#getServiceIdentifier--) | Gets the service identifier.
+ |
+| [setServiceIdentifier(String value)](#setServiceIdentifier-java.lang.String-) | Sets the service identifier.
+ |
+| [getEnvelopeNumber()](#getEnvelopeNumber--) | Gets the envelope number.
+ |
+| [setEnvelopeNumber(String value)](#setEnvelopeNumber-java.lang.String-) | Sets the envelope number.
+ |
+| [getProductIDs()](#getProductIDs--) | Gets the product identifiers.
+ |
+| [setProductIDs(String[] value)](#setProductIDs-java.lang.String---) | Sets the product identifiers.
+ |
+| [getEnvelopePriority()](#getEnvelopePriority--) | Gets the envelope handling priority.
+ |
+| [setEnvelopePriority(Integer value)](#setEnvelopePriority-java.lang.Integer-) | Sets the envelope handling priority.
+ |
+| [getDateSent()](#getDateSent--) | Gets the date the service sent the material.
+ |
+| [setDateSent(Date value)](#setDateSent-java.util.Date-) | Sets the date the service sent the material.
+ |
+| [getUniqueNameOfObject()](#getUniqueNameOfObject--) | Gets the unique name of the object.
+ |
+| [setUniqueNameOfObject(String value)](#setUniqueNameOfObject-java.lang.String-) | Sets the unique name of the object.
+ |
+| [getObjectTypeReference()](#getObjectTypeReference--) | Gets the object type reference.
+ |
+| [setObjectTypeReference(String value)](#setObjectTypeReference-java.lang.String-) | Sets the object type reference.
+ |
+| [getEditStatus()](#getEditStatus--) | Gets the status of the object data, according to the practice of the provider.
+ |
+| [setEditStatus(String value)](#setEditStatus-java.lang.String-) | Sets the status of the object data, according to the practice of the provider.
+ |
+| [getUrgency()](#getUrgency--) | Gets the editorial urgency of the content.
+ |
+| [setUrgency(Integer value)](#setUrgency-java.lang.Integer-) | Sets the editorial urgency of the content.
+ |
+| [getCategory()](#getCategory--) | Gets the subject of the object data in the opinion of the provider.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the subject of the object data in the opinion of the provider.
+ |
+| [getSupplementalCategories()](#getSupplementalCategories--) | Gets the supplemental categories.
+ |
+| [setSupplementalCategories(String[] value)](#setSupplementalCategories-java.lang.String---) | Sets the supplemental categories.
+ |
+| [getFixtureIdentifier()](#getFixtureIdentifier--) | Gets the object data that recurs often and predictably.
+ |
+| [setFixtureIdentifier(String value)](#setFixtureIdentifier-java.lang.String-) | Sets the object data that recurs often and predictably.
+ |
+| [getContentLocationCodes()](#getContentLocationCodes--) | Gets the content location codes.
+ |
+| [setContentLocationCodes(String[] value)](#setContentLocationCodes-java.lang.String---) | Sets the content location codes.
+ |
+| [getContentLocationNames()](#getContentLocationNames--) | Gets the content location names.
+ |
+| [setContentLocationNames(String[] value)](#setContentLocationNames-java.lang.String---) | Sets the content location names.
+ |
+| [getReleaseDate()](#getReleaseDate--) | Gets the earliest date the provider intends the object to be used.
+ |
+| [setReleaseDate(Date value)](#setReleaseDate-java.util.Date-) | Sets the earliest date the provider intends the object to be used.
+ |
+| [getExpirationDate()](#getExpirationDate--) | Gets the latest date the provider or owner intends the object data to be used.
+ |
+| [setExpirationDate(Date value)](#setExpirationDate-java.util.Date-) | Sets the latest date the provider or owner intends the object data to be used.
+ |
+| [getActionAdvised()](#getActionAdvised--) | Gets the type of action that this object provides to a previous object.
+ |
+| [setActionAdvised(String value)](#setActionAdvised-java.lang.String-) | Sets the type of action that this object provides to a previous object.
+ |
+| [getReferenceService()](#getReferenceService--) | Gets the Service Identifier of a prior envelope to which the current object refers.
+ |
+| [setReferenceService(String value)](#setReferenceService-java.lang.String-) | Sets the Service Identifier of a prior envelope to which the current object refers.
+ |
+| [getReferenceDate()](#getReferenceDate--) | Gets the date of a prior envelope to which the current object refers.
+ |
+| [setReferenceDate(Date value)](#setReferenceDate-java.util.Date-) | Sets the date of a prior envelope to which the current object refers.
+ |
+| [getReferenceNumber()](#getReferenceNumber--) | Gets the Envelope Number of a prior envelope to which the current object refers.
+ |
+| [setReferenceNumber(String value)](#setReferenceNumber-java.lang.String-) | Sets the Envelope Number of a prior envelope to which the current object refers.
+ |
+| [getDigitalCreationDate()](#getDigitalCreationDate--) | Gets the date the digital representation of the object data was created.
+ |
+| [setDigitalCreationDate(Date value)](#setDigitalCreationDate-java.util.Date-) | Sets the date the digital representation of the object data was created.
+ |
+| [getOriginatingProgram()](#getOriginatingProgram--) | Gets the type of program used to originate the object data.
+ |
+| [setOriginatingProgram(String value)](#setOriginatingProgram-java.lang.String-) | Sets the type of program used to originate the object data.
+ |
+| [getProgramVersion()](#getProgramVersion--) | Gets the program version.
+ |
+| [setProgramVersion(String value)](#setProgramVersion-java.lang.String-) | Sets the program version.
+ |
+| [getImageType()](#getImageType--) | Gets the type of the image.
+ |
+| [setImageType(String value)](#setImageType-java.lang.String-) | Sets the type of the image.
+ |
+| [getImageOrientation()](#getImageOrientation--) | Gets the image orientation.
+ |
+| [setImageOrientation(String value)](#setImageOrientation-java.lang.String-) | Sets the image orientation.
+ |
+| [getLanguageIdentifier()](#getLanguageIdentifier--) | Gets the language identifier according to the 2-letter codes of ISO 639:1988.
+ |
+| [setLanguageIdentifier(String value)](#setLanguageIdentifier-java.lang.String-) | Sets the language identifier according to the 2-letter codes of ISO 639:1988.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
### XmpIptcIimPackage() {#XmpIptcIimPackage--}
```
public XmpIptcIimPackage()
```
-Initializes a new instance of the XmpIptcIimPackage class.
+Initializes a new instance of the
+XmpIptcIimPackage
+ class.
+
### getModelVersion() {#getModelVersion--}
```
@@ -99,8 +167,10 @@ public final Integer getModelVersion()
Gets the binary number identifying the version of the Information
+
**Returns:**
java.lang.Integer - The model version.
+
### setModelVersion(Integer value) {#setModelVersion-java.lang.Integer-}
```
public final void setModelVersion(Integer value)
@@ -109,10 +179,12 @@ public final void setModelVersion(Integer value)
Sets the binary number identifying the version of the Information
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The model version. |
+| value | java.lang.Integer | The model version.
+ |
### getDestination() {#getDestination--}
```
@@ -120,22 +192,28 @@ public final String[] getDestination()
```
-Gets the destination. This DataSet is to accommodate some providers who require routing information above the appropriate OSI layers.
+Gets the destination. This DataSet is to accommodate some providers who require routing
+information above the appropriate OSI layers.
+
**Returns:**
java.lang.String[] - The destination.
+
### setDestination(String[] value) {#setDestination-java.lang.String---}
```
public final void setDestination(String[] value)
```
-Sets the destination. This DataSet is to accommodate some providers who require routing information above the appropriate OSI layers.
+Sets the destination. This DataSet is to accommodate some providers who require routing
+information above the appropriate OSI layers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The destination. |
+| value | java.lang.String[] | The destination.
+ |
### getFileFormat() {#getFileFormat--}
```
@@ -145,8 +223,10 @@ public final Integer getFileFormat()
Gets the binary number identifying the version of the Information
+
**Returns:**
java.lang.Integer - The file format.
+
### setFileFormat(Integer value) {#setFileFormat-java.lang.Integer-}
```
public final void setFileFormat(Integer value)
@@ -155,10 +235,12 @@ public final void setFileFormat(Integer value)
Sets the binary number identifying the version of the Information
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The file format. |
+| value | java.lang.Integer | The file format.
+ |
### getFileFormatVersion() {#getFileFormatVersion--}
```
@@ -168,8 +250,10 @@ public final Integer getFileFormatVersion()
Gets the file format version.
+
**Returns:**
java.lang.Integer - The file format version.
+
### setFileFormatVersion(Integer value) {#setFileFormatVersion-java.lang.Integer-}
```
public final void setFileFormatVersion(Integer value)
@@ -178,10 +262,12 @@ public final void setFileFormatVersion(Integer value)
Sets the file format version.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The file format version. |
+| value | java.lang.Integer | The file format version.
+ |
### getServiceIdentifier() {#getServiceIdentifier--}
```
@@ -191,8 +277,10 @@ public final String getServiceIdentifier()
Gets the service identifier. Identifies the provider and product.
+
**Returns:**
java.lang.String - The service identifier.
+
### setServiceIdentifier(String value) {#setServiceIdentifier-java.lang.String-}
```
public final void setServiceIdentifier(String value)
@@ -201,10 +289,12 @@ public final void setServiceIdentifier(String value)
Sets the service identifier. Identifies the provider and product.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The service identifier. |
+| value | java.lang.String | The service identifier.
+ |
### getEnvelopeNumber() {#getEnvelopeNumber--}
```
@@ -214,8 +304,10 @@ public final String getEnvelopeNumber()
Gets the envelope number.
+
**Returns:**
java.lang.String - The envelope number.
+
### setEnvelopeNumber(String value) {#setEnvelopeNumber-java.lang.String-}
```
public final void setEnvelopeNumber(String value)
@@ -224,10 +316,12 @@ public final void setEnvelopeNumber(String value)
Sets the envelope number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The envelope number. |
+| value | java.lang.String | The envelope number.
+ |
### getProductIDs() {#getProductIDs--}
```
@@ -237,12 +331,19 @@ public final String[] getProductIDs()
Gets the product identifiers.
+
**Returns:**
java.lang.String[] - The product identifier.
---------------------
+
+
+*** ** * ** ***
Used to provide receiving organization data on which to select, route, or otherwise handle data.
+
+
+
+
### setProductIDs(String[] value) {#setProductIDs-java.lang.String---}
```
public final void setProductIDs(String[] value)
@@ -251,14 +352,21 @@ public final void setProductIDs(String[] value)
Sets the product identifiers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | The product identifier.
---------------------
+
-Used to provide receiving organization data on which to select, route, or otherwise handle data. |
+*** ** * ** ***
+
+Used to provide receiving organization data on which to select, route, or otherwise handle data.
+
+
+
+ |
### getEnvelopePriority() {#getEnvelopePriority--}
```
@@ -268,8 +376,10 @@ public final Integer getEnvelopePriority()
Gets the envelope handling priority.
+
**Returns:**
java.lang.Integer - The envelope priority.
+
### setEnvelopePriority(Integer value) {#setEnvelopePriority-java.lang.Integer-}
```
public final void setEnvelopePriority(Integer value)
@@ -278,10 +388,12 @@ public final void setEnvelopePriority(Integer value)
Sets the envelope handling priority.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The envelope priority. |
+| value | java.lang.Integer | The envelope priority.
+ |
### getDateSent() {#getDateSent--}
```
@@ -291,8 +403,10 @@ public final Date getDateSent()
Gets the date the service sent the material.
+
**Returns:**
java.util.Date - The date sent.
+
### setDateSent(Date value) {#setDateSent-java.util.Date-}
```
public final void setDateSent(Date value)
@@ -301,10 +415,12 @@ public final void setDateSent(Date value)
Sets the date the service sent the material.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date sent. |
+| value | java.util.Date | The date sent.
+ |
### getUniqueNameOfObject() {#getUniqueNameOfObject--}
```
@@ -314,8 +430,10 @@ public final String getUniqueNameOfObject()
Gets the unique name of the object.
+
**Returns:**
java.lang.String - The unique name of the object.
+
### setUniqueNameOfObject(String value) {#setUniqueNameOfObject-java.lang.String-}
```
public final void setUniqueNameOfObject(String value)
@@ -324,10 +442,12 @@ public final void setUniqueNameOfObject(String value)
Sets the unique name of the object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The unique name of the object. |
+| value | java.lang.String | The unique name of the object.
+ |
### getObjectTypeReference() {#getObjectTypeReference--}
```
@@ -337,8 +457,10 @@ public final String getObjectTypeReference()
Gets the object type reference. The Object Type is used to distinguish between different types of objects within the IIM.
+
**Returns:**
java.lang.String - The object type reference.
+
### setObjectTypeReference(String value) {#setObjectTypeReference-java.lang.String-}
```
public final void setObjectTypeReference(String value)
@@ -347,10 +469,12 @@ public final void setObjectTypeReference(String value)
Sets the object type reference. The Object Type is used to distinguish between different types of objects within the IIM.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The object type reference. |
+| value | java.lang.String | The object type reference.
+ |
### getEditStatus() {#getEditStatus--}
```
@@ -360,8 +484,10 @@ public final String getEditStatus()
Gets the status of the object data, according to the practice of the provider.
+
**Returns:**
java.lang.String - The edit status.
+
### setEditStatus(String value) {#setEditStatus-java.lang.String-}
```
public final void setEditStatus(String value)
@@ -370,10 +496,12 @@ public final void setEditStatus(String value)
Sets the status of the object data, according to the practice of the provider.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The edit status. |
+| value | java.lang.String | The edit status.
+ |
### getUrgency() {#getUrgency--}
```
@@ -383,8 +511,10 @@ public final Integer getUrgency()
Gets the editorial urgency of the content.
+
**Returns:**
java.lang.Integer - The urgency.
+
### setUrgency(Integer value) {#setUrgency-java.lang.Integer-}
```
public final void setUrgency(Integer value)
@@ -393,10 +523,12 @@ public final void setUrgency(Integer value)
Sets the editorial urgency of the content.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The urgency. |
+| value | java.lang.Integer | The urgency.
+ |
### getCategory() {#getCategory--}
```
@@ -406,8 +538,10 @@ public final String getCategory()
Gets the subject of the object data in the opinion of the provider.
+
**Returns:**
java.lang.String - The category.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
@@ -416,10 +550,12 @@ public final void setCategory(String value)
Sets the subject of the object data in the opinion of the provider.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The category. |
+| value | java.lang.String | The category.
+ |
### getSupplementalCategories() {#getSupplementalCategories--}
```
@@ -429,8 +565,10 @@ public final String[] getSupplementalCategories()
Gets the supplemental categories.
+
**Returns:**
java.lang.String[] - The supplemental categories.
+
### setSupplementalCategories(String[] value) {#setSupplementalCategories-java.lang.String---}
```
public final void setSupplementalCategories(String[] value)
@@ -439,10 +577,12 @@ public final void setSupplementalCategories(String[] value)
Sets the supplemental categories.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The supplemental categories. |
+| value | java.lang.String[] | The supplemental categories.
+ |
### getFixtureIdentifier() {#getFixtureIdentifier--}
```
@@ -452,8 +592,10 @@ public final String getFixtureIdentifier()
Gets the object data that recurs often and predictably.
+
**Returns:**
java.lang.String - The fixture identifier.
+
### setFixtureIdentifier(String value) {#setFixtureIdentifier-java.lang.String-}
```
public final void setFixtureIdentifier(String value)
@@ -462,10 +604,12 @@ public final void setFixtureIdentifier(String value)
Sets the object data that recurs often and predictably.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The fixture identifier. |
+| value | java.lang.String | The fixture identifier.
+ |
### getContentLocationCodes() {#getContentLocationCodes--}
```
@@ -475,12 +619,19 @@ public final String[] getContentLocationCodes()
Gets the content location codes.
+
**Returns:**
java.lang.String[] - The content location codes.
---------------------
+
+
+*** ** * ** ***
Indicates the code of a country/geographical location referenced by the content of the object.
+
+
+
+
### setContentLocationCodes(String[] value) {#setContentLocationCodes-java.lang.String---}
```
public final void setContentLocationCodes(String[] value)
@@ -489,14 +640,21 @@ public final void setContentLocationCodes(String[] value)
Sets the content location codes.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | The content location codes.
---------------------
+
+
+*** ** * ** ***
+
+Indicates the code of a country/geographical location referenced by the content of the object.
+
+
-Indicates the code of a country/geographical location referenced by the content of the object. |
+ |
### getContentLocationNames() {#getContentLocationNames--}
```
@@ -506,12 +664,19 @@ public final String[] getContentLocationNames()
Gets the content location names.
+
**Returns:**
java.lang.String[] - The content location names.
---------------------
+
+
+*** ** * ** ***
Provides a full, publishable name of a country/geographical location referenced by the content of the object, according to guidelines of the provider.
+
+
+
+
### setContentLocationNames(String[] value) {#setContentLocationNames-java.lang.String---}
```
public final void setContentLocationNames(String[] value)
@@ -520,14 +685,21 @@ public final void setContentLocationNames(String[] value)
Sets the content location names.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String[] | The content location names.
---------------------
+
+
+*** ** * ** ***
+
+Provides a full, publishable name of a country/geographical location referenced by the content of the object, according to guidelines of the provider.
+
+
-Provides a full, publishable name of a country/geographical location referenced by the content of the object, according to guidelines of the provider. |
+ |
### getReleaseDate() {#getReleaseDate--}
```
@@ -537,8 +709,10 @@ public final Date getReleaseDate()
Gets the earliest date the provider intends the object to be used.
+
**Returns:**
java.util.Date - The release date.
+
### setReleaseDate(Date value) {#setReleaseDate-java.util.Date-}
```
public final void setReleaseDate(Date value)
@@ -547,10 +721,12 @@ public final void setReleaseDate(Date value)
Sets the earliest date the provider intends the object to be used.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The release date. |
+| value | java.util.Date | The release date.
+ |
### getExpirationDate() {#getExpirationDate--}
```
@@ -560,8 +736,10 @@ public final Date getExpirationDate()
Gets the latest date the provider or owner intends the object data to be used.
+
**Returns:**
java.util.Date - The expiration date.
+
### setExpirationDate(Date value) {#setExpirationDate-java.util.Date-}
```
public final void setExpirationDate(Date value)
@@ -570,10 +748,12 @@ public final void setExpirationDate(Date value)
Sets the latest date the provider or owner intends the object data to be used.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The expiration date. |
+| value | java.util.Date | The expiration date.
+ |
### getActionAdvised() {#getActionAdvised--}
```
@@ -583,8 +763,10 @@ public final String getActionAdvised()
Gets the type of action that this object provides to a previous object.
+
**Returns:**
java.lang.String - The type of action.
+
### setActionAdvised(String value) {#setActionAdvised-java.lang.String-}
```
public final void setActionAdvised(String value)
@@ -593,10 +775,12 @@ public final void setActionAdvised(String value)
Sets the type of action that this object provides to a previous object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The type of action. |
+| value | java.lang.String | The type of action.
+ |
### getReferenceService() {#getReferenceService--}
```
@@ -606,8 +790,10 @@ public final String getReferenceService()
Gets the Service Identifier of a prior envelope to which the current object refers.
+
**Returns:**
java.lang.String - The reference service.
+
### setReferenceService(String value) {#setReferenceService-java.lang.String-}
```
public final void setReferenceService(String value)
@@ -616,10 +802,12 @@ public final void setReferenceService(String value)
Sets the Service Identifier of a prior envelope to which the current object refers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The reference service. |
+| value | java.lang.String | The reference service.
+ |
### getReferenceDate() {#getReferenceDate--}
```
@@ -629,8 +817,10 @@ public final Date getReferenceDate()
Gets the date of a prior envelope to which the current object refers.
+
**Returns:**
java.util.Date - The reference date.
+
### setReferenceDate(Date value) {#setReferenceDate-java.util.Date-}
```
public final void setReferenceDate(Date value)
@@ -639,10 +829,12 @@ public final void setReferenceDate(Date value)
Sets the date of a prior envelope to which the current object refers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The reference date. |
+| value | java.util.Date | The reference date.
+ |
### getReferenceNumber() {#getReferenceNumber--}
```
@@ -652,8 +844,10 @@ public final String getReferenceNumber()
Gets the Envelope Number of a prior envelope to which the current object refers.
+
**Returns:**
java.lang.String - The reference number.
+
### setReferenceNumber(String value) {#setReferenceNumber-java.lang.String-}
```
public final void setReferenceNumber(String value)
@@ -662,10 +856,12 @@ public final void setReferenceNumber(String value)
Sets the Envelope Number of a prior envelope to which the current object refers.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The reference number. |
+| value | java.lang.String | The reference number.
+ |
### getDigitalCreationDate() {#getDigitalCreationDate--}
```
@@ -675,8 +871,10 @@ public final Date getDigitalCreationDate()
Gets the date the digital representation of the object data was created.
+
**Returns:**
java.util.Date - The digital creation date.
+
### setDigitalCreationDate(Date value) {#setDigitalCreationDate-java.util.Date-}
```
public final void setDigitalCreationDate(Date value)
@@ -685,10 +883,12 @@ public final void setDigitalCreationDate(Date value)
Sets the date the digital representation of the object data was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The digital creation date. |
+| value | java.util.Date | The digital creation date.
+ |
### getOriginatingProgram() {#getOriginatingProgram--}
```
@@ -698,8 +898,10 @@ public final String getOriginatingProgram()
Gets the type of program used to originate the object data.
+
**Returns:**
java.lang.String - The originating program.
+
### setOriginatingProgram(String value) {#setOriginatingProgram-java.lang.String-}
```
public final void setOriginatingProgram(String value)
@@ -708,10 +910,12 @@ public final void setOriginatingProgram(String value)
Sets the type of program used to originate the object data.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The originating program. |
+| value | java.lang.String | The originating program.
+ |
### getProgramVersion() {#getProgramVersion--}
```
@@ -721,8 +925,10 @@ public final String getProgramVersion()
Gets the program version.
+
**Returns:**
java.lang.String - The program version.
+
### setProgramVersion(String value) {#setProgramVersion-java.lang.String-}
```
public final void setProgramVersion(String value)
@@ -731,10 +937,12 @@ public final void setProgramVersion(String value)
Sets the program version.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The program version. |
+| value | java.lang.String | The program version.
+ |
### getImageType() {#getImageType--}
```
@@ -744,12 +952,19 @@ public final String getImageType()
Gets the type of the image.
+
**Returns:**
java.lang.String - The type of the image.
---------------------
+
+
+*** ** * ** ***
The first is a numeric character and the second is an alphabetic character.
+
+
+
+
### setImageType(String value) {#setImageType-java.lang.String-}
```
public final void setImageType(String value)
@@ -758,14 +973,21 @@ public final void setImageType(String value)
Sets the type of the image.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.String | The type of the image.
---------------------
+
+
+*** ** * ** ***
+
+The first is a numeric character and the second is an alphabetic character.
+
+
-The first is a numeric character and the second is an alphabetic character. |
+ |
### getImageOrientation() {#getImageOrientation--}
```
@@ -775,8 +997,10 @@ public final String getImageOrientation()
Gets the image orientation. Indicates the layout of the image area. Allowed values are P (for Portrait), L (for Landscape) and S (for Square).
+
**Returns:**
java.lang.String - The image orientation.
+
### setImageOrientation(String value) {#setImageOrientation-java.lang.String-}
```
public final void setImageOrientation(String value)
@@ -785,10 +1009,12 @@ public final void setImageOrientation(String value)
Sets the image orientation. Indicates the layout of the image area. Allowed values are P (for Portrait), L (for Landscape) and S (for Square).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The image orientation. |
+| value | java.lang.String | The image orientation.
+ |
### getLanguageIdentifier() {#getLanguageIdentifier--}
```
@@ -798,8 +1024,10 @@ public final String getLanguageIdentifier()
Gets the language identifier according to the 2-letter codes of ISO 639:1988.
+
**Returns:**
java.lang.String - The language identifier.
+
### setLanguageIdentifier(String value) {#setLanguageIdentifier-java.lang.String-}
```
public final void setLanguageIdentifier(String value)
@@ -808,10 +1036,12 @@ public final void setLanguageIdentifier(String value)
Sets the language identifier according to the 2-letter codes of ISO 639:1988.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The language identifier. |
+| value | java.lang.String | The language identifier.
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -821,9 +1051,12 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpjob/_index.md b/english/java/com.groupdocs.metadata.core/xmpjob/_index.md
index 9552810058..f359e915c5 100644
--- a/english/java/com.groupdocs.metadata.core/xmpjob/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpjob/_index.md
@@ -13,28 +13,41 @@ public final class XmpJob extends XmpComplexType
```
Represents Job.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpJob()](#XmpJob--) | Initializes a new instance of the XmpJob class. |
+| [XmpJob()](#XmpJob--) | Initializes a new instance of the
+XmpJob
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getID()](#getID--) | Gets unique id for the job. |
-| [setID(String value)](#setID-java.lang.String-) | Sets unique id for the job. |
-| [getName()](#getName--) | Gets informal name of the job. |
-| [setName(String value)](#setName-java.lang.String-) | Sets informal name of the job. |
-| [getUrl()](#getUrl--) | Gets a file URL referencing an external job management file. |
-| [setUrl(String value)](#setUrl-java.lang.String-) | Sets a file URL referencing an external job management file. |
+| [getID()](#getID--) | Gets unique id for the job.
+ |
+| [setID(String value)](#setID-java.lang.String-) | Sets unique id for the job.
+ |
+| [getName()](#getName--) | Gets informal name of the job.
+ |
+| [setName(String value)](#setName-java.lang.String-) | Sets informal name of the job.
+ |
+| [getUrl()](#getUrl--) | Gets a file URL referencing an external job management file.
+ |
+| [setUrl(String value)](#setUrl-java.lang.String-) | Sets a file URL referencing an external job management file.
+ |
### XmpJob() {#XmpJob--}
```
public XmpJob()
```
-Initializes a new instance of the XmpJob class.
+Initializes a new instance of the
+XmpJob
+ class.
+
### getID() {#getID--}
```
@@ -44,8 +57,10 @@ public final String getID()
Gets unique id for the job. This field is a reference into some external job management system.
+
**Returns:**
java.lang.String - The identifier.
+
### setID(String value) {#setID-java.lang.String-}
```
public final void setID(String value)
@@ -54,10 +69,12 @@ public final void setID(String value)
Sets unique id for the job. This field is a reference into some external job management system.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The identifier. |
+| value | java.lang.String | The identifier.
+ |
### getName() {#getName--}
```
@@ -67,8 +84,10 @@ public final String getName()
Gets informal name of the job. This name is for user display and informal systems.
+
**Returns:**
java.lang.String - The name.
+
### setName(String value) {#setName-java.lang.String-}
```
public final void setName(String value)
@@ -77,10 +96,12 @@ public final void setName(String value)
Sets informal name of the job. This name is for user display and informal systems.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name. |
+| value | java.lang.String | The name.
+ |
### getUrl() {#getUrl--}
```
@@ -90,8 +111,10 @@ public final String getUrl()
Gets a file URL referencing an external job management file.
+
**Returns:**
java.lang.String - The URL.
+
### setUrl(String value) {#setUrl-java.lang.String-}
```
public final void setUrl(String value)
@@ -100,8 +123,10 @@ public final void setUrl(String value)
Sets a file URL referencing an external job management file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The URL. |
+| value | java.lang.String | The URL.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmplangalt/_index.md b/english/java/com.groupdocs.metadata.core/xmplangalt/_index.md
index 0f433b3038..0302831057 100644
--- a/english/java/com.groupdocs.metadata.core/xmplangalt/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmplangalt/_index.md
@@ -14,37 +14,66 @@ public final class XmpLangAlt extends XmpArray
Represents XMP Language Alternative.
+
---------------------
+
+
+
+
+
+
+*** ** * ** ***
An alternative array of simple text items. Language alternatives facilitate the selection of a simple text item based on a desired language. Each array item shall have an xml:lang qualifier. Each xml:lang value shall be unique among the items.
+
+
+
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpLangAlt(String defaultValue)](#XmpLangAlt-java.lang.String-) | Initializes a new instance of the XmpLangAlt class. |
-| [XmpLangAlt(Hashtable dictionary)](#XmpLangAlt-java.util.Hashtable-java.lang.String-java.lang.String--) | Initializes a new instance of the XmpLangAlt class. |
+| [XmpLangAlt(String defaultValue)](#XmpLangAlt-java.lang.String-) | Initializes a new instance of the
+XmpLangAlt
+ class.
+ |
+| [XmpLangAlt(Hashtable dictionary)](#XmpLangAlt-java.util.Hashtable-java.lang.String-java.lang.String--) | Initializes a new instance of the
+XmpLangAlt
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [get_Item(String language)](#get-Item-java.lang.String-) | Gets the value associated with the specified language. |
-| [getLanguages()](#getLanguages--) | Gets an array of all languages registered in the instance of XmpLangAlt . |
-| [contains(String language)](#contains-java.lang.String-) | Determines whether the XmpLangAlt contains the specified language. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation. |
+| [get_Item(String language)](#get-Item-java.lang.String-) | Gets the value associated with the specified language.
+ |
+| [getLanguages()](#getLanguages--) | Gets an array of all languages registered in the instance of
+XmpLangAlt
+.
+ |
+| [contains(String language)](#contains-java.lang.String-) | Determines whether the
+XmpLangAlt
+ contains the specified language.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation.
+ |
### XmpLangAlt(String defaultValue) {#XmpLangAlt-java.lang.String-}
```
public XmpLangAlt(String defaultValue)
```
-Initializes a new instance of the XmpLangAlt class.
+Initializes a new instance of the
+XmpLangAlt
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| defaultValue | java.lang.String | The default value. |
+| defaultValue | java.lang.String | The default value.
+ |
### XmpLangAlt(Hashtable dictionary) {#XmpLangAlt-java.util.Hashtable-java.lang.String-java.lang.String--}
```
@@ -52,12 +81,16 @@ public XmpLangAlt(Hashtable dictionary)
```
-Initializes a new instance of the XmpLangAlt class.
+Initializes a new instance of the
+XmpLangAlt
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| dictionary | java.util.Hashtable | A dictionary containing values by languages. |
+| dictionary | java.util.Hashtable | A dictionary containing values by languages.
+ |
### get_Item(String language) {#get-Item-java.lang.String-}
```
@@ -67,38 +100,50 @@ public final String get_Item(String language)
Gets the value associated with the specified language.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| language | java.lang.String | The language. Value: String value. |
+| language | java.lang.String | The language. Value: String value.
+ |
**Returns:**
java.lang.String - Value for the specified language.
+
### getLanguages() {#getLanguages--}
```
public final String[] getLanguages()
```
-Gets an array of all languages registered in the instance of XmpLangAlt .
+Gets an array of all languages registered in the instance of
+XmpLangAlt
+.
+
**Returns:**
java.lang.String[] - An array of all languages registered in the instance of XmpLangAlt .
+
### contains(String language) {#contains-java.lang.String-}
```
public final boolean contains(String language)
```
-Determines whether the XmpLangAlt contains the specified language.
+Determines whether the
+XmpLangAlt
+ contains the specified language.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| language | java.lang.String | The language to locate in the XmpLangAlt . |
+| language | java.lang.String | The language to locate in the XmpLangAlt .
+ |
**Returns:**
boolean - True if the XmpLangAlt contains an element with the specified language; otherwise, false.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -107,5 +152,7 @@ public String getXmpRepresentation()
Converts XMP value to the xml representation.
+
**Returns:**
java.lang.String - Returns string representation of XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpmediamanagementpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpmediamanagementpackage/_index.md
index 597ddc2b08..0823961407 100644
--- a/english/java/com.groupdocs.metadata.core/xmpmediamanagementpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpmediamanagementpackage/_index.md
@@ -13,52 +13,91 @@ public final class XmpMediaManagementPackage extends XmpPackage
```
Represents the XMP Media Management namespace.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpMediaManagementPackage()](#XmpMediaManagementPackage--) | Initializes a new instance of the XmpMediaManagementPackage class. |
+| [XmpMediaManagementPackage()](#XmpMediaManagementPackage--) | Initializes a new instance of the
+XmpMediaManagementPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getDerivedFrom()](#getDerivedFrom--) | Gets the reference to the resource from which this one is derived. |
-| [setDerivedFrom(XmpResourceRef value)](#setDerivedFrom-com.groupdocs.metadata.core.XmpResourceRef-) | Sets the reference to the resource from which this one is derived. |
-| [getDocumentID()](#getDocumentID--) | Gets the common identifier for all versions and renditions of the resource. |
-| [setDocumentID(String value)](#setDocumentID-java.lang.String-) | Sets the common identifier for all versions and renditions of the resource. |
-| [getHistory()](#getHistory--) | Gets an array of high-level actions that resulted in this resource. |
-| [setHistory(XmpResourceEvent[] value)](#setHistory-com.groupdocs.metadata.core.XmpResourceEvent---) | Sets an array of high-level actions that resulted in this resource. |
-| [getIngredients()](#getIngredients--) | Gets the references to resources that were incorporated, by inclusion or reference, into this resource. |
-| [setIngredients(XmpResourceRef[] value)](#setIngredients-com.groupdocs.metadata.core.XmpResourceRef---) | Sets the references to resources that were incorporated, by inclusion or reference, into this resource. |
-| [getInstanceID()](#getInstanceID--) | Gets the identifier for a specific incarnation of a resource, updated each time the file is saved. |
-| [setInstanceID(String value)](#setInstanceID-java.lang.String-) | Sets the identifier for a specific incarnation of a resource, updated each time the file is saved. |
-| [getManagedFrom()](#getManagedFrom--) | Gets the reference to the document as it was prior to becoming managed. |
-| [setManagedFrom(XmpResourceRef value)](#setManagedFrom-com.groupdocs.metadata.core.XmpResourceRef-) | Sets the reference to the document as it was prior to becoming managed. |
-| [getManager()](#getManager--) | Gets the name of the asset management system that manages this resource. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets the name of the asset management system that manages this resource. |
-| [getManageTo()](#getManageTo--) | Gets the URI identifying the managed resource to the asset management system |
-| [setManageTo(String value)](#setManageTo-java.lang.String-) | Sets the URI identifying the managed resource to the asset management system |
-| [getManageUI()](#getManageUI--) | Gets the URI that can be used to access information about the managed resource through a web browser. |
-| [setManageUI(String value)](#setManageUI-java.lang.String-) | Sets the URI that can be used to access information about the managed resource through a web browser. |
-| [getManagerVariant()](#getManagerVariant--) | Gets the particular variant of the asset management system. |
-| [setManagerVariant(String value)](#setManagerVariant-java.lang.String-) | Sets the particular variant of the asset management system. |
-| [getOriginalDocumentID()](#getOriginalDocumentID--) | Gets the common identifier for the original resource from which the current resource is derived. |
-| [setOriginalDocumentID(String value)](#setOriginalDocumentID-java.lang.String-) | Sets the common identifier for the original resource from which the current resource is derived. |
-| [getRenditionClass()](#getRenditionClass--) | Gets the rendition class name for this resource. |
-| [setRenditionClass(String value)](#setRenditionClass-java.lang.String-) | Sets the rendition class name for this resource. |
-| [getRenditionParams()](#getRenditionParams--) | Gets the value that is used to provide additional rendition parameters that are too complex or verbose to encode in xmpMM:RenditionClass. |
-| [setRenditionParams(String value)](#setRenditionParams-java.lang.String-) | Sets the value that is used to provide additional rendition parameters that are too complex or verbose to encode in xmpMM:RenditionClass. |
-| [getVersionID()](#getVersionID--) | Gets the document version identifier for this resource. |
-| [setVersionID(String value)](#setVersionID-java.lang.String-) | Sets the document version identifier for this resource. |
-| [getVersions()](#getVersions--) | Gets the version history associated with this resource. |
-| [setVersions(XmpVersion[] value)](#setVersions-com.groupdocs.metadata.core.XmpVersion---) | Sets the version history associated with this resource. |
+| [getDerivedFrom()](#getDerivedFrom--) | Gets the reference to the resource from which this one is derived.
+ |
+| [setDerivedFrom(XmpResourceRef value)](#setDerivedFrom-com.groupdocs.metadata.core.XmpResourceRef-) | Sets the reference to the resource from which this one is derived.
+ |
+| [getDocumentID()](#getDocumentID--) | Gets the common identifier for all versions and renditions of the resource.
+ |
+| [setDocumentID(String value)](#setDocumentID-java.lang.String-) | Sets the common identifier for all versions and renditions of the resource.
+ |
+| [getHistory()](#getHistory--) | Gets an array of high-level actions that resulted in this resource.
+ |
+| [setHistory(XmpResourceEvent[] value)](#setHistory-com.groupdocs.metadata.core.XmpResourceEvent---) | Sets an array of high-level actions that resulted in this resource.
+ |
+| [getIngredients()](#getIngredients--) | Gets the references to resources that were incorporated, by inclusion or reference, into this resource.
+ |
+| [setIngredients(XmpResourceRef[] value)](#setIngredients-com.groupdocs.metadata.core.XmpResourceRef---) | Sets the references to resources that were incorporated, by inclusion or reference, into this resource.
+ |
+| [getInstanceID()](#getInstanceID--) | Gets the identifier for a specific incarnation of a resource, updated each time the file is saved.
+ |
+| [setInstanceID(String value)](#setInstanceID-java.lang.String-) | Sets the identifier for a specific incarnation of a resource, updated each time the file is saved.
+ |
+| [getManagedFrom()](#getManagedFrom--) | Gets the reference to the document as it was prior to becoming managed.
+ |
+| [setManagedFrom(XmpResourceRef value)](#setManagedFrom-com.groupdocs.metadata.core.XmpResourceRef-) | Sets the reference to the document as it was prior to becoming managed.
+ |
+| [getManager()](#getManager--) | Gets the name of the asset management system that manages this resource.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets the name of the asset management system that manages this resource.
+ |
+| [getManageTo()](#getManageTo--) | Gets the URI identifying the managed resource to the asset management system
+ |
+| [setManageTo(String value)](#setManageTo-java.lang.String-) | Sets the URI identifying the managed resource to the asset management system
+ |
+| [getManageUI()](#getManageUI--) | Gets the URI that can be used to access information about the managed resource through a web browser.
+ |
+| [setManageUI(String value)](#setManageUI-java.lang.String-) | Sets the URI that can be used to access information about the managed resource through a web browser.
+ |
+| [getManagerVariant()](#getManagerVariant--) | Gets the particular variant of the asset management system.
+ |
+| [setManagerVariant(String value)](#setManagerVariant-java.lang.String-) | Sets the particular variant of the asset management system.
+ |
+| [getOriginalDocumentID()](#getOriginalDocumentID--) | Gets the common identifier for the original resource from which the current resource is derived.
+ |
+| [setOriginalDocumentID(String value)](#setOriginalDocumentID-java.lang.String-) | Sets the common identifier for the original resource from which the current resource is derived.
+ |
+| [getRenditionClass()](#getRenditionClass--) | Gets the rendition class name for this resource.
+ |
+| [setRenditionClass(String value)](#setRenditionClass-java.lang.String-) | Sets the rendition class name for this resource.
+ |
+| [getRenditionParams()](#getRenditionParams--) | Gets the value that is used to provide additional rendition parameters
+that are too complex or verbose to encode in xmpMM:RenditionClass.
+ |
+| [setRenditionParams(String value)](#setRenditionParams-java.lang.String-) | Sets the value that is used to provide additional rendition parameters
+that are too complex or verbose to encode in xmpMM:RenditionClass.
+ |
+| [getVersionID()](#getVersionID--) | Gets the document version identifier for this resource.
+ |
+| [setVersionID(String value)](#setVersionID-java.lang.String-) | Sets the document version identifier for this resource.
+ |
+| [getVersions()](#getVersions--) | Gets the version history associated with this resource.
+ |
+| [setVersions(XmpVersion[] value)](#setVersions-com.groupdocs.metadata.core.XmpVersion---) | Sets the version history associated with this resource.
+ |
### XmpMediaManagementPackage() {#XmpMediaManagementPackage--}
```
public XmpMediaManagementPackage()
```
-Initializes a new instance of the XmpMediaManagementPackage class.
+Initializes a new instance of the
+XmpMediaManagementPackage
+ class.
+
### getDerivedFrom() {#getDerivedFrom--}
```
@@ -68,8 +107,10 @@ public final XmpResourceRef getDerivedFrom()
Gets the reference to the resource from which this one is derived.
+
**Returns:**
[XmpResourceRef](../../com.groupdocs.metadata.core/xmpresourceref) - The the reference to the resource from which this one is derived.
+
### setDerivedFrom(XmpResourceRef value) {#setDerivedFrom-com.groupdocs.metadata.core.XmpResourceRef-}
```
public final void setDerivedFrom(XmpResourceRef value)
@@ -78,10 +119,12 @@ public final void setDerivedFrom(XmpResourceRef value)
Sets the reference to the resource from which this one is derived.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpResourceRef](../../com.groupdocs.metadata.core/xmpresourceref) | The the reference to the resource from which this one is derived. |
+| value | [XmpResourceRef](../../com.groupdocs.metadata.core/xmpresourceref) | The the reference to the resource from which this one is derived.
+ |
### getDocumentID() {#getDocumentID--}
```
@@ -91,8 +134,10 @@ public final String getDocumentID()
Gets the common identifier for all versions and renditions of the resource.
+
**Returns:**
java.lang.String - The common identifier for all versions and renditions of the resource.
+
### setDocumentID(String value) {#setDocumentID-java.lang.String-}
```
public final void setDocumentID(String value)
@@ -101,10 +146,12 @@ public final void setDocumentID(String value)
Sets the common identifier for all versions and renditions of the resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The common identifier for all versions and renditions of the resource. |
+| value | java.lang.String | The common identifier for all versions and renditions of the resource.
+ |
### getHistory() {#getHistory--}
```
@@ -114,8 +161,10 @@ public final XmpResourceEvent[] getHistory()
Gets an array of high-level actions that resulted in this resource.
+
**Returns:**
com.groupdocs.metadata.core.XmpResourceEvent[] - An array of high-level actions that resulted in this resource.
+
### setHistory(XmpResourceEvent[] value) {#setHistory-com.groupdocs.metadata.core.XmpResourceEvent---}
```
public final void setHistory(XmpResourceEvent[] value)
@@ -124,10 +173,12 @@ public final void setHistory(XmpResourceEvent[] value)
Sets an array of high-level actions that resulted in this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpResourceEvent\[\]](../../com.groupdocs.metadata.core/xmpresourceevent) | An array of high-level actions that resulted in this resource. |
+| value | [XmpResourceEvent\[\]](../../com.groupdocs.metadata.core/xmpresourceevent) | An array of high-level actions that resulted in this resource.
+ |
### getIngredients() {#getIngredients--}
```
@@ -137,8 +188,10 @@ public final XmpResourceRef[] getIngredients()
Gets the references to resources that were incorporated, by inclusion or reference, into this resource.
+
**Returns:**
com.groupdocs.metadata.core.XmpResourceRef[] - The references to resources that were incorporated, by inclusion or reference, into this resource.
+
### setIngredients(XmpResourceRef[] value) {#setIngredients-com.groupdocs.metadata.core.XmpResourceRef---}
```
public final void setIngredients(XmpResourceRef[] value)
@@ -147,10 +200,12 @@ public final void setIngredients(XmpResourceRef[] value)
Sets the references to resources that were incorporated, by inclusion or reference, into this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpResourceRef\[\]](../../com.groupdocs.metadata.core/xmpresourceref) | The references to resources that were incorporated, by inclusion or reference, into this resource. |
+| value | [XmpResourceRef\[\]](../../com.groupdocs.metadata.core/xmpresourceref) | The references to resources that were incorporated, by inclusion or reference, into this resource.
+ |
### getInstanceID() {#getInstanceID--}
```
@@ -160,8 +215,10 @@ public final String getInstanceID()
Gets the identifier for a specific incarnation of a resource, updated each time the file is saved.
+
**Returns:**
java.lang.String - The identifier for a specific incarnation of a resource, updated each time a file is saved.
+
### setInstanceID(String value) {#setInstanceID-java.lang.String-}
```
public final void setInstanceID(String value)
@@ -170,10 +227,12 @@ public final void setInstanceID(String value)
Sets the identifier for a specific incarnation of a resource, updated each time the file is saved.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The identifier for a specific incarnation of a resource, updated each time a file is saved. |
+| value | java.lang.String | The identifier for a specific incarnation of a resource, updated each time a file is saved.
+ |
### getManagedFrom() {#getManagedFrom--}
```
@@ -183,8 +242,10 @@ public final XmpResourceRef getManagedFrom()
Gets the reference to the document as it was prior to becoming managed.
+
**Returns:**
[XmpResourceRef](../../com.groupdocs.metadata.core/xmpresourceref) - The reference to the document as it was prior to becoming managed.
+
### setManagedFrom(XmpResourceRef value) {#setManagedFrom-com.groupdocs.metadata.core.XmpResourceRef-}
```
public final void setManagedFrom(XmpResourceRef value)
@@ -193,10 +254,12 @@ public final void setManagedFrom(XmpResourceRef value)
Sets the reference to the document as it was prior to becoming managed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpResourceRef](../../com.groupdocs.metadata.core/xmpresourceref) | The reference to the document as it was prior to becoming managed. |
+| value | [XmpResourceRef](../../com.groupdocs.metadata.core/xmpresourceref) | The reference to the document as it was prior to becoming managed.
+ |
### getManager() {#getManager--}
```
@@ -206,8 +269,10 @@ public final String getManager()
Gets the name of the asset management system that manages this resource.
+
**Returns:**
java.lang.String - The name of the asset management system that manages this resource.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
@@ -216,10 +281,12 @@ public final void setManager(String value)
Sets the name of the asset management system that manages this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name of the asset management system that manages this resource. |
+| value | java.lang.String | The name of the asset management system that manages this resource.
+ |
### getManageTo() {#getManageTo--}
```
@@ -229,8 +296,10 @@ public final String getManageTo()
Gets the URI identifying the managed resource to the asset management system
+
**Returns:**
java.lang.String - The URI identifying the managed resource to the asset management system.
+
### setManageTo(String value) {#setManageTo-java.lang.String-}
```
public final void setManageTo(String value)
@@ -239,10 +308,12 @@ public final void setManageTo(String value)
Sets the URI identifying the managed resource to the asset management system
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The URI identifying the managed resource to the asset management system. |
+| value | java.lang.String | The URI identifying the managed resource to the asset management system.
+ |
### getManageUI() {#getManageUI--}
```
@@ -252,8 +323,10 @@ public final String getManageUI()
Gets the URI that can be used to access information about the managed resource through a web browser.
+
**Returns:**
java.lang.String - The URI that can be used to access information about the managed resource through a web browser.
+
### setManageUI(String value) {#setManageUI-java.lang.String-}
```
public final void setManageUI(String value)
@@ -262,10 +335,12 @@ public final void setManageUI(String value)
Sets the URI that can be used to access information about the managed resource through a web browser.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The URI that can be used to access information about the managed resource through a web browser. |
+| value | java.lang.String | The URI that can be used to access information about the managed resource through a web browser.
+ |
### getManagerVariant() {#getManagerVariant--}
```
@@ -275,8 +350,10 @@ public final String getManagerVariant()
Gets the particular variant of the asset management system.
+
**Returns:**
java.lang.String - The particular variant of the asset management system. The format of this property is private to the specific asset management system.
+
### setManagerVariant(String value) {#setManagerVariant-java.lang.String-}
```
public final void setManagerVariant(String value)
@@ -285,10 +362,12 @@ public final void setManagerVariant(String value)
Sets the particular variant of the asset management system.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The particular variant of the asset management system. The format of this property is private to the specific asset management system. |
+| value | java.lang.String | The particular variant of the asset management system. The format of this property is private to the specific asset management system.
+ |
### getOriginalDocumentID() {#getOriginalDocumentID--}
```
@@ -298,8 +377,10 @@ public final String getOriginalDocumentID()
Gets the common identifier for the original resource from which the current resource is derived.
+
**Returns:**
java.lang.String - The common identifier for the original resource from which the current resource is derived
+
### setOriginalDocumentID(String value) {#setOriginalDocumentID-java.lang.String-}
```
public final void setOriginalDocumentID(String value)
@@ -308,10 +389,12 @@ public final void setOriginalDocumentID(String value)
Sets the common identifier for the original resource from which the current resource is derived.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The common identifier for the original resource from which the current resource is derived |
+| value | java.lang.String | The common identifier for the original resource from which the current resource is derived
+ |
### getRenditionClass() {#getRenditionClass--}
```
@@ -321,8 +404,10 @@ public final String getRenditionClass()
Gets the rendition class name for this resource.
+
**Returns:**
java.lang.String - The rendition class name for this resource. This property should be absent or set to default for a resource that is not a derived rendition.
+
### setRenditionClass(String value) {#setRenditionClass-java.lang.String-}
```
public final void setRenditionClass(String value)
@@ -331,10 +416,12 @@ public final void setRenditionClass(String value)
Sets the rendition class name for this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The rendition class name for this resource. This property should be absent or set to default for a resource that is not a derived rendition. |
+| value | java.lang.String | The rendition class name for this resource. This property should be absent or set to default for a resource that is not a derived rendition.
+ |
### getRenditionParams() {#getRenditionParams--}
```
@@ -342,22 +429,28 @@ public final String getRenditionParams()
```
-Gets the value that is used to provide additional rendition parameters that are too complex or verbose to encode in xmpMM:RenditionClass.
+Gets the value that is used to provide additional rendition parameters
+that are too complex or verbose to encode in xmpMM:RenditionClass.
+
**Returns:**
java.lang.String - The value that is used to provide additional rendition parameters.
+
### setRenditionParams(String value) {#setRenditionParams-java.lang.String-}
```
public final void setRenditionParams(String value)
```
-Sets the value that is used to provide additional rendition parameters that are too complex or verbose to encode in xmpMM:RenditionClass.
+Sets the value that is used to provide additional rendition parameters
+that are too complex or verbose to encode in xmpMM:RenditionClass.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value that is used to provide additional rendition parameters. |
+| value | java.lang.String | The value that is used to provide additional rendition parameters.
+ |
### getVersionID() {#getVersionID--}
```
@@ -367,8 +460,10 @@ public final String getVersionID()
Gets the document version identifier for this resource.
+
**Returns:**
java.lang.String - The document version identifier for this resource.
+
### setVersionID(String value) {#setVersionID-java.lang.String-}
```
public final void setVersionID(String value)
@@ -377,10 +472,12 @@ public final void setVersionID(String value)
Sets the document version identifier for this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The document version identifier for this resource. |
+| value | java.lang.String | The document version identifier for this resource.
+ |
### getVersions() {#getVersions--}
```
@@ -390,8 +487,10 @@ public final XmpVersion[] getVersions()
Gets the version history associated with this resource.
+
**Returns:**
com.groupdocs.metadata.core.XmpVersion[] - The version history associated with this resource. Entry [0] is the oldest known version for this document, entry [Versions.Length - 1] is the most recent version.
+
### setVersions(XmpVersion[] value) {#setVersions-com.groupdocs.metadata.core.XmpVersion---}
```
public final void setVersions(XmpVersion[] value)
@@ -400,8 +499,10 @@ public final void setVersions(XmpVersion[] value)
Sets the version history associated with this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpVersion\[\]](../../com.groupdocs.metadata.core/xmpversion) | The version history associated with this resource. Entry [0] is the oldest known version for this document, entry [Versions.Length - 1] is the most recent version. |
+| value | [XmpVersion\[\]](../../com.groupdocs.metadata.core/xmpversion) | The version history associated with this resource. Entry [0] is the oldest known version for this document, entry [Versions.Length - 1] is the most recent version.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpmeta/_index.md b/english/java/com.groupdocs.metadata.core/xmpmeta/_index.md
index 57766d98c5..043433fd36 100644
--- a/english/java/com.groupdocs.metadata.core/xmpmeta/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpmeta/_index.md
@@ -15,7 +15,9 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public final class XmpMeta extends XmpElementBase implements IXmpType
```
-Represents xmpmeta. Optional. The purpose of this element is to identify XMP metadata within general XML text that might contain other non-XMP uses of RDF.
+Represents xmpmeta. Optional.
+The purpose of this element is to identify XMP metadata within general XML text that might contain other non-XMP uses of RDF.
+
## Constructors
| Constructor | Description |
@@ -25,9 +27,12 @@ Represents xmpmeta. Optional. The purpose of this element is to identify XMP met
| Method | Description |
| --- | --- |
-| [getAdobeXmpToolkit()](#getAdobeXmpToolkit--) | Gets Adobe XMP toolkit version. |
-| [setAttribute(String attribute, String value)](#setAttribute-java.lang.String-java.lang.String-) | Adds an attribute. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation. |
+| [getAdobeXmpToolkit()](#getAdobeXmpToolkit--) | Gets Adobe XMP toolkit version.
+ |
+| [setAttribute(String attribute, String value)](#setAttribute-java.lang.String-java.lang.String-) | Adds an attribute.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation.
+ |
### XmpMeta() {#XmpMeta--}
```
public XmpMeta()
@@ -42,8 +47,10 @@ public final String getAdobeXmpToolkit()
Gets Adobe XMP toolkit version.
+
**Returns:**
java.lang.String - The toolkit version.
+
### setAttribute(String attribute, String value) {#setAttribute-java.lang.String-java.lang.String-}
```
public void setAttribute(String attribute, String value)
@@ -52,11 +59,14 @@ public void setAttribute(String attribute, String value)
Adds an attribute.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| attribute | java.lang.String | The attribute. |
-| value | java.lang.String | The value. |
+| attribute | java.lang.String | The attribute.
+ |
+| value | java.lang.String | The value.
+ |
### getXmpRepresentation() {#getXmpRepresentation--}
```
@@ -66,5 +76,7 @@ public final String getXmpRepresentation()
Converts XMP value to the xml representation.
+
**Returns:**
java.lang.String - Returns string representation of XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpmetadatacontainer/_index.md b/english/java/com.groupdocs.metadata.core/xmpmetadatacontainer/_index.md
index e000280ed8..ba277f4e35 100644
--- a/english/java/com.groupdocs.metadata.core/xmpmetadatacontainer/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpmetadatacontainer/_index.md
@@ -16,11 +16,13 @@ public abstract class XmpMetadataContainer extends CustomPackage implements IXmp
```
Represents a container for XMP metadata properties.
+
## Methods
| Method | Description |
| --- | --- |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts the XMP value to the XML representation. |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts the XMP value to the XML representation.
+ |
### getXmpRepresentation() {#getXmpRepresentation--}
```
public abstract String getXmpRepresentation()
@@ -29,5 +31,7 @@ public abstract String getXmpRepresentation()
Converts the XMP value to the XML representation.
+
**Returns:**
java.lang.String - A string representation of the XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpnamespaces/_index.md b/english/java/com.groupdocs.metadata.core/xmpnamespaces/_index.md
index ae5f8ccc4d..6f0f838d38 100644
--- a/english/java/com.groupdocs.metadata.core/xmpnamespaces/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpnamespaces/_index.md
@@ -12,7 +12,12 @@ java.lang.Object
public class XmpNamespaces
```
-Contains namespaces used in XmpPackage and XmpComplexType .
+Contains namespaces used in
+XmpPackage
+ and
+XmpComplexType
+.
+
## Constructors
| Constructor | Description |
@@ -22,29 +27,52 @@ Contains namespaces used in XmpPackage and XmpComplexType .
| Field | Description |
| --- | --- |
-| [Xml](#Xml) | Xml namespace. |
-| [Rdf](#Rdf) | Resource definition framework namespace. |
-| [BasicJob](#BasicJob) | Basic Job Ticket namespace. |
-| [CameraRaw](#CameraRaw) | Camera Raw namespace. |
-| [DublinCore](#DublinCore) | Dublin Core namespace. |
-| [Iptc4XmpIim](#Iptc4XmpIim) | IPTC IIM namespace. |
-| [Iptc4XmpCore](#Iptc4XmpCore) | IPTC Core namespace. |
-| [Iptc4XmpExt](#Iptc4XmpExt) | IPTC Extension namespace. |
-| [XmpBasic](#XmpBasic) | XMP Basic namespace. |
-| [XmpRights](#XmpRights) | XMP Rights Management namespace. |
-| [XmpMM](#XmpMM) | XMP digital asset management namespace. |
-| [XmpDM](#XmpDM) | XMP Dynamic Media namespace. |
-| [Pdf](#Pdf) | Adobe PDF namespace. |
-| [Photoshop](#Photoshop) | Adobe Photoshop namespace. |
-| [PagedText](#PagedText) | XMP Paged-Text namespace. |
-| [XmpGraphics](#XmpGraphics) | XMP graphics namespace. |
-| [XmpGraphicsThumbnail](#XmpGraphicsThumbnail) | XMP graphics namespace. |
-| [XmpTypeFont](#XmpTypeFont) | XMP Font type. |
-| [XmpTypeDimensions](#XmpTypeDimensions) | XMP Dimensions type. |
-| [XmpTypeResourceRef](#XmpTypeResourceRef) | XMP ResourceRef URI. |
-| [XmpTypeResourceEvent](#XmpTypeResourceEvent) | XMP ResourceEvent URI. |
-| [XmpTypeVersion](#XmpTypeVersion) | XMP Version. |
-| [XmpTypeJob](#XmpTypeJob) | XMP Job Ticket. |
+| [Xml](#Xml) | Xml namespace.
+ |
+| [Rdf](#Rdf) | Resource definition framework namespace.
+ |
+| [BasicJob](#BasicJob) | Basic Job Ticket namespace.
+ |
+| [CameraRaw](#CameraRaw) | Camera Raw namespace.
+ |
+| [DublinCore](#DublinCore) | Dublin Core namespace.
+ |
+| [Iptc4XmpIim](#Iptc4XmpIim) | IPTC IIM namespace.
+ |
+| [Iptc4XmpCore](#Iptc4XmpCore) | IPTC Core namespace.
+ |
+| [Iptc4XmpExt](#Iptc4XmpExt) | IPTC Extension namespace.
+ |
+| [XmpBasic](#XmpBasic) | XMP Basic namespace.
+ |
+| [XmpRights](#XmpRights) | XMP Rights Management namespace.
+ |
+| [XmpMM](#XmpMM) | XMP digital asset management namespace.
+ |
+| [XmpDM](#XmpDM) | XMP Dynamic Media namespace.
+ |
+| [Pdf](#Pdf) | Adobe PDF namespace.
+ |
+| [Photoshop](#Photoshop) | Adobe Photoshop namespace.
+ |
+| [PagedText](#PagedText) | XMP Paged-Text namespace.
+ |
+| [XmpGraphics](#XmpGraphics) | XMP graphics namespace.
+ |
+| [XmpGraphicsThumbnail](#XmpGraphicsThumbnail) | XMP graphics namespace.
+ |
+| [XmpTypeFont](#XmpTypeFont) | XMP Font type.
+ |
+| [XmpTypeDimensions](#XmpTypeDimensions) | XMP Dimensions type.
+ |
+| [XmpTypeResourceRef](#XmpTypeResourceRef) | XMP ResourceRef URI.
+ |
+| [XmpTypeResourceEvent](#XmpTypeResourceEvent) | XMP ResourceEvent URI.
+ |
+| [XmpTypeVersion](#XmpTypeVersion) | XMP Version.
+ |
+| [XmpTypeJob](#XmpTypeJob) | XMP Job Ticket.
+ |
### XmpNamespaces() {#XmpNamespaces--}
```
public XmpNamespaces()
@@ -59,6 +87,7 @@ public static final String Xml
Xml namespace.
+
### Rdf {#Rdf}
```
public static final String Rdf
@@ -67,6 +96,7 @@ public static final String Rdf
Resource definition framework namespace.
+
### BasicJob {#BasicJob}
```
public static final String BasicJob
@@ -75,6 +105,7 @@ public static final String BasicJob
Basic Job Ticket namespace.
+
### CameraRaw {#CameraRaw}
```
public static final String CameraRaw
@@ -83,6 +114,7 @@ public static final String CameraRaw
Camera Raw namespace.
+
### DublinCore {#DublinCore}
```
public static final String DublinCore
@@ -91,6 +123,7 @@ public static final String DublinCore
Dublin Core namespace.
+
### Iptc4XmpIim {#Iptc4XmpIim}
```
public static final String Iptc4XmpIim
@@ -99,6 +132,7 @@ public static final String Iptc4XmpIim
IPTC IIM namespace.
+
### Iptc4XmpCore {#Iptc4XmpCore}
```
public static final String Iptc4XmpCore
@@ -107,6 +141,7 @@ public static final String Iptc4XmpCore
IPTC Core namespace.
+
### Iptc4XmpExt {#Iptc4XmpExt}
```
public static final String Iptc4XmpExt
@@ -115,6 +150,7 @@ public static final String Iptc4XmpExt
IPTC Extension namespace.
+
### XmpBasic {#XmpBasic}
```
public static final String XmpBasic
@@ -123,6 +159,7 @@ public static final String XmpBasic
XMP Basic namespace.
+
### XmpRights {#XmpRights}
```
public static final String XmpRights
@@ -131,6 +168,7 @@ public static final String XmpRights
XMP Rights Management namespace.
+
### XmpMM {#XmpMM}
```
public static final String XmpMM
@@ -139,6 +177,7 @@ public static final String XmpMM
XMP digital asset management namespace.
+
### XmpDM {#XmpDM}
```
public static final String XmpDM
@@ -147,6 +186,7 @@ public static final String XmpDM
XMP Dynamic Media namespace.
+
### Pdf {#Pdf}
```
public static final String Pdf
@@ -155,6 +195,7 @@ public static final String Pdf
Adobe PDF namespace.
+
### Photoshop {#Photoshop}
```
public static final String Photoshop
@@ -163,6 +204,7 @@ public static final String Photoshop
Adobe Photoshop namespace.
+
### PagedText {#PagedText}
```
public static final String PagedText
@@ -171,6 +213,7 @@ public static final String PagedText
XMP Paged-Text namespace.
+
### XmpGraphics {#XmpGraphics}
```
public static final String XmpGraphics
@@ -179,6 +222,7 @@ public static final String XmpGraphics
XMP graphics namespace.
+
### XmpGraphicsThumbnail {#XmpGraphicsThumbnail}
```
public static final String XmpGraphicsThumbnail
@@ -187,6 +231,7 @@ public static final String XmpGraphicsThumbnail
XMP graphics namespace.
+
### XmpTypeFont {#XmpTypeFont}
```
public static final String XmpTypeFont
@@ -195,6 +240,7 @@ public static final String XmpTypeFont
XMP Font type.
+
### XmpTypeDimensions {#XmpTypeDimensions}
```
public static final String XmpTypeDimensions
@@ -203,6 +249,7 @@ public static final String XmpTypeDimensions
XMP Dimensions type.
+
### XmpTypeResourceRef {#XmpTypeResourceRef}
```
public static final String XmpTypeResourceRef
@@ -211,6 +258,7 @@ public static final String XmpTypeResourceRef
XMP ResourceRef URI.
+
### XmpTypeResourceEvent {#XmpTypeResourceEvent}
```
public static final String XmpTypeResourceEvent
@@ -219,6 +267,7 @@ public static final String XmpTypeResourceEvent
XMP ResourceEvent URI.
+
### XmpTypeVersion {#XmpTypeVersion}
```
public static final String XmpTypeVersion
@@ -227,6 +276,7 @@ public static final String XmpTypeVersion
XMP Version.
+
### XmpTypeJob {#XmpTypeJob}
```
public static final String XmpTypeJob
@@ -235,3 +285,4 @@ public static final String XmpTypeJob
XMP Job Ticket.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmppackage/_index.md b/english/java/com.groupdocs.metadata.core/xmppackage/_index.md
index d18c7e6dea..48ca07c41a 100644
--- a/english/java/com.groupdocs.metadata.core/xmppackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmppackage/_index.md
@@ -14,15 +14,18 @@ public class XmpPackage extends XmpMetadataContainer
Represents base abstraction for XMP package.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
-This example demonstrates how to add a custom XMP package to a file of any supported format.
+
+This example demonstrates how to add a custom XMP package to a file of any supported format.
+>
+> ````
> ```
-> ```
->
+>
> try (Metadata metadata = new Metadata(Constants.InputJpeg)) {
> IXmp root = (IXmp) metadata.getRootPackage();
> XmpPacketWrapper packet = new XmpPacketWrapper();
@@ -36,46 +39,75 @@ This example demonstrates how to add a custom XMP package to a file of any suppo
> }
>
> ```
-> ```
+> ````
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpPackage(String prefix, String namespaceUri)](#XmpPackage-java.lang.String-java.lang.String-) | Initializes a new instance of the XmpPackage class. |
+| [XmpPackage(String prefix, String namespaceUri)](#XmpPackage-java.lang.String-java.lang.String-) | Initializes a new instance of the
+XmpPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPrefix()](#getPrefix--) | Gets the xmlns prefix. |
-| [getNamespaceUri()](#getNamespaceUri--) | Gets the namespace URI. |
-| [getXmlNamespace()](#getXmlNamespace--) | Gets the XML namespace. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
-| [set(String name, int value)](#set-java.lang.String-int-) | Sets integer property. |
-| [set(String name, boolean value)](#set-java.lang.String-boolean-) | Sets boolean property. |
-| [set(String name, Date value)](#set-java.lang.String-java.util.Date-) | Sets DateTime property. |
-| [set(String name, double value)](#set-java.lang.String-double-) | Sets double property. |
-| [remove(String name)](#remove-java.lang.String-) | Removes the property with the specified name. |
-| [clear()](#clear--) | Removes all XMP properties. |
-| [set(String name, XmpValueBase value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpValueBase-) | Sets the value inherited from XmpValueBase . |
-| [set(String name, XmpComplexType value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpComplexType-) | Sets the value inherited from XmpComplexType . |
-| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from XmpArray . |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts the XMP value to the XML representation. |
+| [getPrefix()](#getPrefix--) | Gets the xmlns prefix.
+ |
+| [getNamespaceUri()](#getNamespaceUri--) | Gets the namespace URI.
+ |
+| [getXmlNamespace()](#getXmlNamespace--) | Gets the XML namespace.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
+| [set(String name, int value)](#set-java.lang.String-int-) | Sets integer property.
+ |
+| [set(String name, boolean value)](#set-java.lang.String-boolean-) | Sets boolean property.
+ |
+| [set(String name, Date value)](#set-java.lang.String-java.util.Date-) | Sets
+DateTime
+ property.
+ |
+| [set(String name, double value)](#set-java.lang.String-double-) | Sets double property.
+ |
+| [remove(String name)](#remove-java.lang.String-) | Removes the property with the specified name.
+ |
+| [clear()](#clear--) | Removes all XMP properties.
+ |
+| [set(String name, XmpValueBase value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpValueBase-) | Sets the value inherited from
+XmpValueBase
+ .
+ |
+| [set(String name, XmpComplexType value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpComplexType-) | Sets the value inherited from
+XmpComplexType
+ .
+ |
+| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from
+XmpArray
+ .
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts the XMP value to the XML representation.
+ |
### XmpPackage(String prefix, String namespaceUri) {#XmpPackage-java.lang.String-java.lang.String-}
```
public XmpPackage(String prefix, String namespaceUri)
```
-Initializes a new instance of the XmpPackage class.
+Initializes a new instance of the
+XmpPackage
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| prefix | java.lang.String | XMP prefix, for example dc:title. |
-| namespaceUri | java.lang.String | Namespace uri. |
+| prefix | java.lang.String | XMP prefix, for example dc:title.
+ |
+| namespaceUri | java.lang.String | Namespace uri.
+ |
### getPrefix() {#getPrefix--}
```
@@ -85,8 +117,10 @@ public final String getPrefix()
Gets the xmlns prefix.
+
**Returns:**
java.lang.String - The prefix.
+
### getNamespaceUri() {#getNamespaceUri--}
```
public final String getNamespaceUri()
@@ -95,8 +129,10 @@ public final String getNamespaceUri()
Gets the namespace URI.
+
**Returns:**
java.lang.String - The namespace URI.
+
### getXmlNamespace() {#getXmlNamespace--}
```
public final String getXmlNamespace()
@@ -105,8 +141,10 @@ public final String getXmlNamespace()
Gets the XML namespace.
+
**Returns:**
java.lang.String - The XML namespace.
+
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
public void set(String name, String value)
@@ -115,11 +153,14 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
### set(String name, int value) {#set-java.lang.String-int-}
```
@@ -129,11 +170,14 @@ public final void set(String name, int value)
Sets integer property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | int | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | int | XMP metadata property value.
+ |
### set(String name, boolean value) {#set-java.lang.String-boolean-}
```
@@ -143,11 +187,14 @@ public final void set(String name, boolean value)
Sets boolean property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | boolean | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | boolean | XMP metadata property value.
+ |
### set(String name, Date value) {#set-java.lang.String-java.util.Date-}
```
@@ -155,13 +202,18 @@ public final void set(String name, Date value)
```
-Sets DateTime property.
+Sets
+DateTime
+ property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.util.Date | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.util.Date | XMP metadata property value.
+ |
### set(String name, double value) {#set-java.lang.String-double-}
```
@@ -171,11 +223,14 @@ public final void set(String name, double value)
Sets double property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | double | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | double | XMP metadata property value.
+ |
### remove(String name) {#remove-java.lang.String-}
```
@@ -185,13 +240,16 @@ public final boolean remove(String name)
Removes the property with the specified name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
+| name | java.lang.String | XMP metadata property name.
+ |
**Returns:**
boolean - True if the specified metadata property is found and removed; otherwise, false.
+
### clear() {#clear--}
```
public final void clear()
@@ -200,19 +258,25 @@ public final void clear()
Removes all XMP properties.
+
### set(String name, XmpValueBase value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpValueBase-}
```
public final void set(String name, XmpValueBase value)
```
-Sets the value inherited from XmpValueBase .
+Sets the value inherited from
+XmpValueBase
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpValueBase](../../com.groupdocs.metadata.core/xmpvaluebase) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpValueBase](../../com.groupdocs.metadata.core/xmpvaluebase) | XMP metadata property value.
+ |
### set(String name, XmpComplexType value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpComplexType-}
```
@@ -220,13 +284,18 @@ public void set(String name, XmpComplexType value)
```
-Sets the value inherited from XmpComplexType .
+Sets the value inherited from
+XmpComplexType
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpComplexType](../../com.groupdocs.metadata.core/xmpcomplextype) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpComplexType](../../com.groupdocs.metadata.core/xmpcomplextype) | XMP metadata property value.
+ |
### set(String name, XmpArray value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-}
```
@@ -234,13 +303,18 @@ public void set(String name, XmpArray value)
```
-Sets the value inherited from XmpArray .
+Sets the value inherited from
+XmpArray
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value.
+ |
### getXmpRepresentation() {#getXmpRepresentation--}
```
@@ -250,5 +324,7 @@ public String getXmpRepresentation()
Converts the XMP value to the XML representation.
+
**Returns:**
java.lang.String - A string representation of the XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmppacketwrapper/_index.md b/english/java/com.groupdocs.metadata.core/xmppacketwrapper/_index.md
index 28ac13d749..bdcac9d0bd 100644
--- a/english/java/com.groupdocs.metadata.core/xmppacketwrapper/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmppacketwrapper/_index.md
@@ -15,53 +15,87 @@ java.lang.Object, [com.groupdocs.metadata.core.MetadataPackage](../../com.groupd
public class XmpPacketWrapper extends MetadataPackage implements IXmpType
```
-Contains serialized XMP package including header and trailer. A wrapper consisting of a pair of XML processing instructions (PIs) may be placed around the rdf:RDF element.
+Contains serialized XMP package including header and trailer.
+A wrapper consisting of a pair of XML processing instructions (PIs) may be placed around the rdf:RDF element.
+
**Learn more**
- * [Working with XMP metadata][]
+* [Working with XMP metadata](../https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata)
+
+
-[Working with XMP metadata]: https://docs.groupdocs.com/display/metadatajava/Working+with+XMP+metadata
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpPacketWrapper(XmpHeaderPI header, XmpTrailerPI trailer, XmpMeta xmpMeta)](#XmpPacketWrapper-com.groupdocs.metadata.core.XmpHeaderPI-com.groupdocs.metadata.core.XmpTrailerPI-com.groupdocs.metadata.core.XmpMeta-) | Initializes a new instance of the XmpPacketWrapper class. |
-| [XmpPacketWrapper()](#XmpPacketWrapper--) | Initializes a new instance of the XmpPacketWrapper class. |
+| [XmpPacketWrapper(XmpHeaderPI header, XmpTrailerPI trailer, XmpMeta xmpMeta)](#XmpPacketWrapper-com.groupdocs.metadata.core.XmpHeaderPI-com.groupdocs.metadata.core.XmpTrailerPI-com.groupdocs.metadata.core.XmpMeta-) | Initializes a new instance of the
+XmpPacketWrapper
+ class.
+ |
+| [XmpPacketWrapper()](#XmpPacketWrapper--) | Initializes a new instance of the
+XmpPacketWrapper
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getHeaderPI()](#getHeaderPI--) | Gets the header processing instruction. |
-| [setHeaderPI(XmpHeaderPI value)](#setHeaderPI-com.groupdocs.metadata.core.XmpHeaderPI-) | Sets the header processing instruction. |
-| [getMeta()](#getMeta--) | Gets the XMP meta. |
-| [setMeta(XmpMeta value)](#setMeta-com.groupdocs.metadata.core.XmpMeta-) | Sets the XMP meta. |
-| [getTrailerPI()](#getTrailerPI--) | Gets the trailer processing instruction. |
-| [setTrailerPI(XmpTrailerPI value)](#setTrailerPI-com.groupdocs.metadata.core.XmpTrailerPI-) | Sets the trailer processing instruction. |
-| [getPackages()](#getPackages--) | Gets array of XmpPackage inside XMP. |
-| [getPackageCount()](#getPackageCount--) | Gets the number of packages inside the XMP structure. |
-| [getSchemes()](#getSchemes--) | Provides access to known XMP schemas. |
-| [addPackage(XmpPackage package_)](#addPackage-com.groupdocs.metadata.core.XmpPackage-) | Adds the package. |
-| [getPackage(String namespaceUri)](#getPackage-java.lang.String-) | Gets package by namespace uri. |
-| [containsPackage(String namespaceUri)](#containsPackage-java.lang.String-) | Determines whether package is exist in XMP wrapper. |
-| [removePackage(XmpPackage package_)](#removePackage-com.groupdocs.metadata.core.XmpPackage-) | Removes the specified package. |
-| [clearPackages()](#clearPackages--) | Removes all XmpPackage inside XMP. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getHeaderPI()](#getHeaderPI--) | Gets the header processing instruction.
+ |
+| [setHeaderPI(XmpHeaderPI value)](#setHeaderPI-com.groupdocs.metadata.core.XmpHeaderPI-) | Sets the header processing instruction.
+ |
+| [getMeta()](#getMeta--) | Gets the XMP meta.
+ |
+| [setMeta(XmpMeta value)](#setMeta-com.groupdocs.metadata.core.XmpMeta-) | Sets the XMP meta.
+ |
+| [getTrailerPI()](#getTrailerPI--) | Gets the trailer processing instruction.
+ |
+| [setTrailerPI(XmpTrailerPI value)](#setTrailerPI-com.groupdocs.metadata.core.XmpTrailerPI-) | Sets the trailer processing instruction.
+ |
+| [getPackages()](#getPackages--) | Gets array of
+XmpPackage
+ inside XMP.
+ |
+| [getPackageCount()](#getPackageCount--) | Gets the number of packages inside the XMP structure.
+ |
+| [getSchemes()](#getSchemes--) | Provides access to known XMP schemas.
+ |
+| [addPackage(XmpPackage package_)](#addPackage-com.groupdocs.metadata.core.XmpPackage-) | Adds the package.
+ |
+| [getPackage(String namespaceUri)](#getPackage-java.lang.String-) | Gets package by namespace uri.
+ |
+| [containsPackage(String namespaceUri)](#containsPackage-java.lang.String-) | Determines whether package is exist in XMP wrapper.
+ |
+| [removePackage(XmpPackage package_)](#removePackage-com.groupdocs.metadata.core.XmpPackage-) | Removes the specified package.
+ |
+| [clearPackages()](#clearPackages--) | Removes all
+XmpPackage
+ inside XMP.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpPacketWrapper(XmpHeaderPI header, XmpTrailerPI trailer, XmpMeta xmpMeta) {#XmpPacketWrapper-com.groupdocs.metadata.core.XmpHeaderPI-com.groupdocs.metadata.core.XmpTrailerPI-com.groupdocs.metadata.core.XmpMeta-}
```
public XmpPacketWrapper(XmpHeaderPI header, XmpTrailerPI trailer, XmpMeta xmpMeta)
```
-Initializes a new instance of the XmpPacketWrapper class.
+Initializes a new instance of the
+XmpPacketWrapper
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| header | [XmpHeaderPI](../../com.groupdocs.metadata.core/xmpheaderpi) | XMP header processing instruction. |
-| trailer | [XmpTrailerPI](../../com.groupdocs.metadata.core/xmptrailerpi) | XMP trailer processing instruction. |
-| xmpMeta | [XmpMeta](../../com.groupdocs.metadata.core/xmpmeta) | Instance of XmpMeta . |
+| header | [XmpHeaderPI](../../com.groupdocs.metadata.core/xmpheaderpi) | XMP header processing instruction.
+ |
+| trailer | [XmpTrailerPI](../../com.groupdocs.metadata.core/xmptrailerpi) | XMP trailer processing instruction.
+ |
+| xmpMeta | [XmpMeta](../../com.groupdocs.metadata.core/xmpmeta) | Instance of XmpMeta .
+ |
### XmpPacketWrapper() {#XmpPacketWrapper--}
```
@@ -69,7 +103,10 @@ public XmpPacketWrapper()
```
-Initializes a new instance of the XmpPacketWrapper class.
+Initializes a new instance of the
+XmpPacketWrapper
+ class.
+
### getHeaderPI() {#getHeaderPI--}
```
@@ -79,8 +116,10 @@ public final XmpHeaderPI getHeaderPI()
Gets the header processing instruction.
+
**Returns:**
[XmpHeaderPI](../../com.groupdocs.metadata.core/xmpheaderpi) - The header processing instruction.
+
### setHeaderPI(XmpHeaderPI value) {#setHeaderPI-com.groupdocs.metadata.core.XmpHeaderPI-}
```
public final void setHeaderPI(XmpHeaderPI value)
@@ -89,10 +128,12 @@ public final void setHeaderPI(XmpHeaderPI value)
Sets the header processing instruction.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpHeaderPI](../../com.groupdocs.metadata.core/xmpheaderpi) | The header processing instruction. |
+| value | [XmpHeaderPI](../../com.groupdocs.metadata.core/xmpheaderpi) | The header processing instruction.
+ |
### getMeta() {#getMeta--}
```
@@ -102,8 +143,10 @@ public final XmpMeta getMeta()
Gets the XMP meta.
+
**Returns:**
[XmpMeta](../../com.groupdocs.metadata.core/xmpmeta) - The XMP meta.
+
### setMeta(XmpMeta value) {#setMeta-com.groupdocs.metadata.core.XmpMeta-}
```
public final void setMeta(XmpMeta value)
@@ -112,10 +155,12 @@ public final void setMeta(XmpMeta value)
Sets the XMP meta.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpMeta](../../com.groupdocs.metadata.core/xmpmeta) | The XMP meta. |
+| value | [XmpMeta](../../com.groupdocs.metadata.core/xmpmeta) | The XMP meta.
+ |
### getTrailerPI() {#getTrailerPI--}
```
@@ -125,8 +170,10 @@ public final XmpTrailerPI getTrailerPI()
Gets the trailer processing instruction.
+
**Returns:**
[XmpTrailerPI](../../com.groupdocs.metadata.core/xmptrailerpi) - The trailer processing instruction.
+
### setTrailerPI(XmpTrailerPI value) {#setTrailerPI-com.groupdocs.metadata.core.XmpTrailerPI-}
```
public final void setTrailerPI(XmpTrailerPI value)
@@ -135,10 +182,12 @@ public final void setTrailerPI(XmpTrailerPI value)
Sets the trailer processing instruction.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpTrailerPI](../../com.groupdocs.metadata.core/xmptrailerpi) | The trailer processing instruction. |
+| value | [XmpTrailerPI](../../com.groupdocs.metadata.core/xmptrailerpi) | The trailer processing instruction.
+ |
### getPackages() {#getPackages--}
```
@@ -146,10 +195,14 @@ public final XmpPackage[] getPackages()
```
-Gets array of XmpPackage inside XMP.
+Gets array of
+XmpPackage
+ inside XMP.
+
**Returns:**
com.groupdocs.metadata.core.XmpPackage[] - XMP packages.
+
### getPackageCount() {#getPackageCount--}
```
public final int getPackageCount()
@@ -158,8 +211,10 @@ public final int getPackageCount()
Gets the number of packages inside the XMP structure.
+
**Returns:**
int - The package count.
+
### getSchemes() {#getSchemes--}
```
public final XmpSchemes getSchemes()
@@ -168,8 +223,10 @@ public final XmpSchemes getSchemes()
Provides access to known XMP schemas.
+
**Returns:**
[XmpSchemes](../../com.groupdocs.metadata.core/xmpschemes) - XMP schemes.
+
### addPackage(XmpPackage package_) {#addPackage-com.groupdocs.metadata.core.XmpPackage-}
```
public final void addPackage(XmpPackage package_)
@@ -178,6 +235,7 @@ public final void addPackage(XmpPackage package_)
Adds the package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -191,13 +249,16 @@ public final XmpPackage getPackage(String namespaceUri)
Gets package by namespace uri.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| namespaceUri | java.lang.String | Package schema uri. |
+| namespaceUri | java.lang.String | Package schema uri.
+ |
**Returns:**
[XmpPackage](../../com.groupdocs.metadata.core/xmppackage) - Appropriate XmpPackage if package found by namespaceUri ; otherwise null.
+
### containsPackage(String namespaceUri) {#containsPackage-java.lang.String-}
```
public final boolean containsPackage(String namespaceUri)
@@ -206,13 +267,16 @@ public final boolean containsPackage(String namespaceUri)
Determines whether package is exist in XMP wrapper.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| namespaceUri | java.lang.String | Package namespace URI. |
+| namespaceUri | java.lang.String | Package namespace URI.
+ |
**Returns:**
boolean - true if package found by namespaceUri ; otherwise false .
+
### removePackage(XmpPackage package_) {#removePackage-com.groupdocs.metadata.core.XmpPackage-}
```
public final void removePackage(XmpPackage package_)
@@ -221,6 +285,7 @@ public final void removePackage(XmpPackage package_)
Removes the specified package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -232,7 +297,10 @@ public final void clearPackages()
```
-Removes all XmpPackage inside XMP.
+Removes all
+XmpPackage
+ inside XMP.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
@@ -242,5 +310,7 @@ public final String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmppagedtextpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmppagedtextpackage/_index.md
index 6a4daa2b3f..6e4e31a483 100644
--- a/english/java/com.groupdocs.metadata.core/xmppagedtextpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmppagedtextpackage/_index.md
@@ -13,34 +13,55 @@ public final class XmpPagedTextPackage extends XmpPackage
```
Represents the XMP Paged-Text package.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpPagedTextPackage()](#XmpPagedTextPackage--) | Initializes a new instance of the XmpPagedTextPackage class. |
+| [XmpPagedTextPackage()](#XmpPagedTextPackage--) | Initializes a new instance of the
+XmpPagedTextPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getColorants()](#getColorants--) | Gets an ordered array of colorants (swatches) that are used in the document (including any in contained documents). |
-| [setColorants(XmpColorantBase[] value)](#setColorants-com.groupdocs.metadata.core.XmpColorantBase---) | Sets an ordered array of colorants (swatches) that are used in the document (including any in contained documents). |
-| [getFonts()](#getFonts--) | Gets an unordered array of fonts that are used in the document (including any in contained documents). |
-| [setFonts(XmpFont[] value)](#setFonts-com.groupdocs.metadata.core.XmpFont---) | Sets an unordered array of fonts that are used in the document (including any in contained documents). |
-| [getMaxPageSize()](#getMaxPageSize--) | Gets the size of the largest page in the document (including any in contained documents). |
-| [setMaxPageSize(XmpDimensions value)](#setMaxPageSize-com.groupdocs.metadata.core.XmpDimensions-) | Sets the size of the largest page in the document (including any in contained documents). |
-| [getNumberOfPages()](#getNumberOfPages--) | Gets the number of pages in the document. |
-| [setNumberOfPages(Integer value)](#setNumberOfPages-java.lang.Integer-) | Sets the number of pages in the document. |
-| [getPlateNames()](#getPlateNames--) | Gets or set an ordered array of plate names that are needed to print the document (including any in contained documents). |
-| [setPlateNames(String[] value)](#setPlateNames-java.lang.String---) | Gets or set an ordered array of plate names that are needed to print the document (including any in contained documents). |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
-| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from XmpArray . |
+| [getColorants()](#getColorants--) | Gets an ordered array of colorants (swatches) that are used in the document (including any in contained documents).
+ |
+| [setColorants(XmpColorantBase[] value)](#setColorants-com.groupdocs.metadata.core.XmpColorantBase---) | Sets an ordered array of colorants (swatches) that are used in the document (including any in contained documents).
+ |
+| [getFonts()](#getFonts--) | Gets an unordered array of fonts that are used in the document (including any in contained documents).
+ |
+| [setFonts(XmpFont[] value)](#setFonts-com.groupdocs.metadata.core.XmpFont---) | Sets an unordered array of fonts that are used in the document (including any in contained documents).
+ |
+| [getMaxPageSize()](#getMaxPageSize--) | Gets the size of the largest page in the document (including any in contained documents).
+ |
+| [setMaxPageSize(XmpDimensions value)](#setMaxPageSize-com.groupdocs.metadata.core.XmpDimensions-) | Sets the size of the largest page in the document (including any in contained documents).
+ |
+| [getNumberOfPages()](#getNumberOfPages--) | Gets the number of pages in the document.
+ |
+| [setNumberOfPages(Integer value)](#setNumberOfPages-java.lang.Integer-) | Sets the number of pages in the document.
+ |
+| [getPlateNames()](#getPlateNames--) | Gets or set an ordered array of plate names that are needed to print the document (including any in contained documents).
+ |
+| [setPlateNames(String[] value)](#setPlateNames-java.lang.String---) | Gets or set an ordered array of plate names that are needed to print the document (including any in contained documents).
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
+| [set(String name, XmpArray value)](#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-) | Sets the value inherited from
+XmpArray
+ .
+ |
### XmpPagedTextPackage() {#XmpPagedTextPackage--}
```
public XmpPagedTextPackage()
```
-Initializes a new instance of the XmpPagedTextPackage class.
+Initializes a new instance of the
+XmpPagedTextPackage
+ class.
+
### getColorants() {#getColorants--}
```
@@ -50,8 +71,10 @@ public final XmpColorantBase[] getColorants()
Gets an ordered array of colorants (swatches) that are used in the document (including any in contained documents).
+
**Returns:**
com.groupdocs.metadata.core.XmpColorantBase[] - An array of the colorants.
+
### setColorants(XmpColorantBase[] value) {#setColorants-com.groupdocs.metadata.core.XmpColorantBase---}
```
public final void setColorants(XmpColorantBase[] value)
@@ -60,10 +83,12 @@ public final void setColorants(XmpColorantBase[] value)
Sets an ordered array of colorants (swatches) that are used in the document (including any in contained documents).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpColorantBase\[\]](../../com.groupdocs.metadata.core/xmpcolorantbase) | An array of the colorants. |
+| value | [XmpColorantBase\[\]](../../com.groupdocs.metadata.core/xmpcolorantbase) | An array of the colorants.
+ |
### getFonts() {#getFonts--}
```
@@ -73,8 +98,10 @@ public final XmpFont[] getFonts()
Gets an unordered array of fonts that are used in the document (including any in contained documents).
+
**Returns:**
com.groupdocs.metadata.core.XmpFont[] - An array of the fonts.
+
### setFonts(XmpFont[] value) {#setFonts-com.groupdocs.metadata.core.XmpFont---}
```
public final void setFonts(XmpFont[] value)
@@ -83,10 +110,12 @@ public final void setFonts(XmpFont[] value)
Sets an unordered array of fonts that are used in the document (including any in contained documents).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpFont\[\]](../../com.groupdocs.metadata.core/xmpfont) | An array of the fonts. |
+| value | [XmpFont\[\]](../../com.groupdocs.metadata.core/xmpfont) | An array of the fonts.
+ |
### getMaxPageSize() {#getMaxPageSize--}
```
@@ -96,8 +125,10 @@ public final XmpDimensions getMaxPageSize()
Gets the size of the largest page in the document (including any in contained documents).
+
**Returns:**
[XmpDimensions](../../com.groupdocs.metadata.core/xmpdimensions) - The size of the largest page.
+
### setMaxPageSize(XmpDimensions value) {#setMaxPageSize-com.groupdocs.metadata.core.XmpDimensions-}
```
public final void setMaxPageSize(XmpDimensions value)
@@ -106,10 +137,12 @@ public final void setMaxPageSize(XmpDimensions value)
Sets the size of the largest page in the document (including any in contained documents).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpDimensions](../../com.groupdocs.metadata.core/xmpdimensions) | The size of the largest page. |
+| value | [XmpDimensions](../../com.groupdocs.metadata.core/xmpdimensions) | The size of the largest page.
+ |
### getNumberOfPages() {#getNumberOfPages--}
```
@@ -119,8 +152,10 @@ public final Integer getNumberOfPages()
Gets the number of pages in the document.
+
**Returns:**
java.lang.Integer - The number of pages.
+
### setNumberOfPages(Integer value) {#setNumberOfPages-java.lang.Integer-}
```
public final void setNumberOfPages(Integer value)
@@ -129,10 +164,12 @@ public final void setNumberOfPages(Integer value)
Sets the number of pages in the document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The number of pages. |
+| value | java.lang.Integer | The number of pages.
+ |
### getPlateNames() {#getPlateNames--}
```
@@ -142,8 +179,10 @@ public final String[] getPlateNames()
Gets or set an ordered array of plate names that are needed to print the document (including any in contained documents).
+
**Returns:**
java.lang.String[] - The plate names.
+
### setPlateNames(String[] value) {#setPlateNames-java.lang.String---}
```
public final void setPlateNames(String[] value)
@@ -152,6 +191,7 @@ public final void setPlateNames(String[] value)
Gets or set an ordered array of plate names that are needed to print the document (including any in contained documents).
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -165,11 +205,14 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
### set(String name, XmpArray value) {#set-java.lang.String-com.groupdocs.metadata.core.XmpArray-}
```
@@ -177,11 +220,16 @@ public void set(String name, XmpArray value)
```
-Sets the value inherited from XmpArray .
+Sets the value inherited from
+XmpArray
+ .
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | [XmpArray](../../com.groupdocs.metadata.core/xmparray) | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmppdfpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmppdfpackage/_index.md
index 109d7cc327..e8fc76a3d2 100644
--- a/english/java/com.groupdocs.metadata.core/xmppdfpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmppdfpackage/_index.md
@@ -13,31 +13,47 @@ public final class XmpPdfPackage extends XmpPackage
```
Specifies properties used with Adobe PDF documents.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpPdfPackage()](#XmpPdfPackage--) | Initializes a new instance of the XmpPdfPackage class. |
+| [XmpPdfPackage()](#XmpPdfPackage--) | Initializes a new instance of the
+XmpPdfPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getKeywords()](#getKeywords--) | Gets the keywords. |
-| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords. |
-| [getPdfVersion()](#getPdfVersion--) | Gets the PDF file version. |
-| [setPdfVersion(String value)](#setPdfVersion-java.lang.String-) | Sets the PDF file version. |
-| [getProducer()](#getProducer--) | Gets the name of the tool that created the PDF document. |
-| [setProducer(String value)](#setProducer-java.lang.String-) | Sets the name of the tool that created the PDF document. |
-| [isTrapped()](#isTrapped--) | Gets a value indicating whether the document has been trapped. |
-| [setTrapped(Boolean value)](#setTrapped-java.lang.Boolean-) | Sets a value indicating whether the document has been trapped. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
+| [getKeywords()](#getKeywords--) | Gets the keywords.
+ |
+| [setKeywords(String value)](#setKeywords-java.lang.String-) | Sets the keywords.
+ |
+| [getPdfVersion()](#getPdfVersion--) | Gets the PDF file version.
+ |
+| [setPdfVersion(String value)](#setPdfVersion-java.lang.String-) | Sets the PDF file version.
+ |
+| [getProducer()](#getProducer--) | Gets the name of the tool that created the PDF document.
+ |
+| [setProducer(String value)](#setProducer-java.lang.String-) | Sets the name of the tool that created the PDF document.
+ |
+| [isTrapped()](#isTrapped--) | Gets a value indicating whether the document has been trapped.
+ |
+| [setTrapped(Boolean value)](#setTrapped-java.lang.Boolean-) | Sets a value indicating whether the document has been trapped.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
### XmpPdfPackage() {#XmpPdfPackage--}
```
public XmpPdfPackage()
```
-Initializes a new instance of the XmpPdfPackage class.
+Initializes a new instance of the
+XmpPdfPackage
+ class.
+
### getKeywords() {#getKeywords--}
```
@@ -47,8 +63,10 @@ public final String getKeywords()
Gets the keywords.
+
**Returns:**
java.lang.String - The keywords.
+
### setKeywords(String value) {#setKeywords-java.lang.String-}
```
public final void setKeywords(String value)
@@ -57,10 +75,12 @@ public final void setKeywords(String value)
Sets the keywords.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The keywords. |
+| value | java.lang.String | The keywords.
+ |
### getPdfVersion() {#getPdfVersion--}
```
@@ -70,8 +90,10 @@ public final String getPdfVersion()
Gets the PDF file version. For example, 1.0, 1.3 and so on.
+
**Returns:**
java.lang.String - The PDF version.
+
### setPdfVersion(String value) {#setPdfVersion-java.lang.String-}
```
public final void setPdfVersion(String value)
@@ -80,10 +102,12 @@ public final void setPdfVersion(String value)
Sets the PDF file version. For example, 1.0, 1.3 and so on.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The PDF version. |
+| value | java.lang.String | The PDF version.
+ |
### getProducer() {#getProducer--}
```
@@ -93,8 +117,10 @@ public final String getProducer()
Gets the name of the tool that created the PDF document.
+
**Returns:**
java.lang.String - The producer.
+
### setProducer(String value) {#setProducer-java.lang.String-}
```
public final void setProducer(String value)
@@ -103,10 +129,12 @@ public final void setProducer(String value)
Sets the name of the tool that created the PDF document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The producer. |
+| value | java.lang.String | The producer.
+ |
### isTrapped() {#isTrapped--}
```
@@ -116,8 +144,10 @@ public final Boolean isTrapped()
Gets a value indicating whether the document has been trapped.
+
**Returns:**
java.lang.Boolean - true if the document has been trapped; otherwise, false .
+
### setTrapped(Boolean value) {#setTrapped-java.lang.Boolean-}
```
public final void setTrapped(Boolean value)
@@ -126,10 +156,12 @@ public final void setTrapped(Boolean value)
Sets a value indicating whether the document has been trapped.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if the document has been trapped; otherwise, false . |
+| value | java.lang.Boolean | true if the document has been trapped; otherwise, false .
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -139,9 +171,12 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpphotoshopcolormode/_index.md b/english/java/com.groupdocs.metadata.core/xmpphotoshopcolormode/_index.md
index 44a60f7266..31a538b668 100644
--- a/english/java/com.groupdocs.metadata.core/xmpphotoshopcolormode/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpphotoshopcolormode/_index.md
@@ -15,19 +15,30 @@ java.lang.Object, java.lang.Enum
public enum XmpPhotoshopColorMode extends Enum implements IEnumValue
```
-Represents a color mode in XmpPhotoshopPackage .
+Represents a color mode in
+XmpPhotoshopPackage
+.
+
## Fields
| Field | Description |
| --- | --- |
-| [Bitmap](#Bitmap) | The bitmap color mode. |
-| [GrayScale](#GrayScale) | The gray scale color mode. |
-| [IndexedColor](#IndexedColor) | The indexed color. |
-| [Rgb](#Rgb) | The RGB color mode. |
-| [Cmyk](#Cmyk) | The CMYK color mode. |
-| [MultiChannel](#MultiChannel) | The multi-channel color mode. |
-| [Duotone](#Duotone) | The duo-tone color mode. |
-| [LabColor](#LabColor) | The LAB color mode. |
+| [Bitmap](#Bitmap) | The bitmap color mode.
+ |
+| [GrayScale](#GrayScale) | The gray scale color mode.
+ |
+| [IndexedColor](#IndexedColor) | The indexed color.
+ |
+| [Rgb](#Rgb) | The RGB color mode.
+ |
+| [Cmyk](#Cmyk) | The CMYK color mode.
+ |
+| [MultiChannel](#MultiChannel) | The multi-channel color mode.
+ |
+| [Duotone](#Duotone) | The duo-tone color mode.
+ |
+| [LabColor](#LabColor) | The LAB color mode.
+ |
## Methods
| Method | Description |
@@ -49,6 +60,7 @@ public static final XmpPhotoshopColorMode Bitmap
The bitmap color mode.
+
### GrayScale {#GrayScale}
```
public static final XmpPhotoshopColorMode GrayScale
@@ -57,6 +69,7 @@ public static final XmpPhotoshopColorMode GrayScale
The gray scale color mode.
+
### IndexedColor {#IndexedColor}
```
public static final XmpPhotoshopColorMode IndexedColor
@@ -65,6 +78,7 @@ public static final XmpPhotoshopColorMode IndexedColor
The indexed color.
+
### Rgb {#Rgb}
```
public static final XmpPhotoshopColorMode Rgb
@@ -73,6 +87,7 @@ public static final XmpPhotoshopColorMode Rgb
The RGB color mode.
+
### Cmyk {#Cmyk}
```
public static final XmpPhotoshopColorMode Cmyk
@@ -81,6 +96,7 @@ public static final XmpPhotoshopColorMode Cmyk
The CMYK color mode.
+
### MultiChannel {#MultiChannel}
```
public static final XmpPhotoshopColorMode MultiChannel
@@ -89,6 +105,7 @@ public static final XmpPhotoshopColorMode MultiChannel
The multi-channel color mode.
+
### Duotone {#Duotone}
```
public static final XmpPhotoshopColorMode Duotone
@@ -97,6 +114,7 @@ public static final XmpPhotoshopColorMode Duotone
The duo-tone color mode.
+
### LabColor {#LabColor}
```
public static final XmpPhotoshopColorMode LabColor
@@ -105,6 +123,7 @@ public static final XmpPhotoshopColorMode LabColor
The LAB color mode.
+
### values() {#values--}
```
public static XmpPhotoshopColorMode[] values()
@@ -163,6 +182,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -173,6 +193,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -188,6 +209,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -203,6 +225,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -213,5 +236,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/xmpphotoshoppackage/_index.md b/english/java/com.groupdocs.metadata.core/xmpphotoshoppackage/_index.md
index f9ee19c505..937539e5c1 100644
--- a/english/java/com.groupdocs.metadata.core/xmpphotoshoppackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpphotoshoppackage/_index.md
@@ -13,63 +13,107 @@ public final class XmpPhotoshopPackage extends XmpPackage
```
Represents Adobe Photoshop namespace.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpPhotoshopPackage()](#XmpPhotoshopPackage--) | Initializes a new instance of the XmpPhotoshopPackage class. |
+| [XmpPhotoshopPackage()](#XmpPhotoshopPackage--) | Initializes a new instance of the
+XmpPhotoshopPackage
+ class.
+ |
## Fields
| Field | Description |
| --- | --- |
-| [UrgencyMax](#UrgencyMax) | Urgency max value. |
-| [UrgencyMin](#UrgencyMin) | Urgency min value. |
+| [UrgencyMax](#UrgencyMax) | Urgency max value.
+ |
+| [UrgencyMin](#UrgencyMin) | Urgency min value.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAuthorsPosition()](#getAuthorsPosition--) | Gets the by-line title. |
-| [setAuthorsPosition(String value)](#setAuthorsPosition-java.lang.String-) | Sets the by-line title. |
-| [getCaptionWriter()](#getCaptionWriter--) | Gets the writer/editor. |
-| [setCaptionWriter(String value)](#setCaptionWriter-java.lang.String-) | Sets the writer/editor. |
-| [getCategory()](#getCategory--) | Gets the category. |
-| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category. |
-| [getCity()](#getCity--) | Gets the city. |
-| [setCity(String value)](#setCity-java.lang.String-) | Sets the city. |
-| [getColorMode()](#getColorMode--) | Gets the color mode. |
-| [setColorMode(XmpPhotoshopColorMode value)](#setColorMode-com.groupdocs.metadata.core.XmpPhotoshopColorMode-) | Sets the color mode. |
-| [getCountry()](#getCountry--) | Gets the country. |
-| [setCountry(String value)](#setCountry-java.lang.String-) | Sets the country. |
-| [getCredit()](#getCredit--) | Gets the credit. |
-| [setCredit(String value)](#setCredit-java.lang.String-) | Sets the credit. |
-| [getDateCreated()](#getDateCreated--) | Gets the date the intellectual content of the document was created. |
-| [setDateCreated(Date value)](#setDateCreated-java.util.Date-) | Sets the date the intellectual content of the document was created. |
-| [getHeadline()](#getHeadline--) | Gets the headline. |
-| [setHeadline(String value)](#setHeadline-java.lang.String-) | Sets the headline. |
-| [getHistory()](#getHistory--) | Gets the history that appears in the FileInfo panel, if activated in the application preferences. |
-| [setHistory(String value)](#setHistory-java.lang.String-) | Sets the history that appears in the FileInfo panel, if activated in the application preferences. |
-| [getIccProfile()](#getIccProfile--) | Gets the color profile, such as AppleRGB, AdobeRGB1998. |
-| [setIccProfile(String value)](#setIccProfile-java.lang.String-) | Sets the color profile, such as AppleRGB, AdobeRGB1998. |
-| [getInstructions()](#getInstructions--) | Gets the special instructions. |
-| [setInstructions(String value)](#setInstructions-java.lang.String-) | Sets the special instructions. |
-| [getSource()](#getSource--) | Gets the source. |
-| [setSource(String value)](#setSource-java.lang.String-) | Sets the source. |
-| [getState()](#getState--) | Gets the province/state. |
-| [setState(String value)](#setState-java.lang.String-) | Sets the province/state. |
-| [getSupplementalCategories()](#getSupplementalCategories--) | Gets the supplemental categories. |
-| [setSupplementalCategories(String[] value)](#setSupplementalCategories-java.lang.String---) | Sets the supplemental categories. |
-| [getTransmissionReference()](#getTransmissionReference--) | Gets the original transmission reference. |
-| [setTransmissionReference(String value)](#setTransmissionReference-java.lang.String-) | Sets the original transmission reference. |
-| [getUrgency()](#getUrgency--) | Gets the urgency. |
-| [setUrgency(Integer value)](#setUrgency-java.lang.Integer-) | Sets the urgency. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
+| [getAuthorsPosition()](#getAuthorsPosition--) | Gets the by-line title.
+ |
+| [setAuthorsPosition(String value)](#setAuthorsPosition-java.lang.String-) | Sets the by-line title.
+ |
+| [getCaptionWriter()](#getCaptionWriter--) | Gets the writer/editor.
+ |
+| [setCaptionWriter(String value)](#setCaptionWriter-java.lang.String-) | Sets the writer/editor.
+ |
+| [getCategory()](#getCategory--) | Gets the category.
+ |
+| [setCategory(String value)](#setCategory-java.lang.String-) | Sets the category.
+ |
+| [getCity()](#getCity--) | Gets the city.
+ |
+| [setCity(String value)](#setCity-java.lang.String-) | Sets the city.
+ |
+| [getColorMode()](#getColorMode--) | Gets the color mode.
+ |
+| [setColorMode(XmpPhotoshopColorMode value)](#setColorMode-com.groupdocs.metadata.core.XmpPhotoshopColorMode-) | Sets the color mode.
+ |
+| [getCountry()](#getCountry--) | Gets the country.
+ |
+| [setCountry(String value)](#setCountry-java.lang.String-) | Sets the country.
+ |
+| [getCredit()](#getCredit--) | Gets the credit.
+ |
+| [setCredit(String value)](#setCredit-java.lang.String-) | Sets the credit.
+ |
+| [getDateCreated()](#getDateCreated--) | Gets the date the intellectual content of the document was created.
+ |
+| [setDateCreated(Date value)](#setDateCreated-java.util.Date-) | Sets the date the intellectual content of the document was created.
+ |
+| [getHeadline()](#getHeadline--) | Gets the headline.
+ |
+| [setHeadline(String value)](#setHeadline-java.lang.String-) | Sets the headline.
+ |
+| [getHistory()](#getHistory--) | Gets the history that appears in the FileInfo panel, if activated in the application preferences.
+ |
+| [setHistory(String value)](#setHistory-java.lang.String-) | Sets the history that appears in the FileInfo panel, if activated in the application preferences.
+ |
+| [getIccProfile()](#getIccProfile--) | Gets the color profile, such as AppleRGB, AdobeRGB1998.
+ |
+| [setIccProfile(String value)](#setIccProfile-java.lang.String-) | Sets the color profile, such as AppleRGB, AdobeRGB1998.
+ |
+| [getInstructions()](#getInstructions--) | Gets the special instructions.
+ |
+| [setInstructions(String value)](#setInstructions-java.lang.String-) | Sets the special instructions.
+ |
+| [getSource()](#getSource--) | Gets the source.
+ |
+| [setSource(String value)](#setSource-java.lang.String-) | Sets the source.
+ |
+| [getState()](#getState--) | Gets the province/state.
+ |
+| [setState(String value)](#setState-java.lang.String-) | Sets the province/state.
+ |
+| [getSupplementalCategories()](#getSupplementalCategories--) | Gets the supplemental categories.
+ |
+| [setSupplementalCategories(String[] value)](#setSupplementalCategories-java.lang.String---) | Sets the supplemental categories.
+ |
+| [getTransmissionReference()](#getTransmissionReference--) | Gets the original transmission reference.
+ |
+| [setTransmissionReference(String value)](#setTransmissionReference-java.lang.String-) | Sets the original transmission reference.
+ |
+| [getUrgency()](#getUrgency--) | Gets the urgency.
+ |
+| [setUrgency(Integer value)](#setUrgency-java.lang.Integer-) | Sets the urgency.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
### XmpPhotoshopPackage() {#XmpPhotoshopPackage--}
```
public XmpPhotoshopPackage()
```
-Initializes a new instance of the XmpPhotoshopPackage class.
+Initializes a new instance of the
+XmpPhotoshopPackage
+ class.
+
### UrgencyMax {#UrgencyMax}
```
@@ -79,6 +123,7 @@ public static final int UrgencyMax
Urgency max value.
+
### UrgencyMin {#UrgencyMin}
```
public static final int UrgencyMin
@@ -87,6 +132,7 @@ public static final int UrgencyMin
Urgency min value.
+
### getAuthorsPosition() {#getAuthorsPosition--}
```
public final String getAuthorsPosition()
@@ -95,8 +141,10 @@ public final String getAuthorsPosition()
Gets the by-line title.
+
**Returns:**
java.lang.String - The authors position.
+
### setAuthorsPosition(String value) {#setAuthorsPosition-java.lang.String-}
```
public final void setAuthorsPosition(String value)
@@ -105,10 +153,12 @@ public final void setAuthorsPosition(String value)
Sets the by-line title.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The authors position. |
+| value | java.lang.String | The authors position.
+ |
### getCaptionWriter() {#getCaptionWriter--}
```
@@ -118,8 +168,10 @@ public final String getCaptionWriter()
Gets the writer/editor.
+
**Returns:**
java.lang.String - The caption writer.
+
### setCaptionWriter(String value) {#setCaptionWriter-java.lang.String-}
```
public final void setCaptionWriter(String value)
@@ -128,10 +180,12 @@ public final void setCaptionWriter(String value)
Sets the writer/editor.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The caption writer. |
+| value | java.lang.String | The caption writer.
+ |
### getCategory() {#getCategory--}
```
@@ -141,8 +195,10 @@ public final String getCategory()
Gets the category. Limited to 3 7-bit ASCII characters.
+
**Returns:**
java.lang.String - The category. Limited to 3 ASCII characters.
+
### setCategory(String value) {#setCategory-java.lang.String-}
```
public final void setCategory(String value)
@@ -151,10 +207,12 @@ public final void setCategory(String value)
Sets the category. Limited to 3 7-bit ASCII characters.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The category. Limited to 3 ASCII characters. |
+| value | java.lang.String | The category. Limited to 3 ASCII characters.
+ |
### getCity() {#getCity--}
```
@@ -164,8 +222,10 @@ public final String getCity()
Gets the city.
+
**Returns:**
java.lang.String - The city.
+
### setCity(String value) {#setCity-java.lang.String-}
```
public final void setCity(String value)
@@ -174,10 +234,12 @@ public final void setCity(String value)
Sets the city.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The city. |
+| value | java.lang.String | The city.
+ |
### getColorMode() {#getColorMode--}
```
@@ -187,8 +249,10 @@ public final XmpPhotoshopColorMode getColorMode()
Gets the color mode.
+
**Returns:**
[XmpPhotoshopColorMode](../../com.groupdocs.metadata.core/xmpphotoshopcolormode) - The color mode.
+
### setColorMode(XmpPhotoshopColorMode value) {#setColorMode-com.groupdocs.metadata.core.XmpPhotoshopColorMode-}
```
public final void setColorMode(XmpPhotoshopColorMode value)
@@ -197,10 +261,12 @@ public final void setColorMode(XmpPhotoshopColorMode value)
Sets the color mode.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpPhotoshopColorMode](../../com.groupdocs.metadata.core/xmpphotoshopcolormode) | The color mode. |
+| value | [XmpPhotoshopColorMode](../../com.groupdocs.metadata.core/xmpphotoshopcolormode) | The color mode.
+ |
### getCountry() {#getCountry--}
```
@@ -210,8 +276,10 @@ public final String getCountry()
Gets the country.
+
**Returns:**
java.lang.String - The country.
+
### setCountry(String value) {#setCountry-java.lang.String-}
```
public final void setCountry(String value)
@@ -220,10 +288,12 @@ public final void setCountry(String value)
Sets the country.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The country. |
+| value | java.lang.String | The country.
+ |
### getCredit() {#getCredit--}
```
@@ -233,8 +303,10 @@ public final String getCredit()
Gets the credit.
+
**Returns:**
java.lang.String - The credit.
+
### setCredit(String value) {#setCredit-java.lang.String-}
```
public final void setCredit(String value)
@@ -243,10 +315,12 @@ public final void setCredit(String value)
Sets the credit.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The credit. |
+| value | java.lang.String | The credit.
+ |
### getDateCreated() {#getDateCreated--}
```
@@ -256,8 +330,10 @@ public final Date getDateCreated()
Gets the date the intellectual content of the document was created.
+
**Returns:**
java.util.Date - The created date of the document.
+
### setDateCreated(Date value) {#setDateCreated-java.util.Date-}
```
public final void setDateCreated(Date value)
@@ -266,10 +342,12 @@ public final void setDateCreated(Date value)
Sets the date the intellectual content of the document was created.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The created date of the document. |
+| value | java.util.Date | The created date of the document.
+ |
### getHeadline() {#getHeadline--}
```
@@ -279,8 +357,10 @@ public final String getHeadline()
Gets the headline.
+
**Returns:**
java.lang.String - The headline.
+
### setHeadline(String value) {#setHeadline-java.lang.String-}
```
public final void setHeadline(String value)
@@ -289,10 +369,12 @@ public final void setHeadline(String value)
Sets the headline.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The headline. |
+| value | java.lang.String | The headline.
+ |
### getHistory() {#getHistory--}
```
@@ -302,8 +384,10 @@ public final String getHistory()
Gets the history that appears in the FileInfo panel, if activated in the application preferences.
+
**Returns:**
java.lang.String - The history.
+
### setHistory(String value) {#setHistory-java.lang.String-}
```
public final void setHistory(String value)
@@ -312,10 +396,12 @@ public final void setHistory(String value)
Sets the history that appears in the FileInfo panel, if activated in the application preferences.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The history. |
+| value | java.lang.String | The history.
+ |
### getIccProfile() {#getIccProfile--}
```
@@ -325,8 +411,10 @@ public final String getIccProfile()
Gets the color profile, such as AppleRGB, AdobeRGB1998.
+
**Returns:**
java.lang.String - The ICC profile.
+
### setIccProfile(String value) {#setIccProfile-java.lang.String-}
```
public final void setIccProfile(String value)
@@ -335,10 +423,12 @@ public final void setIccProfile(String value)
Sets the color profile, such as AppleRGB, AdobeRGB1998.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The ICC profile. |
+| value | java.lang.String | The ICC profile.
+ |
### getInstructions() {#getInstructions--}
```
@@ -348,8 +438,10 @@ public final String getInstructions()
Gets the special instructions.
+
**Returns:**
java.lang.String - The special instructions.
+
### setInstructions(String value) {#setInstructions-java.lang.String-}
```
public final void setInstructions(String value)
@@ -358,10 +450,12 @@ public final void setInstructions(String value)
Sets the special instructions.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The special instructions. |
+| value | java.lang.String | The special instructions.
+ |
### getSource() {#getSource--}
```
@@ -371,8 +465,10 @@ public final String getSource()
Gets the source.
+
**Returns:**
java.lang.String - The source.
+
### setSource(String value) {#setSource-java.lang.String-}
```
public final void setSource(String value)
@@ -381,10 +477,12 @@ public final void setSource(String value)
Sets the source.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The source. |
+| value | java.lang.String | The source.
+ |
### getState() {#getState--}
```
@@ -394,8 +492,10 @@ public final String getState()
Gets the province/state.
+
**Returns:**
java.lang.String - The province/state.
+
### setState(String value) {#setState-java.lang.String-}
```
public final void setState(String value)
@@ -404,10 +504,12 @@ public final void setState(String value)
Sets the province/state.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The province/state. |
+| value | java.lang.String | The province/state.
+ |
### getSupplementalCategories() {#getSupplementalCategories--}
```
@@ -417,8 +519,10 @@ public final String[] getSupplementalCategories()
Gets the supplemental categories.
+
**Returns:**
java.lang.String[] - The supplemental categories.
+
### setSupplementalCategories(String[] value) {#setSupplementalCategories-java.lang.String---}
```
public final void setSupplementalCategories(String[] value)
@@ -427,10 +531,12 @@ public final void setSupplementalCategories(String[] value)
Sets the supplemental categories.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The supplemental categories. |
+| value | java.lang.String[] | The supplemental categories.
+ |
### getTransmissionReference() {#getTransmissionReference--}
```
@@ -440,8 +546,10 @@ public final String getTransmissionReference()
Gets the original transmission reference.
+
**Returns:**
java.lang.String - The transmission reference.
+
### setTransmissionReference(String value) {#setTransmissionReference-java.lang.String-}
```
public final void setTransmissionReference(String value)
@@ -450,10 +558,12 @@ public final void setTransmissionReference(String value)
Sets the original transmission reference.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The transmission reference. |
+| value | java.lang.String | The transmission reference.
+ |
### getUrgency() {#getUrgency--}
```
@@ -463,12 +573,19 @@ public final Integer getUrgency()
Gets the urgency.
+
**Returns:**
java.lang.Integer - The urgency.
---------------------
+
+
+*** ** * ** ***
Valid range is 1-8.
+
+
+
+
### setUrgency(Integer value) {#setUrgency-java.lang.Integer-}
```
public final void setUrgency(Integer value)
@@ -477,14 +594,21 @@ public final void setUrgency(Integer value)
Sets the urgency.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| value | java.lang.Integer | The urgency.
---------------------
+
-Valid range is 1-8. |
+*** ** * ** ***
+
+Valid range is 1-8.
+
+
+
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -494,9 +618,12 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmprational/_index.md b/english/java/com.groupdocs.metadata.core/xmprational/_index.md
index aea25cde54..3feb773808 100644
--- a/english/java/com.groupdocs.metadata.core/xmprational/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmprational/_index.md
@@ -13,33 +13,49 @@ public final class XmpRational extends XmpValueBase
```
Represents XMP XmpRational.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpRational(long numerator, long denominator)](#XmpRational-long-long-) | Initializes a new instance of the XmpRational class. |
-| [XmpRational(String value)](#XmpRational-java.lang.String-) | Initializes a new instance of the XmpBoolean class. |
+| [XmpRational(long numerator, long denominator)](#XmpRational-long-long-) | Initializes a new instance of the
+XmpRational
+ class.
+ |
+| [XmpRational(String value)](#XmpRational-java.lang.String-) | Initializes a new instance of the
+XmpBoolean
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getNumerator()](#getNumerator--) | Gets numerator. |
-| [getDenominator()](#getDenominator--) | Gets denominator |
-| [getDoubleValue()](#getDoubleValue--) | Gets value of rational type presented in double format. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getNumerator()](#getNumerator--) | Gets numerator.
+ |
+| [getDenominator()](#getDenominator--) | Gets denominator
+ |
+| [getDoubleValue()](#getDoubleValue--) | Gets value of rational type presented in double format.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpRational(long numerator, long denominator) {#XmpRational-long-long-}
```
public XmpRational(long numerator, long denominator)
```
-Initializes a new instance of the XmpRational class.
+Initializes a new instance of the
+XmpRational
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| numerator | long | The numerator. |
-| denominator | long | The denominator. |
+| numerator | long | The numerator.
+ |
+| denominator | long | The denominator.
+ |
### XmpRational(String value) {#XmpRational-java.lang.String-}
```
@@ -47,12 +63,16 @@ public XmpRational(String value)
```
-Initializes a new instance of the XmpBoolean class.
+Initializes a new instance of the
+XmpBoolean
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value. |
+| value | java.lang.String | The value.
+ |
### getNumerator() {#getNumerator--}
```
@@ -62,8 +82,10 @@ public final long getNumerator()
Gets numerator.
+
**Returns:**
long - The numerator.
+
### getDenominator() {#getDenominator--}
```
public final long getDenominator()
@@ -72,8 +94,10 @@ public final long getDenominator()
Gets denominator
+
**Returns:**
long - The denominator.
+
### getDoubleValue() {#getDoubleValue--}
```
public final double getDoubleValue()
@@ -82,8 +106,10 @@ public final double getDoubleValue()
Gets value of rational type presented in double format.
+
**Returns:**
double - Double value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -92,5 +118,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpreal/_index.md b/english/java/com.groupdocs.metadata.core/xmpreal/_index.md
index 8a84f7c099..b0658423c5 100644
--- a/english/java/com.groupdocs.metadata.core/xmpreal/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpreal/_index.md
@@ -13,30 +13,43 @@ public final class XmpReal extends XmpValueBase
```
Represents XMP Real.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpReal(double value)](#XmpReal-double-) | Initializes a new instance of the XmpReal class. |
-| [XmpReal(String value)](#XmpReal-java.lang.String-) | Initializes a new instance of the XmpReal class. |
+| [XmpReal(double value)](#XmpReal-double-) | Initializes a new instance of the
+XmpReal
+ class.
+ |
+| [XmpReal(String value)](#XmpReal-java.lang.String-) | Initializes a new instance of the
+XmpReal
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getValue()](#getValue--) | Gets the value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpReal(double value) {#XmpReal-double-}
```
public XmpReal(double value)
```
-Initializes a new instance of the XmpReal class.
+Initializes a new instance of the
+XmpReal
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | double | Double value. |
+| value | double | Double value.
+ |
### XmpReal(String value) {#XmpReal-java.lang.String-}
```
@@ -44,12 +57,16 @@ public XmpReal(String value)
```
-Initializes a new instance of the XmpReal class.
+Initializes a new instance of the
+XmpReal
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value. |
+| value | java.lang.String | The value.
+ |
### getValue() {#getValue--}
```
@@ -59,8 +76,10 @@ public final double getValue()
Gets the value.
+
**Returns:**
double - Double value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -69,5 +88,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmprenditionclass/_index.md b/english/java/com.groupdocs.metadata.core/xmprenditionclass/_index.md
index 79ecb02809..fd9ea4dd5c 100644
--- a/english/java/com.groupdocs.metadata.core/xmprenditionclass/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmprenditionclass/_index.md
@@ -13,33 +13,47 @@ public final class XmpRenditionClass extends XmpText
```
Represents XMP RenditionClass.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpRenditionClass(String[] tokens)](#XmpRenditionClass-java.lang.String...-) | Initializes a new instance of the XmpRenditionClass class. |
+| [XmpRenditionClass(String[] tokens)](#XmpRenditionClass-java.lang.String...-) | Initializes a new instance of the
+XmpRenditionClass
+ class.
+ |
## Fields
| Field | Description |
| --- | --- |
-| [Default](#Default) | The master resource; no additional tokens allowed. |
-| [Draft](#Draft) | A review rendition. |
-| [LowRes](#LowRes) | A low-resolution, full-size stand-in. |
-| [Proof](#Proof) | A review proof. |
-| [Screen](#Screen) | Screen resolution or Web rendition. |
-| [Thumbnail](#Thumbnail) | A simplified or reduced preview. |
+| [Default](#Default) | The master resource; no additional tokens allowed.
+ |
+| [Draft](#Draft) | A review rendition.
+ |
+| [LowRes](#LowRes) | A low-resolution, full-size stand-in.
+ |
+| [Proof](#Proof) | A review proof.
+ |
+| [Screen](#Screen) | Screen resolution or Web rendition.
+ |
+| [Thumbnail](#Thumbnail) | A simplified or reduced preview.
+ |
### XmpRenditionClass(String[] tokens) {#XmpRenditionClass-java.lang.String...-}
```
public XmpRenditionClass(String[] tokens)
```
-Initializes a new instance of the XmpRenditionClass class.
+Initializes a new instance of the
+XmpRenditionClass
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tokens | java.lang.String[] | The token. |
+| tokens | java.lang.String[] | The token.
+ |
### Default {#Default}
```
@@ -49,6 +63,7 @@ public static final String Default
The master resource; no additional tokens allowed.
+
### Draft {#Draft}
```
public static final String Draft
@@ -57,6 +72,7 @@ public static final String Draft
A review rendition.
+
### LowRes {#LowRes}
```
public static final String LowRes
@@ -65,6 +81,7 @@ public static final String LowRes
A low-resolution, full-size stand-in.
+
### Proof {#Proof}
```
public static final String Proof
@@ -73,6 +90,7 @@ public static final String Proof
A review proof.
+
### Screen {#Screen}
```
public static final String Screen
@@ -81,6 +99,7 @@ public static final String Screen
Screen resolution or Web rendition.
+
### Thumbnail {#Thumbnail}
```
public static final String Thumbnail
@@ -89,3 +108,4 @@ public static final String Thumbnail
A simplified or reduced preview. Additional tokens can provide characteristics. The recommended order is thumbnail:format:size:colorspace.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpresourceevent/_index.md b/english/java/com.groupdocs.metadata.core/xmpresourceevent/_index.md
index 9d9ff6952f..4f21e7acf2 100644
--- a/english/java/com.groupdocs.metadata.core/xmpresourceevent/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpresourceevent/_index.md
@@ -13,34 +13,53 @@ public final class XmpResourceEvent extends XmpComplexType
```
Represents a high-level event that occurred in the processing of a resource.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpResourceEvent()](#XmpResourceEvent--) | Initializes a new instance of the XmpResourceEvent class. |
+| [XmpResourceEvent()](#XmpResourceEvent--) | Initializes a new instance of the
+XmpResourceEvent
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAction()](#getAction--) | Gets the action that occurred. |
-| [setAction(String value)](#setAction-java.lang.String-) | Sets the action that occurred. |
-| [getChanged()](#getChanged--) | Gets a semicolon-delimited list of the parts of the resource that were changed since the previous event history. |
-| [setChanged(String value)](#setChanged-java.lang.String-) | Sets a semicolon-delimited list of the parts of the resource that were changed since the previous event history. |
-| [getInstanceID()](#getInstanceID--) | Gets the value of the xmpMM:InstanceID property for the modified (output) resource. |
-| [setInstanceID(String value)](#setInstanceID-java.lang.String-) | Sets the value of the xmpMM:InstanceID property for the modified (output) resource. |
-| [getParameters()](#getParameters--) | Gets the additional description of the action. |
-| [setParameters(String value)](#setParameters-java.lang.String-) | Sets the additional description of the action. |
-| [getSoftwareAgent()](#getSoftwareAgent--) | Gets the software agent that performed the action. |
-| [setSoftwareAgent(String value)](#setSoftwareAgent-java.lang.String-) | Sets the software agent that performed the action. |
-| [getWhen()](#getWhen--) | Gets the timestamp of when the action occurred. |
-| [setWhen(Date value)](#setWhen-java.util.Date-) | Sets the timestamp of when the action occurred. |
+| [getAction()](#getAction--) | Gets the action that occurred.
+ |
+| [setAction(String value)](#setAction-java.lang.String-) | Sets the action that occurred.
+ |
+| [getChanged()](#getChanged--) | Gets a semicolon-delimited list of the parts of the resource that were changed since the previous event history.
+ |
+| [setChanged(String value)](#setChanged-java.lang.String-) | Sets a semicolon-delimited list of the parts of the resource that were changed since the previous event history.
+ |
+| [getInstanceID()](#getInstanceID--) | Gets the value of the xmpMM:InstanceID property for the modified (output) resource.
+ |
+| [setInstanceID(String value)](#setInstanceID-java.lang.String-) | Sets the value of the xmpMM:InstanceID property for the modified (output) resource.
+ |
+| [getParameters()](#getParameters--) | Gets the additional description of the action.
+ |
+| [setParameters(String value)](#setParameters-java.lang.String-) | Sets the additional description of the action.
+ |
+| [getSoftwareAgent()](#getSoftwareAgent--) | Gets the software agent that performed the action.
+ |
+| [setSoftwareAgent(String value)](#setSoftwareAgent-java.lang.String-) | Sets the software agent that performed the action.
+ |
+| [getWhen()](#getWhen--) | Gets the timestamp of when the action occurred.
+ |
+| [setWhen(Date value)](#setWhen-java.util.Date-) | Sets the timestamp of when the action occurred.
+ |
### XmpResourceEvent() {#XmpResourceEvent--}
```
public XmpResourceEvent()
```
-Initializes a new instance of the XmpResourceEvent class.
+Initializes a new instance of the
+XmpResourceEvent
+ class.
+
### getAction() {#getAction--}
```
@@ -50,8 +69,10 @@ public final String getAction()
Gets the action that occurred.
+
**Returns:**
-java.lang.String - The action that occurred. Defined values are: converted, copied, created, cropped, edited, filtered, formatted, version\_updated, printed, published, managed, produced, resized, saved. New values should be verbs in the past tense.
+java.lang.String - The action that occurred. Defined values are: converted, copied, created, cropped, edited, filtered, formatted, version_updated, printed, published, managed, produced, resized, saved. New values should be verbs in the past tense.
+
### setAction(String value) {#setAction-java.lang.String-}
```
public final void setAction(String value)
@@ -60,10 +81,12 @@ public final void setAction(String value)
Sets the action that occurred.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The action that occurred. Defined values are: converted, copied, created, cropped, edited, filtered, formatted, version\_updated, printed, published, managed, produced, resized, saved. New values should be verbs in the past tense. |
+| value | java.lang.String | The action that occurred. Defined values are: converted, copied, created, cropped, edited, filtered, formatted, version_updated, printed, published, managed, produced, resized, saved. New values should be verbs in the past tense.
+ |
### getChanged() {#getChanged--}
```
@@ -73,8 +96,10 @@ public final String getChanged()
Gets a semicolon-delimited list of the parts of the resource that were changed since the previous event history.
+
**Returns:**
java.lang.String - A semicolon-delimited list of the parts of the resource that were changed since the previous event history.
+
### setChanged(String value) {#setChanged-java.lang.String-}
```
public final void setChanged(String value)
@@ -83,10 +108,12 @@ public final void setChanged(String value)
Sets a semicolon-delimited list of the parts of the resource that were changed since the previous event history.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | A semicolon-delimited list of the parts of the resource that were changed since the previous event history. |
+| value | java.lang.String | A semicolon-delimited list of the parts of the resource that were changed since the previous event history.
+ |
### getInstanceID() {#getInstanceID--}
```
@@ -96,8 +123,10 @@ public final String getInstanceID()
Gets the value of the xmpMM:InstanceID property for the modified (output) resource.
+
**Returns:**
java.lang.String - The value of the xmpMM:InstanceID property for the modified (output) resource.
+
### setInstanceID(String value) {#setInstanceID-java.lang.String-}
```
public final void setInstanceID(String value)
@@ -106,10 +135,12 @@ public final void setInstanceID(String value)
Sets the value of the xmpMM:InstanceID property for the modified (output) resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value of the xmpMM:InstanceID property for the modified (output) resource. |
+| value | java.lang.String | The value of the xmpMM:InstanceID property for the modified (output) resource.
+ |
### getParameters() {#getParameters--}
```
@@ -119,8 +150,10 @@ public final String getParameters()
Gets the additional description of the action.
+
**Returns:**
java.lang.String - The Additional description of the action.
+
### setParameters(String value) {#setParameters-java.lang.String-}
```
public final void setParameters(String value)
@@ -129,10 +162,12 @@ public final void setParameters(String value)
Sets the additional description of the action.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Additional description of the action. |
+| value | java.lang.String | The Additional description of the action.
+ |
### getSoftwareAgent() {#getSoftwareAgent--}
```
@@ -142,8 +177,10 @@ public final String getSoftwareAgent()
Gets the software agent that performed the action.
+
**Returns:**
java.lang.String - The software agent that performed the action.
+
### setSoftwareAgent(String value) {#setSoftwareAgent-java.lang.String-}
```
public final void setSoftwareAgent(String value)
@@ -152,10 +189,12 @@ public final void setSoftwareAgent(String value)
Sets the software agent that performed the action.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The software agent that performed the action. |
+| value | java.lang.String | The software agent that performed the action.
+ |
### getWhen() {#getWhen--}
```
@@ -165,8 +204,10 @@ public final Date getWhen()
Gets the timestamp of when the action occurred.
+
**Returns:**
java.util.Date - The timestamp of when the action occurred. For events that create or write to a file, this should be the approximate modification time of the file.
+
### setWhen(Date value) {#setWhen-java.util.Date-}
```
public final void setWhen(Date value)
@@ -175,8 +216,10 @@ public final void setWhen(Date value)
Sets the timestamp of when the action occurred.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The timestamp of when the action occurred. For events that create or write to a file, this should be the approximate modification time of the file. |
+| value | java.util.Date | The timestamp of when the action occurred. For events that create or write to a file, this should be the approximate modification time of the file.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpresourceref/_index.md b/english/java/com.groupdocs.metadata.core/xmpresourceref/_index.md
index 949b8ca5ab..475349a0d4 100644
--- a/english/java/com.groupdocs.metadata.core/xmpresourceref/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpresourceref/_index.md
@@ -14,49 +14,89 @@ public final class XmpResourceRef extends XmpComplexType
Represents a multiple part reference to a resource.
- Used to indicate prior versions, originals of renditions, originals for derived documents, and so on.
+
+
+
+
+Used to indicate prior versions, originals of renditions, originals for derived documents, and so on.
+
+
+
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpResourceRef()](#XmpResourceRef--) | Initializes a new instance of the XmpResourceRef class. |
+| [XmpResourceRef()](#XmpResourceRef--) | Initializes a new instance of the
+XmpResourceRef
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getAlternatePaths()](#getAlternatePaths--) | Gets the referenced resource\\u2019s fallback file paths or URLs. |
-| [setAlternatePaths(String[] value)](#setAlternatePaths-java.lang.String---) | Sets the referenced resource\\u2019s fallback file paths or URLs. |
-| [getDocumentID()](#getDocumentID--) | Gets the value of the xmpMM:DocumentID property from the referenced resource. |
-| [setDocumentID(String value)](#setDocumentID-java.lang.String-) | Sets the value of the xmpMM:DocumentID property from the referenced resource. |
-| [getFilePath()](#getFilePath--) | Gets the referenced resource\\u2019s file path or URL. |
-| [setFilePath(String value)](#setFilePath-java.lang.String-) | Sets the referenced resource\\u2019s file path or URL. |
-| [getInstanceID()](#getInstanceID--) | Gets the value of the xmpMM:InstanceID property from the referenced resource. |
-| [setInstanceID(String value)](#setInstanceID-java.lang.String-) | Sets the value of the xmpMM:InstanceID property from the referenced resource. |
-| [getLastModifyDate()](#getLastModifyDate--) | Gets the value of stEvt:when for the last time the file was written. |
-| [setLastModifyDate(Date value)](#setLastModifyDate-java.util.Date-) | Sets the value of stEvt:when for the last time the file was written. |
-| [getManager()](#getManager--) | Gets the referenced resource\\u2019s xmpMM:Manager. |
-| [setManager(String value)](#setManager-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:Manager. |
-| [getManagerVariant()](#getManagerVariant--) | Gets the referenced resource\\u2019s xmpMM:Manager. |
-| [setManagerVariant(String value)](#setManagerVariant-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:Manager. |
-| [getManageTo()](#getManageTo--) | Gets the referenced resource\\u2019s xmpMM:ManageTo. |
-| [setManageTo(String value)](#setManageTo-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:ManageTo. |
-| [getManageUI()](#getManageUI--) | Gets the referenced resource\\u2019s xmpMM:ManageUI. |
-| [setManageUI(String value)](#setManageUI-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:ManageUI. |
-| [getPartMapping()](#getPartMapping--) | Gets the name or URI of a mapping function used to map the fromPart to the toPart. |
-| [setPartMapping(String value)](#setPartMapping-java.lang.String-) | Sets the name or URI of a mapping function used to map the fromPart to the toPart. |
-| [getRenditionClass()](#getRenditionClass--) | Gets the value of the xmpMM:RenditionClass property from the referenced resource. |
-| [setRenditionClass(String value)](#setRenditionClass-java.lang.String-) | Sets the value of the xmpMM:RenditionClass property from the referenced resource. |
-| [getRenditionParams()](#getRenditionParams--) | Gets the value of the xmpMM:RenditionParams property from the referenced resource. |
-| [setRenditionParams(String value)](#setRenditionParams-java.lang.String-) | Sets the value of the xmpMM:RenditionParams property from the referenced resource. |
-| [getVersionID()](#getVersionID--) | Gets the value of the xmpMM:RenditionParams property from the referenced resource. |
-| [setVersionID(String value)](#setVersionID-java.lang.String-) | Sets the value of the xmpMM:RenditionParams property from the referenced resource. |
+| [getAlternatePaths()](#getAlternatePaths--) | Gets the referenced resource\\u2019s fallback file paths or URLs.
+ |
+| [setAlternatePaths(String[] value)](#setAlternatePaths-java.lang.String---) | Sets the referenced resource\\u2019s fallback file paths or URLs.
+ |
+| [getDocumentID()](#getDocumentID--) | Gets the value of the xmpMM:DocumentID property from the referenced resource.
+ |
+| [setDocumentID(String value)](#setDocumentID-java.lang.String-) | Sets the value of the xmpMM:DocumentID property from the referenced resource.
+ |
+| [getFilePath()](#getFilePath--) | Gets the referenced resource\\u2019s file path or URL.
+ |
+| [setFilePath(String value)](#setFilePath-java.lang.String-) | Sets the referenced resource\\u2019s file path or URL.
+ |
+| [getInstanceID()](#getInstanceID--) | Gets the value of the xmpMM:InstanceID property from the referenced resource.
+ |
+| [setInstanceID(String value)](#setInstanceID-java.lang.String-) | Sets the value of the xmpMM:InstanceID property from the referenced resource.
+ |
+| [getLastModifyDate()](#getLastModifyDate--) | Gets the value of stEvt:when for the last time the file was written.
+ |
+| [setLastModifyDate(Date value)](#setLastModifyDate-java.util.Date-) | Sets the value of stEvt:when for the last time the file was written.
+ |
+| [getManager()](#getManager--) | Gets the referenced resource\\u2019s xmpMM:Manager.
+ |
+| [setManager(String value)](#setManager-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:Manager.
+ |
+| [getManagerVariant()](#getManagerVariant--) | Gets the referenced resource\\u2019s xmpMM:Manager.
+ |
+| [setManagerVariant(String value)](#setManagerVariant-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:Manager.
+ |
+| [getManageTo()](#getManageTo--) | Gets the referenced resource\\u2019s xmpMM:ManageTo.
+ |
+| [setManageTo(String value)](#setManageTo-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:ManageTo.
+ |
+| [getManageUI()](#getManageUI--) | Gets the referenced resource\\u2019s xmpMM:ManageUI.
+ |
+| [setManageUI(String value)](#setManageUI-java.lang.String-) | Sets the referenced resource\\u2019s xmpMM:ManageUI.
+ |
+| [getPartMapping()](#getPartMapping--) | Gets the name or URI of a mapping function used to map the fromPart to the toPart.
+ |
+| [setPartMapping(String value)](#setPartMapping-java.lang.String-) | Sets the name or URI of a mapping function used to map the fromPart to the toPart.
+ |
+| [getRenditionClass()](#getRenditionClass--) | Gets the value of the xmpMM:RenditionClass property from the referenced resource.
+ |
+| [setRenditionClass(String value)](#setRenditionClass-java.lang.String-) | Sets the value of the xmpMM:RenditionClass property from the referenced resource.
+ |
+| [getRenditionParams()](#getRenditionParams--) | Gets the value of the xmpMM:RenditionParams property from the referenced resource.
+ |
+| [setRenditionParams(String value)](#setRenditionParams-java.lang.String-) | Sets the value of the xmpMM:RenditionParams property from the referenced resource.
+ |
+| [getVersionID()](#getVersionID--) | Gets the value of the xmpMM:RenditionParams property from the referenced resource.
+ |
+| [setVersionID(String value)](#setVersionID-java.lang.String-) | Sets the value of the xmpMM:RenditionParams property from the referenced resource.
+ |
### XmpResourceRef() {#XmpResourceRef--}
```
public XmpResourceRef()
```
-Initializes a new instance of the XmpResourceRef class.
+Initializes a new instance of the
+XmpResourceRef
+ class.
+
### getAlternatePaths() {#getAlternatePaths--}
```
@@ -66,8 +106,10 @@ public final String[] getAlternatePaths()
Gets the referenced resource\\u2019s fallback file paths or URLs.
+
**Returns:**
java.lang.String[] - The referenced resource\\u2019s fallback file paths or URLs. The sequence order is the recommended order in attempting to locate the resource.
+
### setAlternatePaths(String[] value) {#setAlternatePaths-java.lang.String---}
```
public final void setAlternatePaths(String[] value)
@@ -76,10 +118,12 @@ public final void setAlternatePaths(String[] value)
Sets the referenced resource\\u2019s fallback file paths or URLs.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The referenced resource\\u2019s fallback file paths or URLs. The sequence order is the recommended order in attempting to locate the resource. |
+| value | java.lang.String[] | The referenced resource\\u2019s fallback file paths or URLs. The sequence order is the recommended order in attempting to locate the resource.
+ |
### getDocumentID() {#getDocumentID--}
```
@@ -89,8 +133,10 @@ public final String getDocumentID()
Gets the value of the xmpMM:DocumentID property from the referenced resource.
+
**Returns:**
java.lang.String - The value of the xmpMM:DocumentID property from the referenced resource.
+
### setDocumentID(String value) {#setDocumentID-java.lang.String-}
```
public final void setDocumentID(String value)
@@ -99,10 +145,12 @@ public final void setDocumentID(String value)
Sets the value of the xmpMM:DocumentID property from the referenced resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value of the xmpMM:DocumentID property from the referenced resource. |
+| value | java.lang.String | The value of the xmpMM:DocumentID property from the referenced resource.
+ |
### getFilePath() {#getFilePath--}
```
@@ -112,8 +160,10 @@ public final String getFilePath()
Gets the referenced resource\\u2019s file path or URL.
+
**Returns:**
java.lang.String - The referenced resource\\u2019s file path or URL.
+
### setFilePath(String value) {#setFilePath-java.lang.String-}
```
public final void setFilePath(String value)
@@ -122,10 +172,12 @@ public final void setFilePath(String value)
Sets the referenced resource\\u2019s file path or URL.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The referenced resource\\u2019s file path or URL. |
+| value | java.lang.String | The referenced resource\\u2019s file path or URL.
+ |
### getInstanceID() {#getInstanceID--}
```
@@ -135,8 +187,10 @@ public final String getInstanceID()
Gets the value of the xmpMM:InstanceID property from the referenced resource.
+
**Returns:**
java.lang.String - The value of the xmpMM:InstanceID property from the referenced resource.
+
### setInstanceID(String value) {#setInstanceID-java.lang.String-}
```
public final void setInstanceID(String value)
@@ -145,10 +199,12 @@ public final void setInstanceID(String value)
Sets the value of the xmpMM:InstanceID property from the referenced resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value of the xmpMM:InstanceID property from the referenced resource. |
+| value | java.lang.String | The value of the xmpMM:InstanceID property from the referenced resource.
+ |
### getLastModifyDate() {#getLastModifyDate--}
```
@@ -158,8 +214,10 @@ public final Date getLastModifyDate()
Gets the value of stEvt:when for the last time the file was written.
+
**Returns:**
java.util.Date - The value of stEvt:when for the last time the file was written.
+
### setLastModifyDate(Date value) {#setLastModifyDate-java.util.Date-}
```
public final void setLastModifyDate(Date value)
@@ -168,10 +226,12 @@ public final void setLastModifyDate(Date value)
Sets the value of stEvt:when for the last time the file was written.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The value of stEvt:when for the last time the file was written. |
+| value | java.util.Date | The value of stEvt:when for the last time the file was written.
+ |
### getManager() {#getManager--}
```
@@ -181,8 +241,10 @@ public final String getManager()
Gets the referenced resource\\u2019s xmpMM:Manager.
+
**Returns:**
java.lang.String - The referenced resource\\u2019s xmpMM:Manager.
+
### setManager(String value) {#setManager-java.lang.String-}
```
public final void setManager(String value)
@@ -191,10 +253,12 @@ public final void setManager(String value)
Sets the referenced resource\\u2019s xmpMM:Manager.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The referenced resource\\u2019s xmpMM:Manager. |
+| value | java.lang.String | The referenced resource\\u2019s xmpMM:Manager.
+ |
### getManagerVariant() {#getManagerVariant--}
```
@@ -204,8 +268,10 @@ public final String getManagerVariant()
Gets the referenced resource\\u2019s xmpMM:Manager.
+
**Returns:**
java.lang.String - The referenced resource\\u2019s xmpMM:Manager.
+
### setManagerVariant(String value) {#setManagerVariant-java.lang.String-}
```
public final void setManagerVariant(String value)
@@ -214,10 +280,12 @@ public final void setManagerVariant(String value)
Sets the referenced resource\\u2019s xmpMM:Manager.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The referenced resource\\u2019s xmpMM:Manager. |
+| value | java.lang.String | The referenced resource\\u2019s xmpMM:Manager.
+ |
### getManageTo() {#getManageTo--}
```
@@ -227,8 +295,10 @@ public final String getManageTo()
Gets the referenced resource\\u2019s xmpMM:ManageTo.
+
**Returns:**
java.lang.String - The referenced resource\\u2019s xmpMM:ManageTo.
+
### setManageTo(String value) {#setManageTo-java.lang.String-}
```
public final void setManageTo(String value)
@@ -237,10 +307,12 @@ public final void setManageTo(String value)
Sets the referenced resource\\u2019s xmpMM:ManageTo.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The referenced resource\\u2019s xmpMM:ManageTo. |
+| value | java.lang.String | The referenced resource\\u2019s xmpMM:ManageTo.
+ |
### getManageUI() {#getManageUI--}
```
@@ -250,8 +322,10 @@ public final String getManageUI()
Gets the referenced resource\\u2019s xmpMM:ManageUI.
+
**Returns:**
java.lang.String - The referenced resource\\u2019s xmpMM:ManageUI.
+
### setManageUI(String value) {#setManageUI-java.lang.String-}
```
public final void setManageUI(String value)
@@ -260,10 +334,12 @@ public final void setManageUI(String value)
Sets the referenced resource\\u2019s xmpMM:ManageUI.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The referenced resource\\u2019s xmpMM:ManageUI. |
+| value | java.lang.String | The referenced resource\\u2019s xmpMM:ManageUI.
+ |
### getPartMapping() {#getPartMapping--}
```
@@ -273,8 +349,10 @@ public final String getPartMapping()
Gets the name or URI of a mapping function used to map the fromPart to the toPart.
+
**Returns:**
java.lang.String - The name or URI of a mapping function used to map the fromPart to the toPart. The default for time mappings is "linear".
+
### setPartMapping(String value) {#setPartMapping-java.lang.String-}
```
public final void setPartMapping(String value)
@@ -283,10 +361,12 @@ public final void setPartMapping(String value)
Sets the name or URI of a mapping function used to map the fromPart to the toPart.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The name or URI of a mapping function used to map the fromPart to the toPart. The default for time mappings is "linear". |
+| value | java.lang.String | The name or URI of a mapping function used to map the fromPart to the toPart. The default for time mappings is "linear".
+ |
### getRenditionClass() {#getRenditionClass--}
```
@@ -296,8 +376,10 @@ public final String getRenditionClass()
Gets the value of the xmpMM:RenditionClass property from the referenced resource.
+
**Returns:**
java.lang.String - The value of the xmpMM:RenditionClass property from the referenced resource.
+
### setRenditionClass(String value) {#setRenditionClass-java.lang.String-}
```
public final void setRenditionClass(String value)
@@ -306,10 +388,12 @@ public final void setRenditionClass(String value)
Sets the value of the xmpMM:RenditionClass property from the referenced resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value of the xmpMM:RenditionClass property from the referenced resource. |
+| value | java.lang.String | The value of the xmpMM:RenditionClass property from the referenced resource.
+ |
### getRenditionParams() {#getRenditionParams--}
```
@@ -319,8 +403,10 @@ public final String getRenditionParams()
Gets the value of the xmpMM:RenditionParams property from the referenced resource.
+
**Returns:**
java.lang.String - The value of the xmpMM:RenditionParams property from the referenced resource.
+
### setRenditionParams(String value) {#setRenditionParams-java.lang.String-}
```
public final void setRenditionParams(String value)
@@ -329,10 +415,12 @@ public final void setRenditionParams(String value)
Sets the value of the xmpMM:RenditionParams property from the referenced resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value of the xmpMM:RenditionParams property from the referenced resource. |
+| value | java.lang.String | The value of the xmpMM:RenditionParams property from the referenced resource.
+ |
### getVersionID() {#getVersionID--}
```
@@ -342,8 +430,10 @@ public final String getVersionID()
Gets the value of the xmpMM:RenditionParams property from the referenced resource.
+
**Returns:**
java.lang.String - The value of the xmpMM:RenditionParams property from the referenced resource.
+
### setVersionID(String value) {#setVersionID-java.lang.String-}
```
public final void setVersionID(String value)
@@ -352,8 +442,10 @@ public final void setVersionID(String value)
Sets the value of the xmpMM:RenditionParams property from the referenced resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value of the xmpMM:RenditionParams property from the referenced resource. |
+| value | java.lang.String | The value of the xmpMM:RenditionParams property from the referenced resource.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmprightsmanagementpackage/_index.md b/english/java/com.groupdocs.metadata.core/xmprightsmanagementpackage/_index.md
index b7d74149c1..4bade1c9d5 100644
--- a/english/java/com.groupdocs.metadata.core/xmprightsmanagementpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmprightsmanagementpackage/_index.md
@@ -13,33 +13,51 @@ public final class XmpRightsManagementPackage extends XmpPackage
```
Represents XMP Rights Management namespace.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpRightsManagementPackage()](#XmpRightsManagementPackage--) | Initializes a new instance of the XmpRightsManagementPackage class. |
+| [XmpRightsManagementPackage()](#XmpRightsManagementPackage--) | Initializes a new instance of the
+XmpRightsManagementPackage
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCertificate()](#getCertificate--) | Gets the Web URL for a rights management certificate. |
-| [setCertificate(String value)](#setCertificate-java.lang.String-) | Sets the Web URL for a rights management certificate. |
-| [getMarked()](#getMarked--) | Gets a value indicating whether this is a rights-managed resource. |
-| [setMarked(Boolean value)](#setMarked-java.lang.Boolean-) | Sets a value indicating whether this is a rights-managed resource. |
-| [getOwners()](#getOwners--) | Gets the legal owners. |
-| [setOwners(String[] value)](#setOwners-java.lang.String---) | Sets the legal owners. |
-| [getUsageTerms()](#getUsageTerms--) | Gets the instructions on how the resource can be legally used, given in a variety of languages. |
-| [setUsageTerms(XmpLangAlt value)](#setUsageTerms-com.groupdocs.metadata.core.XmpLangAlt-) | Sets the instructions on how the resource can be legally used, given in a variety of languages. |
-| [getWebStatement()](#getWebStatement--) | Gets the Web URL for a statement of the ownership and usage rights for this resource. |
-| [setWebStatement(String value)](#setWebStatement-java.lang.String-) | Sets the Web URL for a statement of the ownership and usage rights for this resource. |
-| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property. |
+| [getCertificate()](#getCertificate--) | Gets the Web URL for a rights management certificate.
+ |
+| [setCertificate(String value)](#setCertificate-java.lang.String-) | Sets the Web URL for a rights management certificate.
+ |
+| [getMarked()](#getMarked--) | Gets a value indicating whether this is a rights-managed resource.
+ |
+| [setMarked(Boolean value)](#setMarked-java.lang.Boolean-) | Sets a value indicating whether this is a rights-managed resource.
+ |
+| [getOwners()](#getOwners--) | Gets the legal owners.
+ |
+| [setOwners(String[] value)](#setOwners-java.lang.String---) | Sets the legal owners.
+ |
+| [getUsageTerms()](#getUsageTerms--) | Gets the instructions on how the resource can be legally used, given in a variety of languages.
+ |
+| [setUsageTerms(XmpLangAlt value)](#setUsageTerms-com.groupdocs.metadata.core.XmpLangAlt-) | Sets the instructions on how the resource can be legally used, given in a variety of languages.
+ |
+| [getWebStatement()](#getWebStatement--) | Gets the Web URL for a statement of the ownership and usage rights for this resource.
+ |
+| [setWebStatement(String value)](#setWebStatement-java.lang.String-) | Sets the Web URL for a statement of the ownership and usage rights for this resource.
+ |
+| [set(String name, String value)](#set-java.lang.String-java.lang.String-) | Sets string property.
+ |
### XmpRightsManagementPackage() {#XmpRightsManagementPackage--}
```
public XmpRightsManagementPackage()
```
-Initializes a new instance of the XmpRightsManagementPackage class.
+Initializes a new instance of the
+XmpRightsManagementPackage
+ class.
+
### getCertificate() {#getCertificate--}
```
@@ -49,8 +67,10 @@ public final String getCertificate()
Gets the Web URL for a rights management certificate.
+
**Returns:**
java.lang.String - The Web URL for a rights management certificate.
+
### setCertificate(String value) {#setCertificate-java.lang.String-}
```
public final void setCertificate(String value)
@@ -59,10 +79,12 @@ public final void setCertificate(String value)
Sets the Web URL for a rights management certificate.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Web URL for a rights management certificate. |
+| value | java.lang.String | The Web URL for a rights management certificate.
+ |
### getMarked() {#getMarked--}
```
@@ -72,8 +94,10 @@ public final Boolean getMarked()
Gets a value indicating whether this is a rights-managed resource.
+
**Returns:**
java.lang.Boolean - true if the resource is rights-managed; otherwise false . When false, indicates that this is a public-domain resource. Omit if the state is unknown.
+
### setMarked(Boolean value) {#setMarked-java.lang.Boolean-}
```
public final void setMarked(Boolean value)
@@ -82,10 +106,12 @@ public final void setMarked(Boolean value)
Sets a value indicating whether this is a rights-managed resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Boolean | true if the resource is rights-managed; otherwise false . When false, indicates that this is a public-domain resource. Omit if the state is unknown. |
+| value | java.lang.Boolean | true if the resource is rights-managed; otherwise false . When false, indicates that this is a public-domain resource. Omit if the state is unknown.
+ |
### getOwners() {#getOwners--}
```
@@ -95,8 +121,10 @@ public final String[] getOwners()
Gets the legal owners.
+
**Returns:**
java.lang.String[] - The legal owners.
+
### setOwners(String[] value) {#setOwners-java.lang.String---}
```
public final void setOwners(String[] value)
@@ -105,10 +133,12 @@ public final void setOwners(String[] value)
Sets the legal owners.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String[] | The legal owners. |
+| value | java.lang.String[] | The legal owners.
+ |
### getUsageTerms() {#getUsageTerms--}
```
@@ -118,8 +148,10 @@ public final XmpLangAlt getUsageTerms()
Gets the instructions on how the resource can be legally used, given in a variety of languages.
+
**Returns:**
[XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) - The instructions on how the resource can be legally used, given in a variety of languages.
+
### setUsageTerms(XmpLangAlt value) {#setUsageTerms-com.groupdocs.metadata.core.XmpLangAlt-}
```
public final void setUsageTerms(XmpLangAlt value)
@@ -128,10 +160,12 @@ public final void setUsageTerms(XmpLangAlt value)
Sets the instructions on how the resource can be legally used, given in a variety of languages.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | The instructions on how the resource can be legally used, given in a variety of languages. |
+| value | [XmpLangAlt](../../com.groupdocs.metadata.core/xmplangalt) | The instructions on how the resource can be legally used, given in a variety of languages.
+ |
### getWebStatement() {#getWebStatement--}
```
@@ -141,8 +175,10 @@ public final String getWebStatement()
Gets the Web URL for a statement of the ownership and usage rights for this resource.
+
**Returns:**
java.lang.String - The Web URL for a statement of the ownership and usage rights for this resource.
+
### setWebStatement(String value) {#setWebStatement-java.lang.String-}
```
public final void setWebStatement(String value)
@@ -151,10 +187,12 @@ public final void setWebStatement(String value)
Sets the Web URL for a statement of the ownership and usage rights for this resource.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The Web URL for a statement of the ownership and usage rights for this resource. |
+| value | java.lang.String | The Web URL for a statement of the ownership and usage rights for this resource.
+ |
### set(String name, String value) {#set-java.lang.String-java.lang.String-}
```
@@ -164,9 +202,12 @@ public void set(String name, String value)
Sets string property.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| name | java.lang.String | XMP metadata property name. |
-| value | java.lang.String | XMP metadata property value. |
+| name | java.lang.String | XMP metadata property name.
+ |
+| value | java.lang.String | XMP metadata property value.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpschemes/_index.md b/english/java/com.groupdocs.metadata.core/xmpschemes/_index.md
index 6cbaa4ec11..4df1d010da 100644
--- a/english/java/com.groupdocs.metadata.core/xmpschemes/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpschemes/_index.md
@@ -13,30 +13,51 @@ public final class XmpSchemes
```
Provides access to known XMP schemes.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCameraRaw()](#getCameraRaw--) | Gets the Camera Raw scheme. |
-| [setCameraRaw(XmpCameraRawPackage value)](#setCameraRaw-com.groupdocs.metadata.core.XmpCameraRawPackage-) | Sets the Camera Raw scheme. |
-| [getDublinCore()](#getDublinCore--) | Gets the Dublin Core scheme. |
-| [setDublinCore(XmpDublinCorePackage value)](#setDublinCore-com.groupdocs.metadata.core.XmpDublinCorePackage-) | Sets the Dublin Core scheme. |
-| [getPagedText()](#getPagedText--) | Gets the PagedText scheme. |
-| [setPagedText(XmpPagedTextPackage value)](#setPagedText-com.groupdocs.metadata.core.XmpPagedTextPackage-) | Sets the PagedText scheme. |
-| [getPdf()](#getPdf--) | Gets the PDF scheme. |
-| [setPdf(XmpPdfPackage value)](#setPdf-com.groupdocs.metadata.core.XmpPdfPackage-) | Sets the PDF scheme. |
-| [getPhotoshop()](#getPhotoshop--) | Gets the Photoshop scheme. |
-| [setPhotoshop(XmpPhotoshopPackage value)](#setPhotoshop-com.groupdocs.metadata.core.XmpPhotoshopPackage-) | Sets the Photoshop scheme. |
-| [getXmpBasic()](#getXmpBasic--) | Gets the XmpBasic scheme. |
-| [setXmpBasic(XmpBasicPackage value)](#setXmpBasic-com.groupdocs.metadata.core.XmpBasicPackage-) | Sets the XmpBasic scheme. |
-| [getXmpDynamicMedia()](#getXmpDynamicMedia--) | Gets the XmpDynamicMedia scheme. |
-| [setXmpDynamicMedia(XmpDynamicMediaPackage value)](#setXmpDynamicMedia-com.groupdocs.metadata.core.XmpDynamicMediaPackage-) | Sets the XmpDynamicMedia scheme. |
-| [getXmpMediaManagement()](#getXmpMediaManagement--) | Gets the XmpMediaManagement schema. |
-| [setXmpMediaManagement(XmpMediaManagementPackage value)](#setXmpMediaManagement-com.groupdocs.metadata.core.XmpMediaManagementPackage-) | Sets the XmpMediaManagement schema. |
-| [getXmpRightsManagement()](#getXmpRightsManagement--) | Gets the XmpRightsManagement schema. |
-| [setXmpRightsManagement(XmpRightsManagementPackage value)](#setXmpRightsManagement-com.groupdocs.metadata.core.XmpRightsManagementPackage-) | Sets the XmpRightsManagement schema. |
-| [getBasicJobTicket()](#getBasicJobTicket--) | Gets the BasicJobTicket scheme. |
-| [setBasicJobTicket(XmpBasicJobTicketPackage value)](#setBasicJobTicket-com.groupdocs.metadata.core.XmpBasicJobTicketPackage-) | Sets the BasicJobTicket scheme. |
+| [getCameraRaw()](#getCameraRaw--) | Gets the Camera Raw scheme.
+ |
+| [setCameraRaw(XmpCameraRawPackage value)](#setCameraRaw-com.groupdocs.metadata.core.XmpCameraRawPackage-) | Sets the Camera Raw scheme.
+ |
+| [getDublinCore()](#getDublinCore--) | Gets the Dublin Core scheme.
+ |
+| [setDublinCore(XmpDublinCorePackage value)](#setDublinCore-com.groupdocs.metadata.core.XmpDublinCorePackage-) | Sets the Dublin Core scheme.
+ |
+| [getPagedText()](#getPagedText--) | Gets the PagedText scheme.
+ |
+| [setPagedText(XmpPagedTextPackage value)](#setPagedText-com.groupdocs.metadata.core.XmpPagedTextPackage-) | Sets the PagedText scheme.
+ |
+| [getPdf()](#getPdf--) | Gets the PDF scheme.
+ |
+| [setPdf(XmpPdfPackage value)](#setPdf-com.groupdocs.metadata.core.XmpPdfPackage-) | Sets the PDF scheme.
+ |
+| [getPhotoshop()](#getPhotoshop--) | Gets the Photoshop scheme.
+ |
+| [setPhotoshop(XmpPhotoshopPackage value)](#setPhotoshop-com.groupdocs.metadata.core.XmpPhotoshopPackage-) | Sets the Photoshop scheme.
+ |
+| [getXmpBasic()](#getXmpBasic--) | Gets the XmpBasic scheme.
+ |
+| [setXmpBasic(XmpBasicPackage value)](#setXmpBasic-com.groupdocs.metadata.core.XmpBasicPackage-) | Sets the XmpBasic scheme.
+ |
+| [getXmpDynamicMedia()](#getXmpDynamicMedia--) | Gets the XmpDynamicMedia scheme.
+ |
+| [setXmpDynamicMedia(XmpDynamicMediaPackage value)](#setXmpDynamicMedia-com.groupdocs.metadata.core.XmpDynamicMediaPackage-) | Sets the XmpDynamicMedia scheme.
+ |
+| [getXmpMediaManagement()](#getXmpMediaManagement--) | Gets the XmpMediaManagement schema.
+ |
+| [setXmpMediaManagement(XmpMediaManagementPackage value)](#setXmpMediaManagement-com.groupdocs.metadata.core.XmpMediaManagementPackage-) | Sets the XmpMediaManagement schema.
+ |
+| [getXmpRightsManagement()](#getXmpRightsManagement--) | Gets the XmpRightsManagement schema.
+ |
+| [setXmpRightsManagement(XmpRightsManagementPackage value)](#setXmpRightsManagement-com.groupdocs.metadata.core.XmpRightsManagementPackage-) | Sets the XmpRightsManagement schema.
+ |
+| [getBasicJobTicket()](#getBasicJobTicket--) | Gets the BasicJobTicket scheme.
+ |
+| [setBasicJobTicket(XmpBasicJobTicketPackage value)](#setBasicJobTicket-com.groupdocs.metadata.core.XmpBasicJobTicketPackage-) | Sets the BasicJobTicket scheme.
+ |
### getCameraRaw() {#getCameraRaw--}
```
public final XmpCameraRawPackage getCameraRaw()
@@ -45,8 +66,10 @@ public final XmpCameraRawPackage getCameraRaw()
Gets the Camera Raw scheme.
+
**Returns:**
[XmpCameraRawPackage](../../com.groupdocs.metadata.core/xmpcamerarawpackage) - The camera raw namespace.
+
### setCameraRaw(XmpCameraRawPackage value) {#setCameraRaw-com.groupdocs.metadata.core.XmpCameraRawPackage-}
```
public final void setCameraRaw(XmpCameraRawPackage value)
@@ -55,10 +78,12 @@ public final void setCameraRaw(XmpCameraRawPackage value)
Sets the Camera Raw scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpCameraRawPackage](../../com.groupdocs.metadata.core/xmpcamerarawpackage) | The camera raw namespace. |
+| value | [XmpCameraRawPackage](../../com.groupdocs.metadata.core/xmpcamerarawpackage) | The camera raw namespace.
+ |
### getDublinCore() {#getDublinCore--}
```
@@ -68,8 +93,10 @@ public final XmpDublinCorePackage getDublinCore()
Gets the Dublin Core scheme.
+
**Returns:**
[XmpDublinCorePackage](../../com.groupdocs.metadata.core/xmpdublincorepackage) - The dublin core namespace.
+
### setDublinCore(XmpDublinCorePackage value) {#setDublinCore-com.groupdocs.metadata.core.XmpDublinCorePackage-}
```
public final void setDublinCore(XmpDublinCorePackage value)
@@ -78,10 +105,12 @@ public final void setDublinCore(XmpDublinCorePackage value)
Sets the Dublin Core scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpDublinCorePackage](../../com.groupdocs.metadata.core/xmpdublincorepackage) | The dublin core namespace. |
+| value | [XmpDublinCorePackage](../../com.groupdocs.metadata.core/xmpdublincorepackage) | The dublin core namespace.
+ |
### getPagedText() {#getPagedText--}
```
@@ -91,8 +120,10 @@ public final XmpPagedTextPackage getPagedText()
Gets the PagedText scheme.
+
**Returns:**
[XmpPagedTextPackage](../../com.groupdocs.metadata.core/xmppagedtextpackage) - The paged text namespace.
+
### setPagedText(XmpPagedTextPackage value) {#setPagedText-com.groupdocs.metadata.core.XmpPagedTextPackage-}
```
public final void setPagedText(XmpPagedTextPackage value)
@@ -101,10 +132,12 @@ public final void setPagedText(XmpPagedTextPackage value)
Sets the PagedText scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpPagedTextPackage](../../com.groupdocs.metadata.core/xmppagedtextpackage) | The paged text namespace. |
+| value | [XmpPagedTextPackage](../../com.groupdocs.metadata.core/xmppagedtextpackage) | The paged text namespace.
+ |
### getPdf() {#getPdf--}
```
@@ -114,8 +147,10 @@ public final XmpPdfPackage getPdf()
Gets the PDF scheme.
+
**Returns:**
[XmpPdfPackage](../../com.groupdocs.metadata.core/xmppdfpackage) - The PDF namespace.
+
### setPdf(XmpPdfPackage value) {#setPdf-com.groupdocs.metadata.core.XmpPdfPackage-}
```
public final void setPdf(XmpPdfPackage value)
@@ -124,10 +159,12 @@ public final void setPdf(XmpPdfPackage value)
Sets the PDF scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpPdfPackage](../../com.groupdocs.metadata.core/xmppdfpackage) | The PDF namespace. |
+| value | [XmpPdfPackage](../../com.groupdocs.metadata.core/xmppdfpackage) | The PDF namespace.
+ |
### getPhotoshop() {#getPhotoshop--}
```
@@ -137,8 +174,10 @@ public final XmpPhotoshopPackage getPhotoshop()
Gets the Photoshop scheme.
+
**Returns:**
[XmpPhotoshopPackage](../../com.groupdocs.metadata.core/xmpphotoshoppackage) - The photoshop namespace.
+
### setPhotoshop(XmpPhotoshopPackage value) {#setPhotoshop-com.groupdocs.metadata.core.XmpPhotoshopPackage-}
```
public final void setPhotoshop(XmpPhotoshopPackage value)
@@ -147,10 +186,12 @@ public final void setPhotoshop(XmpPhotoshopPackage value)
Sets the Photoshop scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpPhotoshopPackage](../../com.groupdocs.metadata.core/xmpphotoshoppackage) | The photoshop namespace. |
+| value | [XmpPhotoshopPackage](../../com.groupdocs.metadata.core/xmpphotoshoppackage) | The photoshop namespace.
+ |
### getXmpBasic() {#getXmpBasic--}
```
@@ -160,8 +201,10 @@ public final XmpBasicPackage getXmpBasic()
Gets the XmpBasic scheme.
+
**Returns:**
[XmpBasicPackage](../../com.groupdocs.metadata.core/xmpbasicpackage) - The XMP basic namespace.
+
### setXmpBasic(XmpBasicPackage value) {#setXmpBasic-com.groupdocs.metadata.core.XmpBasicPackage-}
```
public final void setXmpBasic(XmpBasicPackage value)
@@ -170,10 +213,12 @@ public final void setXmpBasic(XmpBasicPackage value)
Sets the XmpBasic scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpBasicPackage](../../com.groupdocs.metadata.core/xmpbasicpackage) | The XMP basic namespace. |
+| value | [XmpBasicPackage](../../com.groupdocs.metadata.core/xmpbasicpackage) | The XMP basic namespace.
+ |
### getXmpDynamicMedia() {#getXmpDynamicMedia--}
```
@@ -183,8 +228,10 @@ public final XmpDynamicMediaPackage getXmpDynamicMedia()
Gets the XmpDynamicMedia scheme.
+
**Returns:**
[XmpDynamicMediaPackage](../../com.groupdocs.metadata.core/xmpdynamicmediapackage) - The XMP dynamic media namespace.
+
### setXmpDynamicMedia(XmpDynamicMediaPackage value) {#setXmpDynamicMedia-com.groupdocs.metadata.core.XmpDynamicMediaPackage-}
```
public final void setXmpDynamicMedia(XmpDynamicMediaPackage value)
@@ -193,10 +240,12 @@ public final void setXmpDynamicMedia(XmpDynamicMediaPackage value)
Sets the XmpDynamicMedia scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpDynamicMediaPackage](../../com.groupdocs.metadata.core/xmpdynamicmediapackage) | The XMP dynamic media namespace. |
+| value | [XmpDynamicMediaPackage](../../com.groupdocs.metadata.core/xmpdynamicmediapackage) | The XMP dynamic media namespace.
+ |
### getXmpMediaManagement() {#getXmpMediaManagement--}
```
@@ -206,8 +255,10 @@ public final XmpMediaManagementPackage getXmpMediaManagement()
Gets the XmpMediaManagement schema.
+
**Returns:**
[XmpMediaManagementPackage](../../com.groupdocs.metadata.core/xmpmediamanagementpackage) - The XMP media management namespace.
+
### setXmpMediaManagement(XmpMediaManagementPackage value) {#setXmpMediaManagement-com.groupdocs.metadata.core.XmpMediaManagementPackage-}
```
public final void setXmpMediaManagement(XmpMediaManagementPackage value)
@@ -216,10 +267,12 @@ public final void setXmpMediaManagement(XmpMediaManagementPackage value)
Sets the XmpMediaManagement schema.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpMediaManagementPackage](../../com.groupdocs.metadata.core/xmpmediamanagementpackage) | The XMP media management namespace. |
+| value | [XmpMediaManagementPackage](../../com.groupdocs.metadata.core/xmpmediamanagementpackage) | The XMP media management namespace.
+ |
### getXmpRightsManagement() {#getXmpRightsManagement--}
```
@@ -229,8 +282,10 @@ public final XmpRightsManagementPackage getXmpRightsManagement()
Gets the XmpRightsManagement schema.
+
**Returns:**
[XmpRightsManagementPackage](../../com.groupdocs.metadata.core/xmprightsmanagementpackage) - The XMP rights management namespace.
+
### setXmpRightsManagement(XmpRightsManagementPackage value) {#setXmpRightsManagement-com.groupdocs.metadata.core.XmpRightsManagementPackage-}
```
public final void setXmpRightsManagement(XmpRightsManagementPackage value)
@@ -239,10 +294,12 @@ public final void setXmpRightsManagement(XmpRightsManagementPackage value)
Sets the XmpRightsManagement schema.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpRightsManagementPackage](../../com.groupdocs.metadata.core/xmprightsmanagementpackage) | The XMP rights management namespace. |
+| value | [XmpRightsManagementPackage](../../com.groupdocs.metadata.core/xmprightsmanagementpackage) | The XMP rights management namespace.
+ |
### getBasicJobTicket() {#getBasicJobTicket--}
```
@@ -252,8 +309,10 @@ public final XmpBasicJobTicketPackage getBasicJobTicket()
Gets the BasicJobTicket scheme.
+
**Returns:**
[XmpBasicJobTicketPackage](../../com.groupdocs.metadata.core/xmpbasicjobticketpackage) - The XMP job ticket namespace.
+
### setBasicJobTicket(XmpBasicJobTicketPackage value) {#setBasicJobTicket-com.groupdocs.metadata.core.XmpBasicJobTicketPackage-}
```
public final void setBasicJobTicket(XmpBasicJobTicketPackage value)
@@ -262,8 +321,10 @@ public final void setBasicJobTicket(XmpBasicJobTicketPackage value)
Sets the BasicJobTicket scheme.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpBasicJobTicketPackage](../../com.groupdocs.metadata.core/xmpbasicjobticketpackage) | The XMP job ticket namespace. |
+| value | [XmpBasicJobTicketPackage](../../com.groupdocs.metadata.core/xmpbasicjobticketpackage) | The XMP job ticket namespace.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmptext/_index.md b/english/java/com.groupdocs.metadata.core/xmptext/_index.md
index de9f83bae2..588217267f 100644
--- a/english/java/com.groupdocs.metadata.core/xmptext/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmptext/_index.md
@@ -13,29 +13,39 @@ public class XmpText extends XmpValueBase
```
Represents XMP Text basic type.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpText(String value)](#XmpText-java.lang.String-) | Initializes a new instance of the XmpText class. |
+| [XmpText(String value)](#XmpText-java.lang.String-) | Initializes a new instance of the
+XmpText
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getValue()](#getValue--) | Gets the value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [getValue()](#getValue--) | Gets the value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### XmpText(String value) {#XmpText-java.lang.String-}
```
public XmpText(String value)
```
-Initializes a new instance of the XmpText class.
+Initializes a new instance of the
+XmpText
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The value. |
+| value | java.lang.String | The value.
+ |
### getValue() {#getValue--}
```
@@ -45,8 +55,10 @@ public final String getValue()
Gets the value.
+
**Returns:**
java.lang.String - Text value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public String getXmpRepresentation()
@@ -55,5 +67,7 @@ public String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpthumbnail/_index.md b/english/java/com.groupdocs.metadata.core/xmpthumbnail/_index.md
index 36f908c3a3..5724f0f062 100644
--- a/english/java/com.groupdocs.metadata.core/xmpthumbnail/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpthumbnail/_index.md
@@ -13,32 +13,51 @@ public final class XmpThumbnail extends XmpComplexType
```
Represents a thumbnail image for a file.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpThumbnail()](#XmpThumbnail--) | Initializes a new instance of the XmpThumbnail class. |
-| [XmpThumbnail(int width, int height)](#XmpThumbnail-int-int-) | Initializes a new instance of the XmpThumbnail class. |
+| [XmpThumbnail()](#XmpThumbnail--) | Initializes a new instance of the
+XmpThumbnail
+ class.
+ |
+| [XmpThumbnail(int width, int height)](#XmpThumbnail-int-int-) | Initializes a new instance of the
+XmpThumbnail
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getWidth()](#getWidth--) | Gets the image width in pixels. |
-| [setWidth(Integer value)](#setWidth-java.lang.Integer-) | Sets the image width in pixels. |
-| [getHeight()](#getHeight--) | Gets the image height in pixels. |
-| [setHeight(Integer value)](#setHeight-java.lang.Integer-) | Sets the image height in pixels. |
-| [getImageBase64()](#getImageBase64--) | Gets the full thumbnail image data, converted to base 64 notation. |
-| [setImageBase64(String value)](#setImageBase64-java.lang.String-) | Sets the full thumbnail image data, converted to base 64 notation. |
-| [getImageData()](#getImageData--) | Gets the image data. |
-| [getFormat()](#getFormat--) | Gets the image format. |
-| [setFormat(String value)](#setFormat-java.lang.String-) | Sets the image format. |
+| [getWidth()](#getWidth--) | Gets the image width in pixels.
+ |
+| [setWidth(Integer value)](#setWidth-java.lang.Integer-) | Sets the image width in pixels.
+ |
+| [getHeight()](#getHeight--) | Gets the image height in pixels.
+ |
+| [setHeight(Integer value)](#setHeight-java.lang.Integer-) | Sets the image height in pixels.
+ |
+| [getImageBase64()](#getImageBase64--) | Gets the full thumbnail image data, converted to base 64 notation.
+ |
+| [setImageBase64(String value)](#setImageBase64-java.lang.String-) | Sets the full thumbnail image data, converted to base 64 notation.
+ |
+| [getImageData()](#getImageData--) | Gets the image data.
+ |
+| [getFormat()](#getFormat--) | Gets the image format.
+ |
+| [setFormat(String value)](#setFormat-java.lang.String-) | Sets the image format.
+ |
### XmpThumbnail() {#XmpThumbnail--}
```
public XmpThumbnail()
```
-Initializes a new instance of the XmpThumbnail class.
+Initializes a new instance of the
+XmpThumbnail
+ class.
+
### XmpThumbnail(int width, int height) {#XmpThumbnail-int-int-}
```
@@ -46,13 +65,18 @@ public XmpThumbnail(int width, int height)
```
-Initializes a new instance of the XmpThumbnail class.
+Initializes a new instance of the
+XmpThumbnail
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| width | int | The width. |
-| height | int | The height. |
+| width | int | The width.
+ |
+| height | int | The height.
+ |
### getWidth() {#getWidth--}
```
@@ -62,8 +86,10 @@ public final Integer getWidth()
Gets the image width in pixels.
+
**Returns:**
java.lang.Integer - The thumbnail width.
+
### setWidth(Integer value) {#setWidth-java.lang.Integer-}
```
public final void setWidth(Integer value)
@@ -72,10 +98,12 @@ public final void setWidth(Integer value)
Sets the image width in pixels.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The thumbnail width. |
+| value | java.lang.Integer | The thumbnail width.
+ |
### getHeight() {#getHeight--}
```
@@ -85,8 +113,10 @@ public final Integer getHeight()
Gets the image height in pixels.
+
**Returns:**
java.lang.Integer - The thumbnail height.
+
### setHeight(Integer value) {#setHeight-java.lang.Integer-}
```
public final void setHeight(Integer value)
@@ -95,10 +125,12 @@ public final void setHeight(Integer value)
Sets the image height in pixels.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The thumbnail height. |
+| value | java.lang.Integer | The thumbnail height.
+ |
### getImageBase64() {#getImageBase64--}
```
@@ -108,8 +140,10 @@ public final String getImageBase64()
Gets the full thumbnail image data, converted to base 64 notation.
+
**Returns:**
java.lang.String - The full thumbnail image data, converted to base 64 notation.
+
### setImageBase64(String value) {#setImageBase64-java.lang.String-}
```
public final void setImageBase64(String value)
@@ -118,10 +152,12 @@ public final void setImageBase64(String value)
Sets the full thumbnail image data, converted to base 64 notation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The full thumbnail image data, converted to base 64 notation. |
+| value | java.lang.String | The full thumbnail image data, converted to base 64 notation.
+ |
### getImageData() {#getImageData--}
```
@@ -131,8 +167,10 @@ public final byte[] getImageData()
Gets the image data.
+
**Returns:**
byte[] - The image data.
+
### getFormat() {#getFormat--}
```
public final String getFormat()
@@ -141,8 +179,10 @@ public final String getFormat()
Gets the image format. Defined value: JPEG.
+
**Returns:**
java.lang.String - The thumbnail format.
+
### setFormat(String value) {#setFormat-java.lang.String-}
```
public final void setFormat(String value)
@@ -151,8 +191,10 @@ public final void setFormat(String value)
Sets the image format. Defined value: JPEG.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The thumbnail format. |
+| value | java.lang.String | The thumbnail format.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmptime/_index.md b/english/java/com.groupdocs.metadata.core/xmptime/_index.md
index e07f1078c1..b478184699 100644
--- a/english/java/com.groupdocs.metadata.core/xmptime/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmptime/_index.md
@@ -13,27 +13,41 @@ public final class XmpTime extends XmpComplexType
```
Representation of a time value in seconds.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpTime()](#XmpTime--) | Initializes a new instance of the XmpTime class. |
-| [XmpTime(XmpRational scale, int value)](#XmpTime-com.groupdocs.metadata.core.XmpRational-int-) | Initializes a new instance of the XmpTime class. |
+| [XmpTime()](#XmpTime--) | Initializes a new instance of the
+XmpTime
+ class.
+ |
+| [XmpTime(XmpRational scale, int value)](#XmpTime-com.groupdocs.metadata.core.XmpRational-int-) | Initializes a new instance of the
+XmpTime
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getScale()](#getScale--) | Gets the scale for the time value. |
-| [setScale(XmpRational value)](#setScale-com.groupdocs.metadata.core.XmpRational-) | Sets the scale for the time value. |
-| [getValue()](#getValue--) | Gets the time value in the specified scale. |
-| [setValue(Integer value)](#setValue-java.lang.Integer-) | Sets the time value in the specified scale. |
+| [getScale()](#getScale--) | Gets the scale for the time value.
+ |
+| [setScale(XmpRational value)](#setScale-com.groupdocs.metadata.core.XmpRational-) | Sets the scale for the time value.
+ |
+| [getValue()](#getValue--) | Gets the time value in the specified scale.
+ |
+| [setValue(Integer value)](#setValue-java.lang.Integer-) | Sets the time value in the specified scale.
+ |
### XmpTime() {#XmpTime--}
```
public XmpTime()
```
-Initializes a new instance of the XmpTime class.
+Initializes a new instance of the
+XmpTime
+ class.
+
### XmpTime(XmpRational scale, int value) {#XmpTime-com.groupdocs.metadata.core.XmpRational-int-}
```
@@ -41,13 +55,18 @@ public XmpTime(XmpRational scale, int value)
```
-Initializes a new instance of the XmpTime class.
+Initializes a new instance of the
+XmpTime
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| scale | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The scale. |
-| value | int | The value. |
+| scale | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The scale.
+ |
+| value | int | The value.
+ |
### getScale() {#getScale--}
```
@@ -57,10 +76,12 @@ public final XmpRational getScale()
Gets the scale for the time value.
+
**Returns:**
-[XmpRational](../../com.groupdocs.metadata.core/xmprational) - The scale for the time value. For NTSC, use 1001/30000, or the less accurate 100/2997.
+[XmpRational](../../com.groupdocs.metadata.core/xmprational) - The scale for the time value. For NTSC, use 1001/30000, or the less accurate 100/2997.
For PAL, use 1/25.
+
### setScale(XmpRational value) {#setScale-com.groupdocs.metadata.core.XmpRational-}
```
public final void setScale(XmpRational value)
@@ -69,12 +90,14 @@ public final void setScale(XmpRational value)
Sets the scale for the time value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The scale for the time value. For NTSC, use 1001/30000, or the less accurate 100/2997.
+| value | [XmpRational](../../com.groupdocs.metadata.core/xmprational) | The scale for the time value. For NTSC, use 1001/30000, or the less accurate 100/2997.
- For PAL, use 1/25. |
+ For PAL, use 1/25.
+ |
### getValue() {#getValue--}
```
@@ -84,8 +107,10 @@ public final Integer getValue()
Gets the time value in the specified scale.
+
**Returns:**
java.lang.Integer - The time value in the specified scale.
+
### setValue(Integer value) {#setValue-java.lang.Integer-}
```
public final void setValue(Integer value)
@@ -94,8 +119,10 @@ public final void setValue(Integer value)
Sets the time value in the specified scale.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.Integer | The time value in the specified scale. |
+| value | java.lang.Integer | The time value in the specified scale.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmptimecode/_index.md b/english/java/com.groupdocs.metadata.core/xmptimecode/_index.md
index 095479a580..00e0234c93 100644
--- a/english/java/com.groupdocs.metadata.core/xmptimecode/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmptimecode/_index.md
@@ -13,28 +13,43 @@ public final class XmpTimecode extends XmpComplexType
```
Represents a timecode value in a video.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpTimecode()](#XmpTimecode--) | Initializes a new instance of the XmpTimecode class. |
-| [XmpTimecode(XmpTimeFormat format, String timeValue)](#XmpTimecode-com.groupdocs.metadata.core.XmpTimeFormat-java.lang.String-) | Initializes a new instance of the XmpTimecode class. |
+| [XmpTimecode()](#XmpTimecode--) | Initializes a new instance of the
+XmpTimecode
+ class.
+ |
+| [XmpTimecode(XmpTimeFormat format, String timeValue)](#XmpTimecode-com.groupdocs.metadata.core.XmpTimeFormat-java.lang.String-) | Initializes a new instance of the
+XmpTimecode
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getTimeFormat()](#getTimeFormat--) | Gets the format used in the time value. |
-| [setTimeFormat(String value)](#setTimeFormat-java.lang.String-) | Sets the format used in the time value. |
-| [getTimeValue()](#getTimeValue--) | Gets the time value in the specified format. |
-| [setTimeValue(String value)](#setTimeValue-java.lang.String-) | Sets the time value in the specified format. |
-| [setTimeFormat(XmpTimeFormat timeFormat)](#setTimeFormat-com.groupdocs.metadata.core.XmpTimeFormat-) | Sets the time format. |
+| [getTimeFormat()](#getTimeFormat--) | Gets the format used in the time value.
+ |
+| [setTimeFormat(String value)](#setTimeFormat-java.lang.String-) | Sets the format used in the time value.
+ |
+| [getTimeValue()](#getTimeValue--) | Gets the time value in the specified format.
+ |
+| [setTimeValue(String value)](#setTimeValue-java.lang.String-) | Sets the time value in the specified format.
+ |
+| [setTimeFormat(XmpTimeFormat timeFormat)](#setTimeFormat-com.groupdocs.metadata.core.XmpTimeFormat-) | Sets the time format.
+ |
### XmpTimecode() {#XmpTimecode--}
```
public XmpTimecode()
```
-Initializes a new instance of the XmpTimecode class.
+Initializes a new instance of the
+XmpTimecode
+ class.
+
### XmpTimecode(XmpTimeFormat format, String timeValue) {#XmpTimecode-com.groupdocs.metadata.core.XmpTimeFormat-java.lang.String-}
```
@@ -42,13 +57,18 @@ public XmpTimecode(XmpTimeFormat format, String timeValue)
```
-Initializes a new instance of the XmpTimecode class.
+Initializes a new instance of the
+XmpTimecode
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| format | [XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) | Time format. |
-| timeValue | java.lang.String | Time value. |
+| format | [XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) | Time format.
+ |
+| timeValue | java.lang.String | Time value.
+ |
### getTimeFormat() {#getTimeFormat--}
```
@@ -58,8 +78,10 @@ public final String getTimeFormat()
Gets the format used in the time value.
+
**Returns:**
java.lang.String - The format used in the timeValue. One of: 24Timecode, 25Timecode, 2997DropTimecode (semicolon delimiter), 2997NonDropTimecode, 30Timecode, 50Timecode, 5994DropTimecode (semicolon delimiter), 5994NonDropTimecode, 60Timecode, 23976Timecode.
+
### setTimeFormat(String value) {#setTimeFormat-java.lang.String-}
```
public final void setTimeFormat(String value)
@@ -68,10 +90,12 @@ public final void setTimeFormat(String value)
Sets the format used in the time value.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The format used in the timeValue. One of: 24Timecode, 25Timecode, 2997DropTimecode (semicolon delimiter), 2997NonDropTimecode, 30Timecode, 50Timecode, 5994DropTimecode (semicolon delimiter), 5994NonDropTimecode, 60Timecode, 23976Timecode. |
+| value | java.lang.String | The format used in the timeValue. One of: 24Timecode, 25Timecode, 2997DropTimecode (semicolon delimiter), 2997NonDropTimecode, 30Timecode, 50Timecode, 5994DropTimecode (semicolon delimiter), 5994NonDropTimecode, 60Timecode, 23976Timecode.
+ |
### getTimeValue() {#getTimeValue--}
```
@@ -81,8 +105,10 @@ public final String getTimeValue()
Gets the time value in the specified format. Time values use a colon delimiter in all formats except 2997drop and 5994drop, which uses a semicolon. The four fields indicate hours, minutes, seconds, and frames: hh:mm:ss:ff
+
**Returns:**
java.lang.String - The time value in the specified format. Time values use a colon delimiter in all formats except 2997drop and 5994drop, which uses a semicolon. The four fields indicate hours, minutes, seconds, and frames: hh:mm:ss:ff
+
### setTimeValue(String value) {#setTimeValue-java.lang.String-}
```
public final void setTimeValue(String value)
@@ -91,10 +117,12 @@ public final void setTimeValue(String value)
Sets the time value in the specified format. Time values use a colon delimiter in all formats except 2997drop and 5994drop, which uses a semicolon. The four fields indicate hours, minutes, seconds, and frames: hh:mm:ss:ff
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The time value in the specified format. Time values use a colon delimiter in all formats except 2997drop and 5994drop, which uses a semicolon. The four fields indicate hours, minutes, seconds, and frames: hh:mm:ss:ff |
+| value | java.lang.String | The time value in the specified format. Time values use a colon delimiter in all formats except 2997drop and 5994drop, which uses a semicolon. The four fields indicate hours, minutes, seconds, and frames: hh:mm:ss:ff
+ |
### setTimeFormat(XmpTimeFormat timeFormat) {#setTimeFormat-com.groupdocs.metadata.core.XmpTimeFormat-}
```
@@ -104,8 +132,10 @@ public final void setTimeFormat(XmpTimeFormat timeFormat)
Sets the time format.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| timeFormat | [XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) | The time format. |
+| timeFormat | [XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) | The time format.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmptimeformat/_index.md b/english/java/com.groupdocs.metadata.core/xmptimeformat/_index.md
index cce8a8d257..4805636827 100644
--- a/english/java/com.groupdocs.metadata.core/xmptimeformat/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmptimeformat/_index.md
@@ -12,21 +12,34 @@ java.lang.Object, com.groupdocs.metadata.core.XmpClosedChoice
public final class XmpTimeFormat extends XmpClosedChoice
```
-Represents time format in XmpTimecode .
+Represents time format in
+XmpTimecode
+.
+
## Methods
| Method | Description |
| --- | --- |
-| [getTimecode24()](#getTimecode24--) | Gets 24Timecode. |
-| [getTimecode25()](#getTimecode25--) | Gets 25Timecode. |
-| [getDropTimecode2997()](#getDropTimecode2997--) | Gets 2997DropTimecode. |
-| [getNonDropTimecode2997()](#getNonDropTimecode2997--) | Gets 2997NonDropTimecode. |
-| [getTimecode30()](#getTimecode30--) | Gets 30Timecode. |
-| [getTimecode50()](#getTimecode50--) | Gets 50Timecode. |
-| [getDropTimecode5994()](#getDropTimecode5994--) | Gets 5994DropTimecode. |
-| [getNonDropTimecode5994()](#getNonDropTimecode5994--) | Gets 5994NonDropTimecode. |
-| [getTimecode60()](#getTimecode60--) | Gets 60Timecode. |
-| [getTimecode23976()](#getTimecode23976--) | Gets 23976Timecode. |
+| [getTimecode24()](#getTimecode24--) | Gets 24Timecode.
+ |
+| [getTimecode25()](#getTimecode25--) | Gets 25Timecode.
+ |
+| [getDropTimecode2997()](#getDropTimecode2997--) | Gets 2997DropTimecode.
+ |
+| [getNonDropTimecode2997()](#getNonDropTimecode2997--) | Gets 2997NonDropTimecode.
+ |
+| [getTimecode30()](#getTimecode30--) | Gets 30Timecode.
+ |
+| [getTimecode50()](#getTimecode50--) | Gets 50Timecode.
+ |
+| [getDropTimecode5994()](#getDropTimecode5994--) | Gets 5994DropTimecode.
+ |
+| [getNonDropTimecode5994()](#getNonDropTimecode5994--) | Gets 5994NonDropTimecode.
+ |
+| [getTimecode60()](#getTimecode60--) | Gets 60Timecode.
+ |
+| [getTimecode23976()](#getTimecode23976--) | Gets 23976Timecode.
+ |
### getTimecode24() {#getTimecode24--}
```
public static XmpTimeFormat getTimecode24()
@@ -35,8 +48,10 @@ public static XmpTimeFormat getTimecode24()
Gets 24Timecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 24Timecode.
+
### getTimecode25() {#getTimecode25--}
```
public static XmpTimeFormat getTimecode25()
@@ -45,8 +60,10 @@ public static XmpTimeFormat getTimecode25()
Gets 25Timecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 25Timecode.
+
### getDropTimecode2997() {#getDropTimecode2997--}
```
public static XmpTimeFormat getDropTimecode2997()
@@ -55,8 +72,10 @@ public static XmpTimeFormat getDropTimecode2997()
Gets 2997DropTimecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The drop timecode2997.
+
### getNonDropTimecode2997() {#getNonDropTimecode2997--}
```
public static XmpTimeFormat getNonDropTimecode2997()
@@ -65,6 +84,7 @@ public static XmpTimeFormat getNonDropTimecode2997()
Gets 2997NonDropTimecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat)
### getTimecode30() {#getTimecode30--}
@@ -75,8 +95,10 @@ public static XmpTimeFormat getTimecode30()
Gets 30Timecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 30Timecode.
+
### getTimecode50() {#getTimecode50--}
```
public static XmpTimeFormat getTimecode50()
@@ -85,8 +107,10 @@ public static XmpTimeFormat getTimecode50()
Gets 50Timecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 50Timecode.
+
### getDropTimecode5994() {#getDropTimecode5994--}
```
public static XmpTimeFormat getDropTimecode5994()
@@ -95,8 +119,10 @@ public static XmpTimeFormat getDropTimecode5994()
Gets 5994DropTimecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 5994DropTimecode.
+
### getNonDropTimecode5994() {#getNonDropTimecode5994--}
```
public static XmpTimeFormat getNonDropTimecode5994()
@@ -105,8 +131,10 @@ public static XmpTimeFormat getNonDropTimecode5994()
Gets 5994NonDropTimecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 5994NonDropTimecode.
+
### getTimecode60() {#getTimecode60--}
```
public static XmpTimeFormat getTimecode60()
@@ -115,8 +143,10 @@ public static XmpTimeFormat getTimecode60()
Gets 60Timecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 60Timecode.
+
### getTimecode23976() {#getTimecode23976--}
```
public static XmpTimeFormat getTimecode23976()
@@ -125,5 +155,7 @@ public static XmpTimeFormat getTimecode23976()
Gets 23976Timecode.
+
**Returns:**
[XmpTimeFormat](../../com.groupdocs.metadata.core/xmptimeformat) - The 23976Timecode.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmptrailerpi/_index.md b/english/java/com.groupdocs.metadata.core/xmptrailerpi/_index.md
index e9a7c37b09..e2e9ae8397 100644
--- a/english/java/com.groupdocs.metadata.core/xmptrailerpi/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmptrailerpi/_index.md
@@ -17,33 +17,51 @@ public final class XmpTrailerPI implements IXmpType
Represents XMP trailer processing instruction.
---------------------
+
+
+*** ** * ** ***
The end="w" or end="r" portion shall be used by packet scanning processors to determine whether the XMP may be modified in-place.
+
+
+
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpTrailerPI(boolean isWritable)](#XmpTrailerPI-boolean-) | Initializes a new instance of the XmpTrailerPI class. |
-| [XmpTrailerPI()](#XmpTrailerPI--) | Initializes a new instance of the XmpTrailerPI class. |
+| [XmpTrailerPI(boolean isWritable)](#XmpTrailerPI-boolean-) | Initializes a new instance of the
+XmpTrailerPI
+ class.
+ |
+| [XmpTrailerPI()](#XmpTrailerPI--) | Initializes a new instance of the
+XmpTrailerPI
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [isWritable()](#isWritable--) | Indicates whether form may be modified in-place. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation. |
+| [isWritable()](#isWritable--) | Indicates whether form may be modified in-place.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Converts XMP value to the xml representation.
+ |
### XmpTrailerPI(boolean isWritable) {#XmpTrailerPI-boolean-}
```
public XmpTrailerPI(boolean isWritable)
```
-Initializes a new instance of the XmpTrailerPI class.
+Initializes a new instance of the
+XmpTrailerPI
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| isWritable | boolean | Indicates whether trailer is writable. |
+| isWritable | boolean | Indicates whether trailer is writable.
+ |
### XmpTrailerPI() {#XmpTrailerPI--}
```
@@ -51,7 +69,10 @@ public XmpTrailerPI()
```
-Initializes a new instance of the XmpTrailerPI class.
+Initializes a new instance of the
+XmpTrailerPI
+ class.
+
### isWritable() {#isWritable--}
```
@@ -61,8 +82,10 @@ public final boolean isWritable()
Indicates whether form may be modified in-place.
+
**Returns:**
boolean - true if XMP packet is writable; otherwise, false .
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public final String getXmpRepresentation()
@@ -71,5 +94,7 @@ public final String getXmpRepresentation()
Converts XMP value to the xml representation.
+
**Returns:**
java.lang.String - Returns string representation of XMP value.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpvaluebase/_index.md b/english/java/com.groupdocs.metadata.core/xmpvaluebase/_index.md
index 9ef8ceca09..5f292678c5 100644
--- a/english/java/com.groupdocs.metadata.core/xmpvaluebase/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpvaluebase/_index.md
@@ -16,12 +16,15 @@ public abstract class XmpValueBase extends PropertyValue implements IXmpType
```
Represents base XMP value.
+
## Methods
| Method | Description |
| --- | --- |
-| [toString()](#toString--) | Returns a string that represents the property value. |
-| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format. |
+| [toString()](#toString--) | Returns a string that represents the property value.
+ |
+| [getXmpRepresentation()](#getXmpRepresentation--) | Returns string contained value in XMP format.
+ |
### toString() {#toString--}
```
public String toString()
@@ -30,8 +33,10 @@ public String toString()
Returns a string that represents the property value.
+
**Returns:**
java.lang.String - A string that represents the property value.
+
### getXmpRepresentation() {#getXmpRepresentation--}
```
public abstract String getXmpRepresentation()
@@ -40,5 +45,7 @@ public abstract String getXmpRepresentation()
Returns string contained value in XMP format.
+
**Returns:**
java.lang.String - string contained XMP representation.
+
diff --git a/english/java/com.groupdocs.metadata.core/xmpversion/_index.md b/english/java/com.groupdocs.metadata.core/xmpversion/_index.md
index 21f7371dc1..8b3374cac9 100644
--- a/english/java/com.groupdocs.metadata.core/xmpversion/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpversion/_index.md
@@ -13,32 +13,49 @@ public final class XmpVersion extends XmpComplexType
```
Represents a version of a document.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmpVersion()](#XmpVersion--) | Initializes a new instance of the XmpVersion class. |
+| [XmpVersion()](#XmpVersion--) | Initializes a new instance of the
+XmpVersion
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getComments()](#getComments--) | Gets the comments concerning what was changed. |
-| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments concerning what was changed. |
-| [getEvent()](#getEvent--) | Gets the high-level, formal description of what operation the user performed. |
-| [setEvent(XmpResourceEvent value)](#setEvent-com.groupdocs.metadata.core.XmpResourceEvent-) | Sets the high-level, formal description of what operation the user performed. |
-| [getModifier()](#getModifier--) | Gets the person who modified this version. |
-| [setModifier(String value)](#setModifier-java.lang.String-) | Sets the person who modified this version. |
-| [getModifyDate()](#getModifyDate--) | Gets the date on which this version was checked in. |
-| [setModifyDate(Date value)](#setModifyDate-java.util.Date-) | Sets the date on which this version was checked in. |
-| [getVersionNumber()](#getVersionNumber--) | Gets the new version number. |
-| [setVersionNumber(String value)](#setVersionNumber-java.lang.String-) | Sets the new version number. |
+| [getComments()](#getComments--) | Gets the comments concerning what was changed.
+ |
+| [setComments(String value)](#setComments-java.lang.String-) | Sets the comments concerning what was changed.
+ |
+| [getEvent()](#getEvent--) | Gets the high-level, formal description of what operation the user performed.
+ |
+| [setEvent(XmpResourceEvent value)](#setEvent-com.groupdocs.metadata.core.XmpResourceEvent-) | Sets the high-level, formal description of what operation the user performed.
+ |
+| [getModifier()](#getModifier--) | Gets the person who modified this version.
+ |
+| [setModifier(String value)](#setModifier-java.lang.String-) | Sets the person who modified this version.
+ |
+| [getModifyDate()](#getModifyDate--) | Gets the date on which this version was checked in.
+ |
+| [setModifyDate(Date value)](#setModifyDate-java.util.Date-) | Sets the date on which this version was checked in.
+ |
+| [getVersionNumber()](#getVersionNumber--) | Gets the new version number.
+ |
+| [setVersionNumber(String value)](#setVersionNumber-java.lang.String-) | Sets the new version number.
+ |
### XmpVersion() {#XmpVersion--}
```
public XmpVersion()
```
-Initializes a new instance of the XmpVersion class.
+Initializes a new instance of the
+XmpVersion
+ class.
+
### getComments() {#getComments--}
```
@@ -48,8 +65,10 @@ public final String getComments()
Gets the comments concerning what was changed.
+
**Returns:**
java.lang.String - The comments concerning what was changed.
+
### setComments(String value) {#setComments-java.lang.String-}
```
public final void setComments(String value)
@@ -58,10 +77,12 @@ public final void setComments(String value)
Sets the comments concerning what was changed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The comments concerning what was changed. |
+| value | java.lang.String | The comments concerning what was changed.
+ |
### getEvent() {#getEvent--}
```
@@ -71,8 +92,10 @@ public final XmpResourceEvent getEvent()
Gets the high-level, formal description of what operation the user performed.
+
**Returns:**
[XmpResourceEvent](../../com.groupdocs.metadata.core/xmpresourceevent) - The high-level, formal description of what operation the user performed.
+
### setEvent(XmpResourceEvent value) {#setEvent-com.groupdocs.metadata.core.XmpResourceEvent-}
```
public final void setEvent(XmpResourceEvent value)
@@ -81,10 +104,12 @@ public final void setEvent(XmpResourceEvent value)
Sets the high-level, formal description of what operation the user performed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [XmpResourceEvent](../../com.groupdocs.metadata.core/xmpresourceevent) | The high-level, formal description of what operation the user performed. |
+| value | [XmpResourceEvent](../../com.groupdocs.metadata.core/xmpresourceevent) | The high-level, formal description of what operation the user performed.
+ |
### getModifier() {#getModifier--}
```
@@ -94,8 +119,10 @@ public final String getModifier()
Gets the person who modified this version.
+
**Returns:**
java.lang.String - The person who modified this version.
+
### setModifier(String value) {#setModifier-java.lang.String-}
```
public final void setModifier(String value)
@@ -104,10 +131,12 @@ public final void setModifier(String value)
Sets the person who modified this version.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The person who modified this version. |
+| value | java.lang.String | The person who modified this version.
+ |
### getModifyDate() {#getModifyDate--}
```
@@ -117,8 +146,10 @@ public final Date getModifyDate()
Gets the date on which this version was checked in.
+
**Returns:**
java.util.Date - The date on which this version was checked in.
+
### setModifyDate(Date value) {#setModifyDate-java.util.Date-}
```
public final void setModifyDate(Date value)
@@ -127,10 +158,12 @@ public final void setModifyDate(Date value)
Sets the date on which this version was checked in.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.util.Date | The date on which this version was checked in. |
+| value | java.util.Date | The date on which this version was checked in.
+ |
### getVersionNumber() {#getVersionNumber--}
```
@@ -140,8 +173,10 @@ public final String getVersionNumber()
Gets the new version number.
+
**Returns:**
java.lang.String - The new version number.
+
### setVersionNumber(String value) {#setVersionNumber-java.lang.String-}
```
public final void setVersionNumber(String value)
@@ -150,8 +185,10 @@ public final void setVersionNumber(String value)
Sets the new version number.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The new version number. |
+| value | java.lang.String | The new version number.
+ |
diff --git a/english/java/com.groupdocs.metadata.core/xmpwhitebalance/_index.md b/english/java/com.groupdocs.metadata.core/xmpwhitebalance/_index.md
index d8946cea3d..922938af93 100644
--- a/english/java/com.groupdocs.metadata.core/xmpwhitebalance/_index.md
+++ b/english/java/com.groupdocs.metadata.core/xmpwhitebalance/_index.md
@@ -12,20 +12,32 @@ java.lang.Object, com.groupdocs.metadata.core.XmpClosedChoice
public final class XmpWhiteBalance extends XmpClosedChoice
```
-Represents the White Balance setting in XmpCameraRawPackage .
+Represents the White Balance setting in
+XmpCameraRawPackage
+.
+
## Methods
| Method | Description |
| --- | --- |
-| [getAsShot()](#getAsShot--) | White balance: As Shot. |
-| [getAuto()](#getAuto--) | White balance: Auto. |
-| [getCloudy()](#getCloudy--) | White balance: Cloudy. |
-| [getCustom()](#getCustom--) | White balance: Custom. |
-| [getDaylight()](#getDaylight--) | White balance: Daylight. |
-| [getFlash()](#getFlash--) | White balance: Flash. |
-| [getFluorescent()](#getFluorescent--) | White balance: Fluorescent. |
-| [getShade()](#getShade--) | White balance: Shade. |
-| [getTungsten()](#getTungsten--) | White balance: Tungsten. |
+| [getAsShot()](#getAsShot--) | White balance: As Shot.
+ |
+| [getAuto()](#getAuto--) | White balance: Auto.
+ |
+| [getCloudy()](#getCloudy--) | White balance: Cloudy.
+ |
+| [getCustom()](#getCustom--) | White balance: Custom.
+ |
+| [getDaylight()](#getDaylight--) | White balance: Daylight.
+ |
+| [getFlash()](#getFlash--) | White balance: Flash.
+ |
+| [getFluorescent()](#getFluorescent--) | White balance: Fluorescent.
+ |
+| [getShade()](#getShade--) | White balance: Shade.
+ |
+| [getTungsten()](#getTungsten--) | White balance: Tungsten.
+ |
### getAsShot() {#getAsShot--}
```
public static XmpWhiteBalance getAsShot()
@@ -34,8 +46,10 @@ public static XmpWhiteBalance getAsShot()
White balance: As Shot.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - As shot.
+
### getAuto() {#getAuto--}
```
public static XmpWhiteBalance getAuto()
@@ -44,8 +58,10 @@ public static XmpWhiteBalance getAuto()
White balance: Auto.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - The automatic.
+
### getCloudy() {#getCloudy--}
```
public static XmpWhiteBalance getCloudy()
@@ -54,8 +70,10 @@ public static XmpWhiteBalance getCloudy()
White balance: Cloudy.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Cloudy.
+
### getCustom() {#getCustom--}
```
public static XmpWhiteBalance getCustom()
@@ -64,8 +82,10 @@ public static XmpWhiteBalance getCustom()
White balance: Custom.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Custom.
+
### getDaylight() {#getDaylight--}
```
public static XmpWhiteBalance getDaylight()
@@ -74,8 +94,10 @@ public static XmpWhiteBalance getDaylight()
White balance: Daylight.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Daylight.
+
### getFlash() {#getFlash--}
```
public static XmpWhiteBalance getFlash()
@@ -84,8 +106,10 @@ public static XmpWhiteBalance getFlash()
White balance: Flash.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Flash.
+
### getFluorescent() {#getFluorescent--}
```
public static XmpWhiteBalance getFluorescent()
@@ -94,8 +118,10 @@ public static XmpWhiteBalance getFluorescent()
White balance: Fluorescent.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Fluorescent.
+
### getShade() {#getShade--}
```
public static XmpWhiteBalance getShade()
@@ -104,8 +130,10 @@ public static XmpWhiteBalance getShade()
White balance: Shade.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Shade.
+
### getTungsten() {#getTungsten--}
```
public static XmpWhiteBalance getTungsten()
@@ -114,5 +142,7 @@ public static XmpWhiteBalance getTungsten()
White balance: Tungsten.
+
**Returns:**
[XmpWhiteBalance](../../com.groupdocs.metadata.core/xmpwhitebalance) - Tungsten.
+
diff --git a/english/java/com.groupdocs.metadata.core/zipcompressionmethod/_index.md b/english/java/com.groupdocs.metadata.core/zipcompressionmethod/_index.md
index 5d2010e437..d9e78b0972 100644
--- a/english/java/com.groupdocs.metadata.core/zipcompressionmethod/_index.md
+++ b/english/java/com.groupdocs.metadata.core/zipcompressionmethod/_index.md
@@ -16,17 +16,25 @@ public enum ZipCompressionMethod extends Enum implements I
```
Defines ZIP compression methods.
+
## Fields
| Field | Description |
| --- | --- |
-| [NoCompression](#NoCompression) | The file is stored (no compression). |
-| [Shrunk](#Shrunk) | The file is Shrunk. |
-| [Imploded](#Imploded) | The file is Imploded. |
-| [Reserved](#Reserved) | A reserved compression method. |
-| [Deflated](#Deflated) | The file is Deflated. |
-| [BZip2](#BZip2) | The file is compressed with the BZip2 algorithm. |
-| [Lzma](#Lzma) | The Lempel-Ziv-Markov chain-Algorithm. |
+| [NoCompression](#NoCompression) | The file is stored (no compression).
+ |
+| [Shrunk](#Shrunk) | The file is Shrunk.
+ |
+| [Imploded](#Imploded) | The file is Imploded.
+ |
+| [Reserved](#Reserved) | A reserved compression method.
+ |
+| [Deflated](#Deflated) | The file is Deflated.
+ |
+| [BZip2](#BZip2) | The file is compressed with the BZip2 algorithm.
+ |
+| [Lzma](#Lzma) | The Lempel-Ziv-Markov chain-Algorithm.
+ |
## Methods
| Method | Description |
@@ -48,6 +56,7 @@ public static final ZipCompressionMethod NoCompression
The file is stored (no compression).
+
### Shrunk {#Shrunk}
```
public static final ZipCompressionMethod Shrunk
@@ -56,6 +65,7 @@ public static final ZipCompressionMethod Shrunk
The file is Shrunk.
+
### Imploded {#Imploded}
```
public static final ZipCompressionMethod Imploded
@@ -64,6 +74,7 @@ public static final ZipCompressionMethod Imploded
The file is Imploded.
+
### Reserved {#Reserved}
```
public static final ZipCompressionMethod Reserved
@@ -72,6 +83,7 @@ public static final ZipCompressionMethod Reserved
A reserved compression method.
+
### Deflated {#Deflated}
```
public static final ZipCompressionMethod Deflated
@@ -80,6 +92,7 @@ public static final ZipCompressionMethod Deflated
The file is Deflated.
+
### BZip2 {#BZip2}
```
public static final ZipCompressionMethod BZip2
@@ -88,6 +101,7 @@ public static final ZipCompressionMethod BZip2
The file is compressed with the BZip2 algorithm.
+
### Lzma {#Lzma}
```
public static final ZipCompressionMethod Lzma
@@ -96,6 +110,7 @@ public static final ZipCompressionMethod Lzma
The Lempel-Ziv-Markov chain-Algorithm.
+
### values() {#values--}
```
public static ZipCompressionMethod[] values()
@@ -154,6 +169,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -164,6 +180,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -179,6 +196,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -194,6 +212,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -204,5 +223,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.core/zipfile/_index.md b/english/java/com.groupdocs.metadata.core/zipfile/_index.md
index e49d0485f4..4b7e87ef90 100644
--- a/english/java/com.groupdocs.metadata.core/zipfile/_index.md
+++ b/english/java/com.groupdocs.metadata.core/zipfile/_index.md
@@ -14,23 +14,32 @@ public final class ZipFile extends CustomPackage
Represents metadata associated with an archived file or directory.
+
**Learn more**
- * [Working with ZIP archives][]
+* [Working with ZIP archives](../https://docs.groupdocs.com/display/metadatajava/Working+with+ZIP+archives)
+
+
-[Working with ZIP archives]: https://docs.groupdocs.com/display/metadatajava/Working+with+ZIP+archives
## Methods
| Method | Description |
| --- | --- |
-| [getCompressionMethod()](#getCompressionMethod--) | Gets the compression method. |
-| [getCompressedSize()](#getCompressedSize--) | Gets the compressed size in bytes. |
-| [getUncompressedSize()](#getUncompressedSize--) | Gets the uncompressed size in bytes. |
-| [getFlags()](#getFlags--) | Gets the ZIP entry flags. |
-| [getName()](#getName--) | Gets the entry name. |
-| [getRawName()](#getRawName--) | Gets an array of bytes representing the name of the entry. |
-| [getModificationDateTime()](#getModificationDateTime--) | Gets the last modification date and time. |
+| [getCompressionMethod()](#getCompressionMethod--) | Gets the compression method.
+ |
+| [getCompressedSize()](#getCompressedSize--) | Gets the compressed size in bytes.
+ |
+| [getUncompressedSize()](#getUncompressedSize--) | Gets the uncompressed size in bytes.
+ |
+| [getFlags()](#getFlags--) | Gets the ZIP entry flags.
+ |
+| [getName()](#getName--) | Gets the entry name.
+ |
+| [getRawName()](#getRawName--) | Gets an array of bytes representing the name of the entry.
+ |
+| [getModificationDateTime()](#getModificationDateTime--) | Gets the last modification date and time.
+ |
### getCompressionMethod() {#getCompressionMethod--}
```
public final ZipCompressionMethod getCompressionMethod()
@@ -39,8 +48,10 @@ public final ZipCompressionMethod getCompressionMethod()
Gets the compression method.
+
**Returns:**
[ZipCompressionMethod](../../com.groupdocs.metadata.core/zipcompressionmethod) - The compression method.
+
### getCompressedSize() {#getCompressedSize--}
```
public final long getCompressedSize()
@@ -49,8 +60,10 @@ public final long getCompressedSize()
Gets the compressed size in bytes.
+
**Returns:**
long - The compressed size in bytes.
+
### getUncompressedSize() {#getUncompressedSize--}
```
public final long getUncompressedSize()
@@ -59,8 +72,10 @@ public final long getUncompressedSize()
Gets the uncompressed size in bytes.
+
**Returns:**
long - The uncompressed size in bytes.
+
### getFlags() {#getFlags--}
```
public final int getFlags()
@@ -69,34 +84,89 @@ public final int getFlags()
Gets the ZIP entry flags.
+
**Returns:**
int - The ZIP entry flags.
---------------------
+
+
+*** ** * ** ***
+
Bit 00: encrypted file.
- Bit 01: compression option.
+
+
+
+
+Bit 01: compression option.
+
+
+
+
+
+Bit 02: compression option.
+
+
+
+
+
+Bit 03: data descriptor.
+
+
+
+
+
+Bit 04: enhanced deflation.
+
+
+
- Bit 02: compression option.
- Bit 03: data descriptor.
+Bit 05: compressed patched data.
- Bit 04: enhanced deflation.
+
- Bit 05: compressed patched data.
- Bit 06: strong encryption.
- Bit 07-10: unused.
+Bit 06: strong encryption.
- Bit 11: language encoding.
+
- Bit 12: reserved.
- Bit 13: mask header values.
- Bit 14-15: reserved.
+Bit 07-10: unused.
+
+
+
+
+
+Bit 11: language encoding.
+
+
+
+
+
+Bit 12: reserved.
+
+
+
+
+
+Bit 13: mask header values.
+
+
+
+
+
+Bit 14-15: reserved.
+
+
+
+
+
+
+
### getName() {#getName--}
@@ -107,8 +177,10 @@ public final String getName()
Gets the entry name.
+
**Returns:**
java.lang.String - The entry name. It can be a file or directory name.
+
### getRawName() {#getRawName--}
```
public final byte[] getRawName()
@@ -117,8 +189,10 @@ public final byte[] getRawName()
Gets an array of bytes representing the name of the entry.
+
**Returns:**
byte[] - An array of bytes representing the name of the entry.
+
### getModificationDateTime() {#getModificationDateTime--}
```
public final Date getModificationDateTime()
@@ -127,5 +201,7 @@ public final Date getModificationDateTime()
Gets the last modification date and time.
+
**Returns:**
java.util.Date - The last modification date and time.
+
diff --git a/english/java/com.groupdocs.metadata.core/zippackage/_index.md b/english/java/com.groupdocs.metadata.core/zippackage/_index.md
index 843ce2b525..891d1a41e4 100644
--- a/english/java/com.groupdocs.metadata.core/zippackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/zippackage/_index.md
@@ -14,15 +14,18 @@ public final class ZipPackage extends CustomPackage
Represents ZIP archive metadata.
+
**Learn more**
- * [Working with ZIP archives][]
+* [Working with ZIP archives](../https://docs.groupdocs.com/display/metadatajava/Working+with+ZIP+archives)
-The following code snippet shows how to get metadata from a ZIP archive.
+
+The following code snippet shows how to get metadata from a ZIP archive.
+>
+> ````
> ```
-> ```
->
+>
> Charset charset = Charset.forName("cp866");
> try (Metadata metadata = new Metadata(Constants.InputZip)) {
> ZipRootPackage root = metadata.getRootPackageGeneric();
@@ -41,18 +44,23 @@ The following code snippet shows how to get metadata from a ZIP archive.
> }
>
> ```
-> ```
+> ````
-[Working with ZIP archives]: https://docs.groupdocs.com/display/metadatajava/Working+with+ZIP+archives
## Methods
| Method | Description |
| --- | --- |
-| [getComment()](#getComment--) | Gets the ZIP archive comment created by a user. |
-| [setComment(String value)](#setComment-java.lang.String-) | Sets the ZIP archive comment created by a user. |
-| [getFiles()](#getFiles--) | Gets an array of ZipFile entries inside the ZIP archive. |
-| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive. |
+| [getComment()](#getComment--) | Gets the ZIP archive comment created by a user.
+ |
+| [setComment(String value)](#setComment-java.lang.String-) | Sets the ZIP archive comment created by a user.
+ |
+| [getFiles()](#getFiles--) | Gets an array of
+ZipFile
+ entries inside the ZIP archive.
+ |
+| [getTotalEntries()](#getTotalEntries--) | Gets the total number of entries inside the ZIP archive.
+ |
### getComment() {#getComment--}
```
public final String getComment()
@@ -61,8 +69,10 @@ public final String getComment()
Gets the ZIP archive comment created by a user.
+
**Returns:**
java.lang.String - The user's comment.
+
### setComment(String value) {#setComment-java.lang.String-}
```
public final void setComment(String value)
@@ -71,10 +81,12 @@ public final void setComment(String value)
Sets the ZIP archive comment created by a user.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The user's comment. |
+| value | java.lang.String | The user's comment.
+ |
### getFiles() {#getFiles--}
```
@@ -82,10 +94,14 @@ public final ZipFile[] getFiles()
```
-Gets an array of ZipFile entries inside the ZIP archive.
+Gets an array of
+ZipFile
+ entries inside the ZIP archive.
+
**Returns:**
com.groupdocs.metadata.core.ZipFile[] - An array of ZipFile entries inside the ZIP archive.
+
### getTotalEntries() {#getTotalEntries--}
```
public final long getTotalEntries()
@@ -94,5 +110,7 @@ public final long getTotalEntries()
Gets the total number of entries inside the ZIP archive.
+
**Returns:**
long - The total number of entries inside the ZIP archive.
+
diff --git a/english/java/com.groupdocs.metadata.core/ziprootpackage/_index.md b/english/java/com.groupdocs.metadata.core/ziprootpackage/_index.md
index 346153773b..e29dcfc06e 100644
--- a/english/java/com.groupdocs.metadata.core/ziprootpackage/_index.md
+++ b/english/java/com.groupdocs.metadata.core/ziprootpackage/_index.md
@@ -14,15 +14,18 @@ public class ZipRootPackage extends RootMetadataPackage
Represents the root package allowing working with metadata in a ZIP archive.
+
**Learn more**
- * [Working with ZIP archives][]
+* [Working with ZIP archives](../https://docs.groupdocs.com/display/metadatajava/Working+with+ZIP+archives)
-The following code snippet shows how to get metadata from a ZIP archive.
+
+The following code snippet shows how to get metadata from a ZIP archive.
+>
+> ````
> ```
-> ```
->
+>
> Charset charset = Charset.forName("cp866");
> try (Metadata metadata = new Metadata(Constants.InputZip)) {
> ZipRootPackage root = metadata.getRootPackageGeneric();
@@ -41,15 +44,15 @@ The following code snippet shows how to get metadata from a ZIP archive.
> }
>
> ```
-> ```
+> ````
-[Working with ZIP archives]: https://docs.groupdocs.com/display/metadatajava/Working+with+ZIP+archives
## Methods
| Method | Description |
| --- | --- |
-| [getZipPackage()](#getZipPackage--) | Gets the ZIP metadata package. |
+| [getZipPackage()](#getZipPackage--) | Gets the ZIP metadata package.
+ |
### getZipPackage() {#getZipPackage--}
```
public final ZipPackage getZipPackage()
@@ -58,5 +61,7 @@ public final ZipPackage getZipPackage()
Gets the ZIP metadata package.
+
**Returns:**
[ZipPackage](../../com.groupdocs.metadata.core/zippackage) - The ZIP metadata package.
+
diff --git a/english/java/com.groupdocs.metadata.export/_index.md b/english/java/com.groupdocs.metadata.export/_index.md
index bc4be53ad0..37167bf25d 100644
--- a/english/java/com.groupdocs.metadata.export/_index.md
+++ b/english/java/com.groupdocs.metadata.export/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.export/
The **com.groupdocs.metadata.export** namespace contains classes that allow users to export metadata properties to different representations.
+
## Classes
| Class | Description |
diff --git a/english/java/com.groupdocs.metadata.export/csvexportoptions/_index.md b/english/java/com.groupdocs.metadata.export/csvexportoptions/_index.md
index 155e2b9549..cefe9102b5 100644
--- a/english/java/com.groupdocs.metadata.export/csvexportoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.export/csvexportoptions/_index.md
@@ -13,11 +13,13 @@ public class CsvExportOptions extends ExportOptions
```
Creates an export options of xml file.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [CsvExportOptions()](#CsvExportOptions--) | Initializes a new instance of the [CsvExportOptions](../../com.groupdocs.metadata.export/csvexportoptions) class. |
+| [CsvExportOptions()](#CsvExportOptions--) | Initializes a new instance of the [CsvExportOptions](../../com.groupdocs.metadata.export/csvexportoptions) class.
+ |
### CsvExportOptions() {#CsvExportOptions--}
```
public CsvExportOptions()
@@ -26,3 +28,4 @@ public CsvExportOptions()
Initializes a new instance of the [CsvExportOptions](../../com.groupdocs.metadata.export/csvexportoptions) class.
+
diff --git a/english/java/com.groupdocs.metadata.export/excelexportoptions/_index.md b/english/java/com.groupdocs.metadata.export/excelexportoptions/_index.md
index 1bc0df25d9..219c4ceac4 100644
--- a/english/java/com.groupdocs.metadata.export/excelexportoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.export/excelexportoptions/_index.md
@@ -13,18 +13,23 @@ public class ExcelExportOptions extends ExportOptions
```
Creates an export options of excel file.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [ExcelExportOptions()](#ExcelExportOptions--) | Initializes a new instance of the [ExcelExportOptions](../../com.groupdocs.metadata.export/excelexportoptions) class. |
-| [ExcelExportOptions(boolean groupCells)](#ExcelExportOptions-boolean-) | Initializes a new instance of the [ExcelExportOptions](../../com.groupdocs.metadata.export/excelexportoptions) class. |
+| [ExcelExportOptions()](#ExcelExportOptions--) | Initializes a new instance of the [ExcelExportOptions](../../com.groupdocs.metadata.export/excelexportoptions) class.
+ |
+| [ExcelExportOptions(boolean groupCells)](#ExcelExportOptions-boolean-) | Initializes a new instance of the [ExcelExportOptions](../../com.groupdocs.metadata.export/excelexportoptions) class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getGroupCells()](#getGroupCells--) | This flag determines whether it is necessary to group rows when exporting to Excel format |
-| [setGroupCells(boolean value)](#setGroupCells-boolean-) | This flag determines whether it is necessary to group rows when exporting to Excel format |
+| [getGroupCells()](#getGroupCells--) | This flag determines whether it is necessary to group rows when exporting to Excel format
+ |
+| [setGroupCells(boolean value)](#setGroupCells-boolean-) | This flag determines whether it is necessary to group rows when exporting to Excel format
+ |
### ExcelExportOptions() {#ExcelExportOptions--}
```
public ExcelExportOptions()
@@ -33,6 +38,7 @@ public ExcelExportOptions()
Initializes a new instance of the [ExcelExportOptions](../../com.groupdocs.metadata.export/excelexportoptions) class.
+
### ExcelExportOptions(boolean groupCells) {#ExcelExportOptions-boolean-}
```
public ExcelExportOptions(boolean groupCells)
@@ -41,10 +47,12 @@ public ExcelExportOptions(boolean groupCells)
Initializes a new instance of the [ExcelExportOptions](../../com.groupdocs.metadata.export/excelexportoptions) class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| groupCells | boolean | Group flag. |
+| groupCells | boolean | Group flag.
+ |
### getGroupCells() {#getGroupCells--}
```
@@ -53,9 +61,9 @@ public final boolean getGroupCells()
This flag determines whether it is necessary to group rows when exporting to Excel format
-
Value: If the flag is true, the lines will be grouped, otherwise not
+
**Returns:**
boolean
### setGroupCells(boolean value) {#setGroupCells-boolean-}
@@ -65,9 +73,9 @@ public final void setGroupCells(boolean value)
This flag determines whether it is necessary to group rows when exporting to Excel format
-
Value: If the flag is true, the lines will be grouped, otherwise not
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
diff --git a/english/java/com.groupdocs.metadata.export/exportformat/_index.md b/english/java/com.groupdocs.metadata.export/exportformat/_index.md
index 606ff735d7..2c59578367 100644
--- a/english/java/com.groupdocs.metadata.export/exportformat/_index.md
+++ b/english/java/com.groupdocs.metadata.export/exportformat/_index.md
@@ -16,15 +16,21 @@ public enum ExportFormat extends Enum implements IEnumValue
```
Defines file formats to which you can export metadata properties.
+
## Fields
| Field | Description |
| --- | --- |
-| [Xls](#Xls) | Represents the .XLS Excel format. |
-| [Xlsx](#Xlsx) | Represents the .XLSX Excel format. |
-| [Xml](#Xml) | Represents the .XML format. |
-| [Csv](#Csv) | Represents the .CSV format. |
-| [Json](#Json) | Represents the .JSON format. |
+| [Xls](#Xls) | Represents the .XLS Excel format.
+ |
+| [Xlsx](#Xlsx) | Represents the .XLSX Excel format.
+ |
+| [Xml](#Xml) | Represents the .XML format.
+ |
+| [Csv](#Csv) | Represents the .CSV format.
+ |
+| [Json](#Json) | Represents the .JSON format.
+ |
## Methods
| Method | Description |
@@ -46,6 +52,7 @@ public static final ExportFormat Xls
Represents the .XLS Excel format.
+
### Xlsx {#Xlsx}
```
public static final ExportFormat Xlsx
@@ -54,6 +61,7 @@ public static final ExportFormat Xlsx
Represents the .XLSX Excel format.
+
### Xml {#Xml}
```
public static final ExportFormat Xml
@@ -62,6 +70,7 @@ public static final ExportFormat Xml
Represents the .XML format.
+
### Csv {#Csv}
```
public static final ExportFormat Csv
@@ -70,6 +79,7 @@ public static final ExportFormat Csv
Represents the .CSV format.
+
### Json {#Json}
```
public static final ExportFormat Json
@@ -78,6 +88,7 @@ public static final ExportFormat Json
Represents the .JSON format.
+
### values() {#values--}
```
public static ExportFormat[] values()
@@ -136,6 +147,7 @@ public Object[] getAllValues()
Returns the array of all values defined in the class.
+
**Returns:**
java.lang.Object[]
### getEnumValueByRawValue(int rawValue) {#getEnumValueByRawValue-int-}
@@ -146,6 +158,7 @@ public IEnumValue getEnumValueByRawValue(int rawValue)
Returns the enumeration value by the raw value associated with it.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -161,6 +174,7 @@ public IEnumValue getEnumValueByName(String name)
Returns the enumeration value by its name.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
@@ -176,6 +190,7 @@ public RawIntegerType getRawValueType()
Returns the underlying type of the raw value of this enumeration value.
+
**Returns:**
[RawIntegerType](../../com.groupdocs.metadata.core/rawintegertype)
### getRawValue() {#getRawValue--}
@@ -186,5 +201,6 @@ public int getRawValue()
Returns the raw value of this enumeration value.
+
**Returns:**
int
diff --git a/english/java/com.groupdocs.metadata.export/exportmanager/_index.md b/english/java/com.groupdocs.metadata.export/exportmanager/_index.md
index 1e98f4a138..07da713bfd 100644
--- a/english/java/com.groupdocs.metadata.export/exportmanager/_index.md
+++ b/english/java/com.groupdocs.metadata.export/exportmanager/_index.md
@@ -13,31 +13,43 @@ public class ExportManager
```
Provides a row of methods allowing the user to export metadata properties to various formats.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [ExportManager(Iterable properties)](#ExportManager-java.lang.Iterable-com.groupdocs.metadata.core.MetadataProperty--) | Initializes a new instance of the ExportManager class. |
+| [ExportManager(Iterable properties)](#ExportManager-java.lang.Iterable-com.groupdocs.metadata.core.MetadataProperty--) | Initializes a new instance of the
+ExportManager
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [export(String filePath, ExportFormat format, ExportOptions exportOptions)](#export-java.lang.String-com.groupdocs.metadata.export.ExportFormat-com.groupdocs.metadata.export.ExportOptions-) | Exports the metadata properties to a file. |
-| [export(OutputStream document, ExportFormat format, ExportOptions exportOptions)](#export-java.io.OutputStream-com.groupdocs.metadata.export.ExportFormat-com.groupdocs.metadata.export.ExportOptions-) | Exports the metadata properties to a stream. |
-| [export(String filePath, ExportFormat format)](#export-java.lang.String-com.groupdocs.metadata.export.ExportFormat-) | Exports the metadata properties to a file. |
-| [export(OutputStream document, ExportFormat format)](#export-java.io.OutputStream-com.groupdocs.metadata.export.ExportFormat-) | Exports the metadata properties to a stream. |
+| [export(String filePath, ExportFormat format, ExportOptions exportOptions)](#export-java.lang.String-com.groupdocs.metadata.export.ExportFormat-com.groupdocs.metadata.export.ExportOptions-) | Exports the metadata properties to a file.
+ |
+| [export(OutputStream document, ExportFormat format, ExportOptions exportOptions)](#export-java.io.OutputStream-com.groupdocs.metadata.export.ExportFormat-com.groupdocs.metadata.export.ExportOptions-) | Exports the metadata properties to a stream.
+ |
+| [export(String filePath, ExportFormat format)](#export-java.lang.String-com.groupdocs.metadata.export.ExportFormat-) | Exports the metadata properties to a file.
+ |
+| [export(OutputStream document, ExportFormat format)](#export-java.io.OutputStream-com.groupdocs.metadata.export.ExportFormat-) | Exports the metadata properties to a stream.
+ |
### ExportManager(Iterable properties) {#ExportManager-java.lang.Iterable-com.groupdocs.metadata.core.MetadataProperty--}
```
public ExportManager(Iterable properties)
```
-Initializes a new instance of the ExportManager class.
+Initializes a new instance of the
+ExportManager
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| properties | java.lang.Iterable | A collection of metadata properties to be exported. |
+| properties | java.lang.Iterable | A collection of metadata properties to be exported.
+ |
### export(String filePath, ExportFormat format, ExportOptions exportOptions) {#export-java.lang.String-com.groupdocs.metadata.export.ExportFormat-com.groupdocs.metadata.export.ExportOptions-}
```
@@ -47,11 +59,14 @@ public final void export(String filePath, ExportFormat format, ExportOptions exp
Exports the metadata properties to a file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| filePath | java.lang.String | The full name of the output file. |
-| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file. |
+| filePath | java.lang.String | The full name of the output file.
+ |
+| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file.
+ |
| exportOptions | [ExportOptions](../../com.groupdocs.metadata.export/exportoptions) | |
### export(OutputStream document, ExportFormat format, ExportOptions exportOptions) {#export-java.io.OutputStream-com.groupdocs.metadata.export.ExportFormat-com.groupdocs.metadata.export.ExportOptions-}
@@ -62,11 +77,14 @@ public final void export(OutputStream document, ExportFormat format, ExportOptio
Exports the metadata properties to a stream.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| document | java.io.OutputStream | The full name of the output file. |
-| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file. |
+| document | java.io.OutputStream | The full name of the output file.
+ |
+| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file.
+ |
| exportOptions | [ExportOptions](../../com.groupdocs.metadata.export/exportoptions) | |
### export(String filePath, ExportFormat format) {#export-java.lang.String-com.groupdocs.metadata.export.ExportFormat-}
@@ -77,11 +95,14 @@ public final void export(String filePath, ExportFormat format)
Exports the metadata properties to a file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| filePath | java.lang.String | The full name of the output file. |
-| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file. |
+| filePath | java.lang.String | The full name of the output file.
+ |
+| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file.
+ |
### export(OutputStream document, ExportFormat format) {#export-java.io.OutputStream-com.groupdocs.metadata.export.ExportFormat-}
```
@@ -91,9 +112,12 @@ public final void export(OutputStream document, ExportFormat format)
Exports the metadata properties to a stream.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| document | java.io.OutputStream | The output file stream. |
-| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file. |
+| document | java.io.OutputStream | The output file stream.
+ |
+| format | [ExportFormat](../../com.groupdocs.metadata.export/exportformat) | The format of the output file.
+ |
diff --git a/english/java/com.groupdocs.metadata.export/exportoptions/_index.md b/english/java/com.groupdocs.metadata.export/exportoptions/_index.md
index abe501ed1b..8a0870ad9d 100644
--- a/english/java/com.groupdocs.metadata.export/exportoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.export/exportoptions/_index.md
@@ -13,11 +13,13 @@ public abstract class ExportOptions
```
Abstract class export options.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [ExportOptions()](#ExportOptions--) | Initializes a new instance of the [ExportOptions](../../com.groupdocs.metadata.export/exportoptions) class. |
+| [ExportOptions()](#ExportOptions--) | Initializes a new instance of the [ExportOptions](../../com.groupdocs.metadata.export/exportoptions) class.
+ |
### ExportOptions() {#ExportOptions--}
```
public ExportOptions()
@@ -26,3 +28,4 @@ public ExportOptions()
Initializes a new instance of the [ExportOptions](../../com.groupdocs.metadata.export/exportoptions) class.
+
diff --git a/english/java/com.groupdocs.metadata.export/jsonexportoptions/_index.md b/english/java/com.groupdocs.metadata.export/jsonexportoptions/_index.md
index e5025dfaeb..6b6386f874 100644
--- a/english/java/com.groupdocs.metadata.export/jsonexportoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.export/jsonexportoptions/_index.md
@@ -13,11 +13,13 @@ public class JsonExportOptions extends ExportOptions
```
Creates an export options of xml file.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [JsonExportOptions()](#JsonExportOptions--) | Initializes a new instance of the [JsonExportOptions](../../com.groupdocs.metadata.export/jsonexportoptions) class. |
+| [JsonExportOptions()](#JsonExportOptions--) | Initializes a new instance of the [JsonExportOptions](../../com.groupdocs.metadata.export/jsonexportoptions) class.
+ |
### JsonExportOptions() {#JsonExportOptions--}
```
public JsonExportOptions()
@@ -26,3 +28,4 @@ public JsonExportOptions()
Initializes a new instance of the [JsonExportOptions](../../com.groupdocs.metadata.export/jsonexportoptions) class.
+
diff --git a/english/java/com.groupdocs.metadata.export/xmlexportoptions/_index.md b/english/java/com.groupdocs.metadata.export/xmlexportoptions/_index.md
index 685bdfc8dd..4e6515879e 100644
--- a/english/java/com.groupdocs.metadata.export/xmlexportoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.export/xmlexportoptions/_index.md
@@ -13,11 +13,13 @@ public class XmlExportOptions extends ExportOptions
```
Creates an export options of xml file.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [XmlExportOptions()](#XmlExportOptions--) | Initializes a new instance of the [XmlExportOptions](../../com.groupdocs.metadata.export/xmlexportoptions) class. |
+| [XmlExportOptions()](#XmlExportOptions--) | Initializes a new instance of the [XmlExportOptions](../../com.groupdocs.metadata.export/xmlexportoptions) class.
+ |
### XmlExportOptions() {#XmlExportOptions--}
```
public XmlExportOptions()
@@ -26,3 +28,4 @@ public XmlExportOptions()
Initializes a new instance of the [XmlExportOptions](../../com.groupdocs.metadata.export/xmlexportoptions) class.
+
diff --git a/english/java/com.groupdocs.metadata.imports/_index.md b/english/java/com.groupdocs.metadata.imports/_index.md
index fc8d3982fd..728a885104 100644
--- a/english/java/com.groupdocs.metadata.imports/_index.md
+++ b/english/java/com.groupdocs.metadata.imports/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.imports/
The **com.groupdocs.metadata.imports** namespace contains classes that allow users to import metadata properties to different representations.
+
## Classes
| Class | Description |
diff --git a/english/java/com.groupdocs.metadata.imports/importformat/_index.md b/english/java/com.groupdocs.metadata.imports/importformat/_index.md
index 46f2b7971d..98ad79aafd 100644
--- a/english/java/com.groupdocs.metadata.imports/importformat/_index.md
+++ b/english/java/com.groupdocs.metadata.imports/importformat/_index.md
@@ -13,11 +13,13 @@ public final class ImportFormat
```
Defines file formats to which you can import metadata properties.
+
## Fields
| Field | Description |
| --- | --- |
-| [Json](#Json) | Represents the .JSON format. |
+| [Json](#Json) | Represents the .JSON format.
+ |
### Json {#Json}
```
public static final int Json
@@ -26,3 +28,4 @@ public static final int Json
Represents the .JSON format.
+
diff --git a/english/java/com.groupdocs.metadata.imports/importmanager/_index.md b/english/java/com.groupdocs.metadata.imports/importmanager/_index.md
index b21a51da4a..f66a841d47 100644
--- a/english/java/com.groupdocs.metadata.imports/importmanager/_index.md
+++ b/english/java/com.groupdocs.metadata.imports/importmanager/_index.md
@@ -13,17 +13,21 @@ public class ImportManager
```
Provides a row of methods allowing the user to export metadata properties to various formats.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [ImportManager(RootMetadataPackage rootMetadataPackage)](#ImportManager-com.groupdocs.metadata.core.RootMetadataPackage-) | Initializes a new instance of the [ImportManager](../../com.groupdocs.metadata.imports/importmanager) class. |
+| [ImportManager(RootMetadataPackage rootMetadataPackage)](#ImportManager-com.groupdocs.metadata.core.RootMetadataPackage-) | Initializes a new instance of the [ImportManager](../../com.groupdocs.metadata.imports/importmanager) class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [import_(String filePath, int format, ImportOptions importOptions)](#import--java.lang.String-int-com.groupdocs.metadata.imports.ImportOptions-) | Exports the metadata properties to a file. |
-| [import_(InputStream stream, int format, ImportOptions importOptions)](#import--java.io.InputStream-int-com.groupdocs.metadata.imports.ImportOptions-) | Exports the metadata properties to a file. |
+| [import_(String filePath, int format, ImportOptions importOptions)](#import--java.lang.String-int-com.groupdocs.metadata.imports.ImportOptions-) | Exports the metadata properties to a file.
+ |
+| [import_(InputStream stream, int format, ImportOptions importOptions)](#import--java.io.InputStream-int-com.groupdocs.metadata.imports.ImportOptions-) | Exports the metadata properties to a file.
+ |
### ImportManager(RootMetadataPackage rootMetadataPackage) {#ImportManager-com.groupdocs.metadata.core.RootMetadataPackage-}
```
public ImportManager(RootMetadataPackage rootMetadataPackage)
@@ -32,10 +36,12 @@ public ImportManager(RootMetadataPackage rootMetadataPackage)
Initializes a new instance of the [ImportManager](../../com.groupdocs.metadata.imports/importmanager) class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| rootMetadataPackage | [RootMetadataPackage](../../com.groupdocs.metadata.core/rootmetadatapackage) | A collection of metadata properties where the import will be performed.. |
+| rootMetadataPackage | [RootMetadataPackage](../../com.groupdocs.metadata.core/rootmetadatapackage) | A collection of metadata properties where the import will be performed..
+ |
### import_(String filePath, int format, ImportOptions importOptions) {#import--java.lang.String-int-com.groupdocs.metadata.imports.ImportOptions-}
```
@@ -45,12 +51,16 @@ public final void import_(String filePath, int format, ImportOptions importOptio
Exports the metadata properties to a file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| filePath | java.lang.String | The full name of the input file. |
-| format | int | The format of the input file. |
-| importOptions | [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) | Additional options to use when importing. |
+| filePath | java.lang.String | The full name of the input file.
+ |
+| format | int | The format of the input file.
+ |
+| importOptions | [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) | Additional options to use when importing.
+ |
### import_(InputStream stream, int format, ImportOptions importOptions) {#import--java.io.InputStream-int-com.groupdocs.metadata.imports.ImportOptions-}
```
@@ -60,10 +70,14 @@ public final void import_(InputStream stream, int format, ImportOptions importOp
Exports the metadata properties to a file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| stream | java.io.InputStream | The filestream of the input file. |
-| format | int | The format of the input file. |
-| importOptions | [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) | Additional options to use when importing. |
+| stream | java.io.InputStream | The filestream of the input file.
+ |
+| format | int | The format of the input file.
+ |
+| importOptions | [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) | Additional options to use when importing.
+ |
diff --git a/english/java/com.groupdocs.metadata.imports/importoptions/_index.md b/english/java/com.groupdocs.metadata.imports/importoptions/_index.md
index dfaa6623e8..be71f86c08 100644
--- a/english/java/com.groupdocs.metadata.imports/importoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.imports/importoptions/_index.md
@@ -13,11 +13,13 @@ public abstract class ImportOptions
```
Abstract class import options.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [ImportOptions()](#ImportOptions--) | Initializes a new instance of the [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) class. |
+| [ImportOptions()](#ImportOptions--) | Initializes a new instance of the [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) class.
+ |
### ImportOptions() {#ImportOptions--}
```
public ImportOptions()
@@ -26,3 +28,4 @@ public ImportOptions()
Initializes a new instance of the [ImportOptions](../../com.groupdocs.metadata.imports/importoptions) class.
+
diff --git a/english/java/com.groupdocs.metadata.imports/jsonimportoptions/_index.md b/english/java/com.groupdocs.metadata.imports/jsonimportoptions/_index.md
index 71457da943..17a9f22646 100644
--- a/english/java/com.groupdocs.metadata.imports/jsonimportoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.imports/jsonimportoptions/_index.md
@@ -13,11 +13,13 @@ public class JsonImportOptions extends ImportOptions
```
Creates an import options from json file.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [JsonImportOptions()](#JsonImportOptions--) | Initializes a new instance of the [JsonImportOptions](../../com.groupdocs.metadata.imports/jsonimportoptions) class. |
+| [JsonImportOptions()](#JsonImportOptions--) | Initializes a new instance of the [JsonImportOptions](../../com.groupdocs.metadata.imports/jsonimportoptions) class.
+ |
### JsonImportOptions() {#JsonImportOptions--}
```
public JsonImportOptions()
@@ -26,3 +28,4 @@ public JsonImportOptions()
Initializes a new instance of the [JsonImportOptions](../../com.groupdocs.metadata.imports/jsonimportoptions) class.
+
diff --git a/english/java/com.groupdocs.metadata.licensing/_index.md b/english/java/com.groupdocs.metadata.licensing/_index.md
index b3cdcbebf1..02f65c98e1 100644
--- a/english/java/com.groupdocs.metadata.licensing/_index.md
+++ b/english/java/com.groupdocs.metadata.licensing/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.licensing/
The **com.groupdocs.metadata.licensing** namespace provides classes for licensing the Metadata library.
+
## Classes
| Class | Description |
diff --git a/english/java/com.groupdocs.metadata.licensing/license/_index.md b/english/java/com.groupdocs.metadata.licensing/license/_index.md
index 6b37bf3e87..bf8c0ce270 100644
--- a/english/java/com.groupdocs.metadata.licensing/license/_index.md
+++ b/english/java/com.groupdocs.metadata.licensing/license/_index.md
@@ -14,16 +14,24 @@ public final class License
Represents GroupDocs.Metadata license. License class should be applied once per AppDomain.
---------------------
+
+
+*** ** * ** ***
> ```
-> This example demonstrates how to setup a license.
+> This example demonstrates how to setup a license.
>
> // initialize License class
> License license = new License();
> // set path to .lic file
> license.SetLicense(@"C:\\GroupDocs.Metadata.lic");
+>
+>
> ```
+
+
+
+
## Constructors
| Constructor | Description |
@@ -33,8 +41,10 @@ Represents GroupDocs.Metadata license. License class should be applied once per
| Method | Description |
| --- | --- |
-| [setLicense(String licensePath)](#setLicense-java.lang.String-) | Licenses the component. |
-| [setLicense(InputStream licenseStream)](#setLicense-java.io.InputStream-) | Licenses the component. |
+| [setLicense(String licensePath)](#setLicense-java.lang.String-) | Licenses the component.
+ |
+| [setLicense(InputStream licenseStream)](#setLicense-java.io.InputStream-) | Licenses the component.
+ |
### License() {#License--}
```
public License()
@@ -49,21 +59,30 @@ public final void setLicense(String licensePath)
Licenses the component.
---------------------
+
+
+*** ** * ** ***
> ```
-> This example demonstrates how to setup license.
+> This example demonstrates how to setup license.
>
> // initialize License class
> License license = new License();
> // set path to .lic file
-> license.SetLicense(@"C:\\GroupDocs.Metadata.lic");
+> license.SetLicense(@"C:\\GroupDocs.Metadata.lic");
+>
+>
> ```
+
+
+
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| licensePath | java.lang.String | The absolute path to a license file. |
+| licensePath | java.lang.String | The absolute path to a license file.
+ |
### setLicense(InputStream licenseStream) {#setLicense-java.io.InputStream-}
```
@@ -73,8 +92,10 @@ public final void setLicense(InputStream licenseStream)
Licenses the component.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| licenseStream | java.io.InputStream | License stream. |
+| licenseStream | java.io.InputStream | License stream.
+ |
diff --git a/english/java/com.groupdocs.metadata.licensing/metered/_index.md b/english/java/com.groupdocs.metadata.licensing/metered/_index.md
index 995e03c428..fb62c2d1b2 100644
--- a/english/java/com.groupdocs.metadata.licensing/metered/_index.md
+++ b/english/java/com.groupdocs.metadata.licensing/metered/_index.md
@@ -13,6 +13,7 @@ public class Metered
```
Provides methods to set metered key.
+
## Constructors
| Constructor | Description |
@@ -22,9 +23,12 @@ Provides methods to set metered key.
| Method | Description |
| --- | --- |
-| [setMeteredKey(String publicKey, String privateKey)](#setMeteredKey-java.lang.String-java.lang.String-) | Activates product with Metered keys. |
-| [getConsumptionQuantity()](#getConsumptionQuantity--) | Retrieves amount of MBs processed. |
-| [getConsumptionCredit()](#getConsumptionCredit--) | Retrieves amount of used credits |
+| [setMeteredKey(String publicKey, String privateKey)](#setMeteredKey-java.lang.String-java.lang.String-) | Activates product with Metered keys.
+ |
+| [getConsumptionQuantity()](#getConsumptionQuantity--) | Retrieves amount of MBs processed.
+ |
+| [getConsumptionCredit()](#getConsumptionCredit--) | Retrieves amount of used credits
+ |
### Metered() {#Metered--}
```
public Metered()
@@ -39,22 +43,31 @@ public final void setMeteredKey(String publicKey, String privateKey)
Activates product with Metered keys.
---------------------
+
+
+*** ** * ** ***
> ```
-> Following example demonstrates how to activate product with Metered keys.
->
-> string publicKey = "Public Key";
+> Following example demonstrates how to activate product with Metered keys.
+> string publicKey = "Public Key";
> string privateKey = "Private Key";
> Metered metered = new Metered();
> metered.SetMeteredKey(publicKey, privateKey);
+>
+>
> ```
+
+
+
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| publicKey | java.lang.String | The public key. |
-| privateKey | java.lang.String | The private key. |
+| publicKey | java.lang.String | The public key.
+ |
+| privateKey | java.lang.String | The private key.
+ |
### getConsumptionQuantity() {#getConsumptionQuantity--}
```
@@ -64,19 +77,26 @@ public static BigDecimal getConsumptionQuantity()
Retrieves amount of MBs processed.
---------------------
+
+
+*** ** * ** ***
> ```
-> Following example demonstrates how to retrieve amount of MBs processed.
->
-> string publicKey = "Public Key";
+> Following example demonstrates how to retrieve amount of MBs processed.
+> string publicKey = "Public Key";
> string privateKey = "Private Key";
->
+>
> Metered metered = new Metered();
> metered.SetMeteredKey(publicKey, privateKey);
> decimal mbProcessed = Metered.GetConsumptionQuantity();
+>
+>
> ```
+
+
+
+
**Returns:**
java.math.BigDecimal
### getConsumptionCredit() {#getConsumptionCredit--}
@@ -87,18 +107,25 @@ public static BigDecimal getConsumptionCredit()
Retrieves amount of used credits
---------------------
+
+
+*** ** * ** ***
> ```
-> Following example demonstrates how to retrieve amount of MBs processed.
->
-> string publicKey = "Public Key";
+> Following example demonstrates how to retrieve amount of MBs processed.
+> string publicKey = "Public Key";
> string privateKey = "Private Key";
->
+>
> Metered metered = new Metered();
> metered.SetMeteredKey(publicKey, privateKey);
> decimal usedCredits = Metered.GetConsumptionCredit();
+>
+>
> ```
+
+
+
+
**Returns:**
java.math.BigDecimal
diff --git a/english/java/com.groupdocs.metadata.options/_index.md b/english/java/com.groupdocs.metadata.options/_index.md
index 4edd254917..26ceebbf91 100644
--- a/english/java/com.groupdocs.metadata.options/_index.md
+++ b/english/java/com.groupdocs.metadata.options/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.options/
The **com.groupdocs.metadata.options** namespace contains all classes representing settings that allow users to control file and metadata processing.
+
## Classes
| Class | Description |
@@ -22,7 +23,7 @@ The **com.groupdocs.metadata.options** namespace contains all classes representi
| Interface | Description |
| --- | --- |
| [ICreatePageStream](../com.groupdocs.metadata.options/icreatepagestream) | Defines a method that returns a stream to write page preview data. |
-| [IReleasePageStream](../com.groupdocs.metadata.options/ireleasepagestream) | Defines a method which releases the stream created by the passed ICreatePageStream implementation. |
+| [IReleasePageStream](../com.groupdocs.metadata.options/ireleasepagestream) | Defines a method which releases the stream created by the passed ICreatePageStream implementation. |
## Enumerations
diff --git a/english/java/com.groupdocs.metadata.options/icreatepagestream/_index.md b/english/java/com.groupdocs.metadata.options/icreatepagestream/_index.md
index dede6cad14..b2d69fd4fd 100644
--- a/english/java/com.groupdocs.metadata.options/icreatepagestream/_index.md
+++ b/english/java/com.groupdocs.metadata.options/icreatepagestream/_index.md
@@ -10,11 +10,13 @@ public interface ICreatePageStream
```
Defines a method that returns a stream to write page preview data.
+
## Methods
| Method | Description |
| --- | --- |
-| [createPageStream(int pageNumber)](#createPageStream-int-) | Represents a method that returns a stream to write page preview data. |
+| [createPageStream(int pageNumber)](#createPageStream-int-) | Represents a method that returns a stream to write page preview data.
+ |
### createPageStream(int pageNumber) {#createPageStream-int-}
```
public abstract OutputStream createPageStream(int pageNumber)
@@ -23,17 +25,21 @@ public abstract OutputStream createPageStream(int pageNumber)
Represents a method that returns a stream to write page preview data.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| pageNumber | int | The page number of a page to generate a thumbnail.
+
**Learn more**
- * [Generate document preview][]
+* [Generate document preview](../https://docs.groupdocs.com/display/metadatajava/Generate+document+preview)
+
-[Generate document preview]: https://docs.groupdocs.com/display/metadatajava/Generate+document+preview |
+ |
**Returns:**
java.io.OutputStream - The stream to write the page preview.
+
diff --git a/english/java/com.groupdocs.metadata.options/ireleasepagestream/_index.md b/english/java/com.groupdocs.metadata.options/ireleasepagestream/_index.md
index 664000b504..934c64e9bd 100644
--- a/english/java/com.groupdocs.metadata.options/ireleasepagestream/_index.md
+++ b/english/java/com.groupdocs.metadata.options/ireleasepagestream/_index.md
@@ -9,30 +9,42 @@ url: /java/com.groupdocs.metadata.options/ireleasepagestream/
public interface IReleasePageStream
```
-Defines a method which releases the stream created by the passed ICreatePageStream implementation.
+Defines a method which releases the stream created by the passed
+ICreatePageStream
+ implementation.
+
## Methods
| Method | Description |
| --- | --- |
-| [releasePageStream(int pageNumber, OutputStream pageStream)](#releasePageStream-int-java.io.OutputStream-) | Represents a method which releases the stream created by the passed ICreatePageStream implementation. |
+| [releasePageStream(int pageNumber, OutputStream pageStream)](#releasePageStream-int-java.io.OutputStream-) | Represents a method which releases the stream created by the passed
+ICreatePageStream
+ implementation.
+ |
### releasePageStream(int pageNumber, OutputStream pageStream) {#releasePageStream-int-java.io.OutputStream-}
```
public abstract void releasePageStream(int pageNumber, OutputStream pageStream)
```
-Represents a method which releases the stream created by the passed ICreatePageStream implementation.
+Represents a method which releases the stream created by the passed
+ICreatePageStream
+ implementation.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| pageNumber | int | The page number of a generated page preview. |
+| pageNumber | int | The page number of a generated page preview.
+ |
| pageStream | java.io.OutputStream | The stream containing the generated page preview.
+
**Learn more**
- * [Generate document preview][]
+* [Generate document preview](../https://docs.groupdocs.com/display/metadatajava/Generate+document+preview)
+
-[Generate document preview]: https://docs.groupdocs.com/display/metadatajava/Generate+document+preview |
+ |
diff --git a/english/java/com.groupdocs.metadata.options/loadoptions/_index.md b/english/java/com.groupdocs.metadata.options/loadoptions/_index.md
index dbe8b922e8..bbdb4b2bb6 100644
--- a/english/java/com.groupdocs.metadata.options/loadoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.options/loadoptions/_index.md
@@ -14,38 +14,49 @@ public class LoadOptions
Allows a developer to specify additional options (such as a password) when loading a file.
+
**Learn more**
- * [Load from a local disk][]
- * [Load from a stream][]
- * [Load a file of a specific format][]
- * [Load a password-protected document][]
+* [Load from a local disk](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk)
+* [Load from a stream](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream)
+* [Load a file of a specific format](../https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format)
+* [Load a password-protected document](../https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document)
+
+
-[Load from a local disk]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk
-[Load from a stream]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream
-[Load a file of a specific format]: https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format
-[Load a password-protected document]: https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document
## Constructors
| Constructor | Description |
| --- | --- |
-| [LoadOptions()](#LoadOptions--) | Initializes a new instance of the LoadOptions class. |
-| [LoadOptions(FileFormat fileFormat)](#LoadOptions-com.groupdocs.metadata.core.FileFormat-) | Initializes a new instance of the LoadOptions class. |
+| [LoadOptions()](#LoadOptions--) | Initializes a new instance of the
+LoadOptions
+ class.
+ |
+| [LoadOptions(FileFormat fileFormat)](#LoadOptions-com.groupdocs.metadata.core.FileFormat-) | Initializes a new instance of the
+LoadOptions
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPassword()](#getPassword--) | Gets the password for opening an encrypted document. |
-| [setPassword(String value)](#setPassword-java.lang.String-) | Sets the password for opening an encrypted document. |
-| [getFileFormat()](#getFileFormat--) | Gets the exact type of the file that is to be loaded. |
+| [getPassword()](#getPassword--) | Gets the password for opening an encrypted document.
+ |
+| [setPassword(String value)](#setPassword-java.lang.String-) | Sets the password for opening an encrypted document.
+ |
+| [getFileFormat()](#getFileFormat--) | Gets the exact type of the file that is to be loaded.
+ |
### LoadOptions() {#LoadOptions--}
```
public LoadOptions()
```
-Initializes a new instance of the LoadOptions class.
+Initializes a new instance of the
+LoadOptions
+ class.
+
### LoadOptions(FileFormat fileFormat) {#LoadOptions-com.groupdocs.metadata.core.FileFormat-}
```
@@ -53,12 +64,16 @@ public LoadOptions(FileFormat fileFormat)
```
-Initializes a new instance of the LoadOptions class.
+Initializes a new instance of the
+LoadOptions
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| fileFormat | [FileFormat](../../com.groupdocs.metadata.core/fileformat) | The exact type of the file. |
+| fileFormat | [FileFormat](../../com.groupdocs.metadata.core/fileformat) | The exact type of the file.
+ |
### getPassword() {#getPassword--}
```
@@ -68,8 +83,10 @@ public final String getPassword()
Gets the password for opening an encrypted document.
+
**Returns:**
java.lang.String - Can be null or empty string. The default value is null. If the document is not encrypted, set this to null or the empty string.
+
### setPassword(String value) {#setPassword-java.lang.String-}
```
public final void setPassword(String value)
@@ -78,10 +95,12 @@ public final void setPassword(String value)
Sets the password for opening an encrypted document.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | Can be null or empty string. The default value is null. If the document is not encrypted, set this to null or the empty string. |
+| value | java.lang.String | Can be null or empty string. The default value is null. If the document is not encrypted, set this to null or the empty string.
+ |
### getFileFormat() {#getFileFormat--}
```
@@ -89,7 +108,12 @@ public final FileFormat getFileFormat()
```
-Gets the exact type of the file that is to be loaded. The default value is FileFormat.Unknown which means that the type should be detected automatically.
+Gets the exact type of the file that is to be loaded.
+The default value is
+FileFormat.Unknown
+ which means that the type should be detected automatically.
+
**Returns:**
[FileFormat](../../com.groupdocs.metadata.core/fileformat) - The exact type of the file that is to be loaded.
+
diff --git a/english/java/com.groupdocs.metadata.options/previewformats/_index.md b/english/java/com.groupdocs.metadata.options/previewformats/_index.md
index c4dde79b7c..4d52785975 100644
--- a/english/java/com.groupdocs.metadata.options/previewformats/_index.md
+++ b/english/java/com.groupdocs.metadata.options/previewformats/_index.md
@@ -13,13 +13,17 @@ public enum PreviewFormats extends Enum
```
Represents supported preview formats.
+
## Fields
| Field | Description |
| --- | --- |
-| [PNG](#PNG) | Portable Network Graphics Format. |
-| [JPEG](#JPEG) | Joint Photographic Experts Group Format. |
-| [BMP](#BMP) | Bitmap Picture Format. |
+| [PNG](#PNG) | Portable Network Graphics Format.
+ |
+| [JPEG](#JPEG) | Joint Photographic Experts Group Format.
+ |
+| [BMP](#BMP) | Bitmap Picture Format.
+ |
## Methods
| Method | Description |
@@ -34,6 +38,7 @@ public static final PreviewFormats PNG
Portable Network Graphics Format.
+
### JPEG {#JPEG}
```
public static final PreviewFormats JPEG
@@ -42,6 +47,7 @@ public static final PreviewFormats JPEG
Joint Photographic Experts Group Format.
+
### BMP {#BMP}
```
public static final PreviewFormats BMP
@@ -50,6 +56,7 @@ public static final PreviewFormats BMP
Bitmap Picture Format.
+
### values() {#values--}
```
public static PreviewFormats[] values()
diff --git a/english/java/com.groupdocs.metadata.options/previewoptions/_index.md b/english/java/com.groupdocs.metadata.options/previewoptions/_index.md
index c3e87f3c72..5a30932d5a 100644
--- a/english/java/com.groupdocs.metadata.options/previewoptions/_index.md
+++ b/english/java/com.groupdocs.metadata.options/previewoptions/_index.md
@@ -13,48 +13,79 @@ public class PreviewOptions
```
Provides options to sets requirements and stream delegates for preview generation.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [PreviewOptions(ICreatePageStream createPageStream)](#PreviewOptions-com.groupdocs.metadata.options.ICreatePageStream-) | Initializes a new instance of the PreviewOptions class causing the output stream to be closed. |
-| [PreviewOptions(ICreatePageStream createPageStream, IReleasePageStream releasePageStream)](#PreviewOptions-com.groupdocs.metadata.options.ICreatePageStream-com.groupdocs.metadata.options.IReleasePageStream-) | Initializes a new instance of PreviewOptions class causing the output stream to be returned to the client for further use. |
+| [PreviewOptions(ICreatePageStream createPageStream)](#PreviewOptions-com.groupdocs.metadata.options.ICreatePageStream-) | Initializes a new instance of the
+PreviewOptions
+ class causing the output stream to be closed.
+ |
+| [PreviewOptions(ICreatePageStream createPageStream, IReleasePageStream releasePageStream)](#PreviewOptions-com.groupdocs.metadata.options.ICreatePageStream-com.groupdocs.metadata.options.IReleasePageStream-) | Initializes a new instance of
+PreviewOptions
+ class causing the output stream to be returned to the client for further use.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCacheFolder()](#getCacheFolder--) | Gets the cache folder. |
-| [setCacheFolder(String value)](#setCacheFolder-java.lang.String-) | Sets the cache folder. |
-| [getMaxDiskSpaceForCache()](#getMaxDiskSpaceForCache--) | Gets the maximum available disk space for cache in bytes. |
-| [setMaxDiskSpaceForCache(int value)](#setMaxDiskSpaceForCache-int-) | Sets the maximum available disk space for cache in bytes. |
-| [getMaxMemoryForCache()](#getMaxMemoryForCache--) | Gets the maximum available memory for cache in memory in bytes. |
-| [setMaxMemoryForCache(int value)](#setMaxMemoryForCache-int-) | Sets the maximum available memory for cache in memory in bytes. |
-| [getWidth()](#getWidth--) | Gets the page preview width. |
-| [setWidth(int value)](#setWidth-int-) | Sets the page preview width. |
-| [getHeight()](#getHeight--) | Gets the page preview height. |
-| [setHeight(int value)](#setHeight-int-) | Sets the page preview height. |
-| [getPageNumbers()](#getPageNumbers--) | Gets an array of page numbers to generate previews. |
-| [setPageNumbers(int[] value)](#setPageNumbers-int---) | Sets an array of page numbers to generate previews. |
-| [getPreviewFormat()](#getPreviewFormat--) | Gets the preview image format. |
-| [setPreviewFormat(PreviewFormats value)](#setPreviewFormat-com.groupdocs.metadata.options.PreviewFormats-) | Sets the preview image format. |
-| [getCreatePageStream()](#getCreatePageStream--) | Gets an instance of the page stream creation delegate. |
-| [setCreatePageStream(ICreatePageStream value)](#setCreatePageStream-com.groupdocs.metadata.options.ICreatePageStream-) | Sets an instance of the page stream creation delegate. |
-| [getReleasePageStream()](#getReleasePageStream--) | Gets an instance of the page preview completion delegate. |
-| [setReleasePageStream(IReleasePageStream value)](#setReleasePageStream-com.groupdocs.metadata.options.IReleasePageStream-) | Sets an instance of the page preview completion delegate. |
-| [getResolution()](#getResolution--) | Gets or sets the page preview resolution. |
-| [setResolution(int value)](#setResolution-int-) | Gets or sets the page preview resolution. |
+| [getCacheFolder()](#getCacheFolder--) | Gets the cache folder.
+ |
+| [setCacheFolder(String value)](#setCacheFolder-java.lang.String-) | Sets the cache folder.
+ |
+| [getMaxDiskSpaceForCache()](#getMaxDiskSpaceForCache--) | Gets the maximum available disk space for cache in bytes.
+ |
+| [setMaxDiskSpaceForCache(int value)](#setMaxDiskSpaceForCache-int-) | Sets the maximum available disk space for cache in bytes.
+ |
+| [getMaxMemoryForCache()](#getMaxMemoryForCache--) | Gets the maximum available memory for cache in memory in bytes.
+ |
+| [setMaxMemoryForCache(int value)](#setMaxMemoryForCache-int-) | Sets the maximum available memory for cache in memory in bytes.
+ |
+| [getWidth()](#getWidth--) | Gets the page preview width.
+ |
+| [setWidth(int value)](#setWidth-int-) | Sets the page preview width.
+ |
+| [getHeight()](#getHeight--) | Gets the page preview height.
+ |
+| [setHeight(int value)](#setHeight-int-) | Sets the page preview height.
+ |
+| [getPageNumbers()](#getPageNumbers--) | Gets an array of page numbers to generate previews.
+ |
+| [setPageNumbers(int[] value)](#setPageNumbers-int---) | Sets an array of page numbers to generate previews.
+ |
+| [getPreviewFormat()](#getPreviewFormat--) | Gets the preview image format.
+ |
+| [setPreviewFormat(PreviewFormats value)](#setPreviewFormat-com.groupdocs.metadata.options.PreviewFormats-) | Sets the preview image format.
+ |
+| [getCreatePageStream()](#getCreatePageStream--) | Gets an instance of the page stream creation delegate.
+ |
+| [setCreatePageStream(ICreatePageStream value)](#setCreatePageStream-com.groupdocs.metadata.options.ICreatePageStream-) | Sets an instance of the page stream creation delegate.
+ |
+| [getReleasePageStream()](#getReleasePageStream--) | Gets an instance of the page preview completion delegate.
+ |
+| [setReleasePageStream(IReleasePageStream value)](#setReleasePageStream-com.groupdocs.metadata.options.IReleasePageStream-) | Sets an instance of the page preview completion delegate.
+ |
+| [getResolution()](#getResolution--) | Gets or sets the page preview resolution.
+ |
+| [setResolution(int value)](#setResolution-int-) | Gets or sets the page preview resolution.
+ |
### PreviewOptions(ICreatePageStream createPageStream) {#PreviewOptions-com.groupdocs.metadata.options.ICreatePageStream-}
```
public PreviewOptions(ICreatePageStream createPageStream)
```
-Initializes a new instance of the PreviewOptions class causing the output stream to be closed.
+Initializes a new instance of the
+PreviewOptions
+ class causing the output stream to be closed.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| createPageStream | [ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) | Creates a stream for a specific page preview. |
+| createPageStream | [ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) | Creates a stream for a specific page preview.
+ |
### PreviewOptions(ICreatePageStream createPageStream, IReleasePageStream releasePageStream) {#PreviewOptions-com.groupdocs.metadata.options.ICreatePageStream-com.groupdocs.metadata.options.IReleasePageStream-}
```
@@ -62,13 +93,18 @@ public PreviewOptions(ICreatePageStream createPageStream, IReleasePageStream rel
```
-Initializes a new instance of PreviewOptions class causing the output stream to be returned to the client for further use.
+Initializes a new instance of
+PreviewOptions
+ class causing the output stream to be returned to the client for further use.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| createPageStream | [ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) | Creates a stream for a specific page preview |
-| releasePageStream | [IReleasePageStream](../../com.groupdocs.metadata.options/ireleasepagestream) | Notifies that the page preview generation is done and gets the output stream. |
+| createPageStream | [ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) | Creates a stream for a specific page preview
+ |
+| releasePageStream | [IReleasePageStream](../../com.groupdocs.metadata.options/ireleasepagestream) | Notifies that the page preview generation is done and gets the output stream.
+ |
### getCacheFolder() {#getCacheFolder--}
```
@@ -76,22 +112,28 @@ public final String getCacheFolder()
```
-Gets the cache folder. By default the cache folder is set to user's local temp directory.
+Gets the cache folder.
+By default the cache folder is set to user's local temp directory.
+
**Returns:**
java.lang.String - The cache folder.
+
### setCacheFolder(String value) {#setCacheFolder-java.lang.String-}
```
public final void setCacheFolder(String value)
```
-Sets the cache folder. By default the cache folder is set to user's local temp directory.
+Sets the cache folder.
+By default the cache folder is set to user's local temp directory.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | java.lang.String | The cache folder. |
+| value | java.lang.String | The cache folder.
+ |
### getMaxDiskSpaceForCache() {#getMaxDiskSpaceForCache--}
```
@@ -99,22 +141,28 @@ public final int getMaxDiskSpaceForCache()
```
-Gets the maximum available disk space for cache in bytes. The default value is 1073741824.
+Gets the maximum available disk space for cache in bytes.
+The default value is 1073741824.
+
**Returns:**
int - The maximum available disk space for cache in bytes.
+
### setMaxDiskSpaceForCache(int value) {#setMaxDiskSpaceForCache-int-}
```
public final void setMaxDiskSpaceForCache(int value)
```
-Sets the maximum available disk space for cache in bytes. The default value is 1073741824.
+Sets the maximum available disk space for cache in bytes.
+The default value is 1073741824.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The maximum available disk space for cache in bytes. |
+| value | int | The maximum available disk space for cache in bytes.
+ |
### getMaxMemoryForCache() {#getMaxMemoryForCache--}
```
@@ -122,22 +170,28 @@ public final int getMaxMemoryForCache()
```
-Gets the maximum available memory for cache in memory in bytes. The default value is 1073741824.
+Gets the maximum available memory for cache in memory in bytes.
+The default value is 1073741824.
+
**Returns:**
int - The maximum available memory for cache in memory in bytes.
+
### setMaxMemoryForCache(int value) {#setMaxMemoryForCache-int-}
```
public final void setMaxMemoryForCache(int value)
```
-Sets the maximum available memory for cache in memory in bytes. The default value is 1073741824.
+Sets the maximum available memory for cache in memory in bytes.
+The default value is 1073741824.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The maximum available memory for cache in memory in bytes. |
+| value | int | The maximum available memory for cache in memory in bytes.
+ |
### getWidth() {#getWidth--}
```
@@ -147,8 +201,10 @@ public final int getWidth()
Gets the page preview width.
+
**Returns:**
int - The page preview width.
+
### setWidth(int value) {#setWidth-int-}
```
public final void setWidth(int value)
@@ -157,10 +213,12 @@ public final void setWidth(int value)
Sets the page preview width.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The page preview width. |
+| value | int | The page preview width.
+ |
### getHeight() {#getHeight--}
```
@@ -170,8 +228,10 @@ public final int getHeight()
Gets the page preview height.
+
**Returns:**
int - The page preview height.
+
### setHeight(int value) {#setHeight-int-}
```
public final void setHeight(int value)
@@ -180,10 +240,12 @@ public final void setHeight(int value)
Sets the page preview height.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int | The page preview height. |
+| value | int | The page preview height.
+ |
### getPageNumbers() {#getPageNumbers--}
```
@@ -193,8 +255,10 @@ public final int[] getPageNumbers()
Gets an array of page numbers to generate previews.
+
**Returns:**
int[] - An array of page numbers to generate previews.
+
### setPageNumbers(int[] value) {#setPageNumbers-int---}
```
public final void setPageNumbers(int[] value)
@@ -203,10 +267,12 @@ public final void setPageNumbers(int[] value)
Sets an array of page numbers to generate previews.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | int[] | An array of page numbers to generate previews. |
+| value | int[] | An array of page numbers to generate previews.
+ |
### getPreviewFormat() {#getPreviewFormat--}
```
@@ -216,8 +282,10 @@ public final PreviewFormats getPreviewFormat()
Gets the preview image format.
+
**Returns:**
[PreviewFormats](../../com.groupdocs.metadata.options/previewformats) - The preview image format.
+
### setPreviewFormat(PreviewFormats value) {#setPreviewFormat-com.groupdocs.metadata.options.PreviewFormats-}
```
public final void setPreviewFormat(PreviewFormats value)
@@ -226,10 +294,12 @@ public final void setPreviewFormat(PreviewFormats value)
Sets the preview image format.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [PreviewFormats](../../com.groupdocs.metadata.options/previewformats) | The preview image format. |
+| value | [PreviewFormats](../../com.groupdocs.metadata.options/previewformats) | The preview image format.
+ |
### getCreatePageStream() {#getCreatePageStream--}
```
@@ -239,8 +309,10 @@ public final ICreatePageStream getCreatePageStream()
Gets an instance of the page stream creation delegate.
+
**Returns:**
[ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) - An instance of the page stream creation delegate.
+
### setCreatePageStream(ICreatePageStream value) {#setCreatePageStream-com.groupdocs.metadata.options.ICreatePageStream-}
```
public final void setCreatePageStream(ICreatePageStream value)
@@ -249,10 +321,12 @@ public final void setCreatePageStream(ICreatePageStream value)
Sets an instance of the page stream creation delegate.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) | An instance of the page stream creation delegate. |
+| value | [ICreatePageStream](../../com.groupdocs.metadata.options/icreatepagestream) | An instance of the page stream creation delegate.
+ |
### getReleasePageStream() {#getReleasePageStream--}
```
@@ -262,8 +336,10 @@ public final IReleasePageStream getReleasePageStream()
Gets an instance of the page preview completion delegate.
+
**Returns:**
[IReleasePageStream](../../com.groupdocs.metadata.options/ireleasepagestream) - An instance of the page preview completion delegate.
+
### setReleasePageStream(IReleasePageStream value) {#setReleasePageStream-com.groupdocs.metadata.options.IReleasePageStream-}
```
public final void setReleasePageStream(IReleasePageStream value)
@@ -272,10 +348,12 @@ public final void setReleasePageStream(IReleasePageStream value)
Sets an instance of the page preview completion delegate.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| value | [IReleasePageStream](../../com.groupdocs.metadata.options/ireleasepagestream) | An instance of the page preview completion delegate. |
+| value | [IReleasePageStream](../../com.groupdocs.metadata.options/ireleasepagestream) | An instance of the page preview completion delegate.
+ |
### getResolution() {#getResolution--}
```
@@ -285,6 +363,7 @@ public final int getResolution()
Gets or sets the page preview resolution.
+
**Returns:**
int
### setResolution(int value) {#setResolution-int-}
@@ -295,6 +374,7 @@ public final void setResolution(int value)
Gets or sets the page preview resolution.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
diff --git a/english/java/com.groupdocs.metadata.search/_index.md b/english/java/com.groupdocs.metadata.search/_index.md
index f28ba80dc2..294ff181c6 100644
--- a/english/java/com.groupdocs.metadata.search/_index.md
+++ b/english/java/com.groupdocs.metadata.search/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.search/
The **com.groupdocs.metadata.search** namespace contains base classes, utility classes and interfaces used across all formats and metadata standards.
+
## Classes
| Class | Description |
@@ -17,7 +18,7 @@ The **com.groupdocs.metadata.search** namespace contains base classes, utility c
| [AndSpecification](../com.groupdocs.metadata.search/andspecification) | Represents a composite specification that uses the logical AND operator to combine two given search specifications. |
| [AnySpecification](../com.groupdocs.metadata.search/anyspecification) | Represents a specification that applies no filters to a property. |
| [ContainsTagSpecification](../com.groupdocs.metadata.search/containstagspecification) | Represents a specification that checks whether the passed property contains the specified tag. |
-| [FallsIntoCategorySpecification](../com.groupdocs.metadata.search/fallsintocategoryspecification) | Represents a specification that verifies whether the passed property falls into a particular category (i.e. |
+| [FallsIntoCategorySpecification](../com.groupdocs.metadata.search/fallsintocategoryspecification) | Represents a specification that verifies whether the passed property falls into a particular category(i.e. |
| [NotSpecification](../com.groupdocs.metadata.search/notspecification) | Represents a composite specification that negates any other specification. |
| [OfTypeSpecification](../com.groupdocs.metadata.search/oftypespecification) | Represents a specification that filters properties of a particular type. |
| [OrSpecification](../com.groupdocs.metadata.search/orspecification) | Represents a composite specification that uses the logical OR operator to combine two given search specifications. |
diff --git a/english/java/com.groupdocs.metadata.search/andspecification/_index.md b/english/java/com.groupdocs.metadata.search/andspecification/_index.md
index c7e854c6c8..90a5bfe61d 100644
--- a/english/java/com.groupdocs.metadata.search/andspecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/andspecification/_index.md
@@ -13,13 +13,19 @@ public class AndSpecification extends Specification
```
Represents a composite specification that uses the logical AND operator to combine two given search specifications.
+
## Methods
| Method | Description |
| --- | --- |
-| [getLeft()](#getLeft--) | Gets the left specification. |
-| [getRight()](#getRight--) | Gets the right specification. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getLeft()](#getLeft--) | Gets the left specification.
+ |
+| [getRight()](#getRight--) | Gets the right specification.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### getLeft() {#getLeft--}
```
public final Specification getLeft()
@@ -28,8 +34,10 @@ public final Specification getLeft()
Gets the left specification.
+
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - The left specification.
+
### getRight() {#getRight--}
```
public final Specification getRight()
@@ -38,20 +46,27 @@ public final Specification getRight()
Gets the right specification.
+
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - The right specification.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/anyspecification/_index.md b/english/java/com.groupdocs.metadata.search/anyspecification/_index.md
index 2085e75230..5e13ef931b 100644
--- a/english/java/com.groupdocs.metadata.search/anyspecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/anyspecification/_index.md
@@ -13,6 +13,7 @@ public class AnySpecification extends Specification
```
Represents a specification that applies no filters to a property.
+
## Constructors
| Constructor | Description |
@@ -22,7 +23,10 @@ Represents a specification that applies no filters to a property.
| Method | Description |
| --- | --- |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### AnySpecification() {#AnySpecification--}
```
public AnySpecification()
@@ -35,12 +39,17 @@ public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/containstagspecification/_index.md b/english/java/com.groupdocs.metadata.search/containstagspecification/_index.md
index 0a55713de0..87a5b7d241 100644
--- a/english/java/com.groupdocs.metadata.search/containstagspecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/containstagspecification/_index.md
@@ -13,29 +13,41 @@ public class ContainsTagSpecification extends Specification
```
Represents a specification that checks whether the passed property contains the specified tag.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [ContainsTagSpecification(PropertyTag tag)](#ContainsTagSpecification-com.groupdocs.metadata.tagging.PropertyTag-) | Initializes a new instance of the ContainsTagSpecification class. |
+| [ContainsTagSpecification(PropertyTag tag)](#ContainsTagSpecification-com.groupdocs.metadata.tagging.PropertyTag-) | Initializes a new instance of the
+ContainsTagSpecification
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getTag()](#getTag--) | Gets the tag a property must contain to satisfy the specification. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getTag()](#getTag--) | Gets the tag a property must contain to satisfy the specification.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### ContainsTagSpecification(PropertyTag tag) {#ContainsTagSpecification-com.groupdocs.metadata.tagging.PropertyTag-}
```
public ContainsTagSpecification(PropertyTag tag)
```
-Initializes a new instance of the ContainsTagSpecification class.
+Initializes a new instance of the
+ContainsTagSpecification
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| tag | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The tag a property must contain to satisfy the specification. |
+| tag | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The tag a property must contain to satisfy the specification.
+ |
### getTag() {#getTag--}
```
@@ -45,20 +57,27 @@ public final PropertyTag getTag()
Gets the tag a property must contain to satisfy the specification.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag a property must contain to satisfy the specification.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/fallsintocategoryspecification/_index.md b/english/java/com.groupdocs.metadata.search/fallsintocategoryspecification/_index.md
index 71fc17ef99..39e706965f 100644
--- a/english/java/com.groupdocs.metadata.search/fallsintocategoryspecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/fallsintocategoryspecification/_index.md
@@ -12,30 +12,43 @@ java.lang.Object, [com.groupdocs.metadata.search.Specification](../../com.groupd
public class FallsIntoCategorySpecification extends Specification
```
-Represents a specification that verifies whether the passed property falls into a particular category (i.e. contains tags from the specified category).
+Represents a specification that verifies whether the passed property falls into a particular category
+(i.e. contains tags from the specified category).
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [FallsIntoCategorySpecification(TagCategory category)](#FallsIntoCategorySpecification-com.groupdocs.metadata.tagging.TagCategory-) | Initializes a new instance of the FallsIntoCategorySpecification class. |
+| [FallsIntoCategorySpecification(TagCategory category)](#FallsIntoCategorySpecification-com.groupdocs.metadata.tagging.TagCategory-) | Initializes a new instance of the
+FallsIntoCategorySpecification
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getCategory()](#getCategory--) | Gets the category into which a property must fall to satisfy the specification. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getCategory()](#getCategory--) | Gets the category into which a property must fall to satisfy the specification.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### FallsIntoCategorySpecification(TagCategory category) {#FallsIntoCategorySpecification-com.groupdocs.metadata.tagging.TagCategory-}
```
public FallsIntoCategorySpecification(TagCategory category)
```
-Initializes a new instance of the FallsIntoCategorySpecification class.
+Initializes a new instance of the
+FallsIntoCategorySpecification
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| category | [TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) | The category into which a property must fall to satisfy the specification. |
+| category | [TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) | The category into which a property must fall to satisfy the specification.
+ |
### getCategory() {#getCategory--}
```
@@ -45,20 +58,27 @@ public final TagCategory getCategory()
Gets the category into which a property must fall to satisfy the specification.
+
**Returns:**
[TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) - The category into which a property must fall to satisfy the specification.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/notspecification/_index.md b/english/java/com.groupdocs.metadata.search/notspecification/_index.md
index 76015cb148..28e22f474b 100644
--- a/english/java/com.groupdocs.metadata.search/notspecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/notspecification/_index.md
@@ -13,12 +13,17 @@ public class NotSpecification extends Specification
```
Represents a composite specification that negates any other specification.
+
## Methods
| Method | Description |
| --- | --- |
-| [getWrapped()](#getWrapped--) | Gets the base specification to be negated. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getWrapped()](#getWrapped--) | Gets the base specification to be negated.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### getWrapped() {#getWrapped--}
```
public final Specification getWrapped()
@@ -27,20 +32,27 @@ public final Specification getWrapped()
Gets the base specification to be negated.
+
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - The base specification to be negated.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/oftypespecification/_index.md b/english/java/com.groupdocs.metadata.search/oftypespecification/_index.md
index f3bac84556..839da54146 100644
--- a/english/java/com.groupdocs.metadata.search/oftypespecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/oftypespecification/_index.md
@@ -13,29 +13,41 @@ public class OfTypeSpecification extends Specification
```
Represents a specification that filters properties of a particular type.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [OfTypeSpecification(MetadataPropertyType propertyType)](#OfTypeSpecification-com.groupdocs.metadata.core.MetadataPropertyType-) | Initializes a new instance of the OfTypeSpecification class. |
+| [OfTypeSpecification(MetadataPropertyType propertyType)](#OfTypeSpecification-com.groupdocs.metadata.core.MetadataPropertyType-) | Initializes a new instance of the
+OfTypeSpecification
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPropertyType()](#getPropertyType--) | Gets the type of properties that satisfy the specification. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getPropertyType()](#getPropertyType--) | Gets the type of properties that satisfy the specification.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### OfTypeSpecification(MetadataPropertyType propertyType) {#OfTypeSpecification-com.groupdocs.metadata.core.MetadataPropertyType-}
```
public OfTypeSpecification(MetadataPropertyType propertyType)
```
-Initializes a new instance of the OfTypeSpecification class.
+Initializes a new instance of the
+OfTypeSpecification
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyType | [MetadataPropertyType](../../com.groupdocs.metadata.core/metadatapropertytype) | The type of properties that satisfy the specification. |
+| propertyType | [MetadataPropertyType](../../com.groupdocs.metadata.core/metadatapropertytype) | The type of properties that satisfy the specification.
+ |
### getPropertyType() {#getPropertyType--}
```
@@ -45,20 +57,27 @@ public final MetadataPropertyType getPropertyType()
Gets the type of properties that satisfy the specification.
+
**Returns:**
[MetadataPropertyType](../../com.groupdocs.metadata.core/metadatapropertytype) - The type of properties that satisfy the specification.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/orspecification/_index.md b/english/java/com.groupdocs.metadata.search/orspecification/_index.md
index e9032e301f..e338d24e37 100644
--- a/english/java/com.groupdocs.metadata.search/orspecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/orspecification/_index.md
@@ -13,13 +13,19 @@ public class OrSpecification extends Specification
```
Represents a composite specification that uses the logical OR operator to combine two given search specifications.
+
## Methods
| Method | Description |
| --- | --- |
-| [getLeft()](#getLeft--) | Gets the left specification. |
-| [getRight()](#getRight--) | Gets the right specification. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getLeft()](#getLeft--) | Gets the left specification.
+ |
+| [getRight()](#getRight--) | Gets the right specification.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### getLeft() {#getLeft--}
```
public final Specification getLeft()
@@ -28,8 +34,10 @@ public final Specification getLeft()
Gets the left specification.
+
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - The left specification.
+
### getRight() {#getRight--}
```
public final Specification getRight()
@@ -38,20 +46,27 @@ public final Specification getRight()
Gets the right specification.
+
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - The right specification.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.search/specification/_index.md b/english/java/com.groupdocs.metadata.search/specification/_index.md
index 6260bab0eb..1d0a30e322 100644
--- a/english/java/com.groupdocs.metadata.search/specification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/specification/_index.md
@@ -13,6 +13,7 @@ public abstract class Specification
```
Provides a base abstract class for search specifications that can be combined using logical operators.
+
## Constructors
| Constructor | Description |
@@ -22,10 +23,16 @@ Provides a base abstract class for search specifications that can be combined us
| Method | Description |
| --- | --- |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
-| [and(Specification other)](#and-com.groupdocs.metadata.search.Specification-) | Combines two search specifications using the logical AND operator. |
-| [or(Specification other)](#or-com.groupdocs.metadata.search.Specification-) | Combines two search specifications using the logical OR operator. |
-| [not()](#not--) | Negates the specification. |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
+| [and(Specification other)](#and-com.groupdocs.metadata.search.Specification-) | Combines two search specifications using the logical AND operator.
+ |
+| [or(Specification other)](#or-com.groupdocs.metadata.search.Specification-) | Combines two search specifications using the logical OR operator.
+ |
+| [not()](#not--) | Negates the specification.
+ |
### Specification() {#Specification--}
```
public Specification()
@@ -38,15 +45,20 @@ public abstract boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
### and(Specification other) {#and-com.groupdocs.metadata.search.Specification-}
```
public final Specification and(Specification other)
@@ -55,13 +67,16 @@ public final Specification and(Specification other)
Combines two search specifications using the logical AND operator.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| other | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to combine with. |
+| other | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to combine with.
+ |
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - A composite specification.
+
### or(Specification other) {#or-com.groupdocs.metadata.search.Specification-}
```
public final Specification or(Specification other)
@@ -70,13 +85,16 @@ public final Specification or(Specification other)
Combines two search specifications using the logical OR operator.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| other | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to combine with. |
+| other | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to combine with.
+ |
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - A composite specification.
+
### not() {#not--}
```
public final Specification not()
@@ -85,5 +103,7 @@ public final Specification not()
Negates the specification.
+
**Returns:**
[Specification](../../com.groupdocs.metadata.search/specification) - A composite specification.
+
diff --git a/english/java/com.groupdocs.metadata.search/withnamespecification/_index.md b/english/java/com.groupdocs.metadata.search/withnamespecification/_index.md
index 8af065d08f..3846e72bc0 100644
--- a/english/java/com.groupdocs.metadata.search/withnamespecification/_index.md
+++ b/english/java/com.groupdocs.metadata.search/withnamespecification/_index.md
@@ -13,31 +13,47 @@ public class WithNameSpecification extends Specification
```
Represents a specification that filters properties with a particular name.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [WithNameSpecification(String propertyName)](#WithNameSpecification-java.lang.String-) | Initializes a new instance of the WithNameSpecification class. |
-| [WithNameSpecification(String propertyName, boolean ignoreCase)](#WithNameSpecification-java.lang.String-boolean-) | Initializes a new instance of the WithNameSpecification class. |
+| [WithNameSpecification(String propertyName)](#WithNameSpecification-java.lang.String-) | Initializes a new instance of the
+WithNameSpecification
+ class.
+ |
+| [WithNameSpecification(String propertyName, boolean ignoreCase)](#WithNameSpecification-java.lang.String-boolean-) | Initializes a new instance of the
+WithNameSpecification
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getPropertyName()](#getPropertyName--) | Gets the name of properties that satisfy the specification. |
-| [getIgnoreCase()](#getIgnoreCase--) | Gets a value indicating whether the case of the strings being compared should be ignored. |
-| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a MetadataProperty satisfies the specification. |
+| [getPropertyName()](#getPropertyName--) | Gets the name of properties that satisfy the specification.
+ |
+| [getIgnoreCase()](#getIgnoreCase--) | Gets a value indicating whether the case of the strings being compared should be ignored.
+ |
+| [isSatisfiedBy(MetadataProperty candidate)](#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-) | Verifies whether a
+MetadataProperty
+ satisfies the specification.
+ |
### WithNameSpecification(String propertyName) {#WithNameSpecification-java.lang.String-}
```
public WithNameSpecification(String propertyName)
```
-Initializes a new instance of the WithNameSpecification class.
+Initializes a new instance of the
+WithNameSpecification
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The type of properties that satisfy the specification. |
+| propertyName | java.lang.String | The type of properties that satisfy the specification.
+ |
### WithNameSpecification(String propertyName, boolean ignoreCase) {#WithNameSpecification-java.lang.String-boolean-}
```
@@ -45,13 +61,18 @@ public WithNameSpecification(String propertyName, boolean ignoreCase)
```
-Initializes a new instance of the WithNameSpecification class.
+Initializes a new instance of the
+WithNameSpecification
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| propertyName | java.lang.String | The type of properties that satisfy the specification. |
-| ignoreCase | boolean | A value indicating whether the case of the strings being compared should be ignored. |
+| propertyName | java.lang.String | The type of properties that satisfy the specification.
+ |
+| ignoreCase | boolean | A value indicating whether the case of the strings being compared should be ignored.
+ |
### getPropertyName() {#getPropertyName--}
```
@@ -61,8 +82,10 @@ public final String getPropertyName()
Gets the name of properties that satisfy the specification.
+
**Returns:**
java.lang.String - The name of properties that satisfy the specification.
+
### getIgnoreCase() {#getIgnoreCase--}
```
public final boolean getIgnoreCase()
@@ -71,20 +94,27 @@ public final boolean getIgnoreCase()
Gets a value indicating whether the case of the strings being compared should be ignored.
+
**Returns:**
boolean - True if the case should be ignored; otherwise, false.
+
### isSatisfiedBy(MetadataProperty candidate) {#isSatisfiedBy-com.groupdocs.metadata.core.MetadataProperty-}
```
public boolean isSatisfiedBy(MetadataProperty candidate)
```
-Verifies whether a MetadataProperty satisfies the specification.
+Verifies whether a
+MetadataProperty
+ satisfies the specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test. |
+| candidate | [MetadataProperty](../../com.groupdocs.metadata.core/metadataproperty) | A metadata property to test.
+ |
**Returns:**
boolean - True, if the passed property satisfies the specification; otherwise, false.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/_index.md b/english/java/com.groupdocs.metadata.tagging/_index.md
index 0ba66578ae..9add902348 100644
--- a/english/java/com.groupdocs.metadata.tagging/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata.tagging/
The **com.groupdocs.metadata.tagging** namespace contains various sets of tags with which most important metadata properties are marked.The tags allow users to find and update metadata properties in different packages regardless of the metadata standard and file format.
+
## Classes
| Class | Description |
@@ -17,7 +18,7 @@ The **com.groupdocs.metadata.tagging** namespace contains various sets of tags w
| [ContentTagCategory](../com.groupdocs.metadata.tagging/contenttagcategory) | Provides tags that are attached to metadata properties describing the content of a file. |
| [CorporateTagCategory](../com.groupdocs.metadata.tagging/corporatetagcategory) | Provides tags intended to mark metadata properties related to a company that participated in file creation. |
| [DocumentTagCategory](../com.groupdocs.metadata.tagging/documenttagcategory) | Provides tags that are applied to document-specific properties only. |
-| [LegalTagCategory](../com.groupdocs.metadata.tagging/legaltagcategory) | Provides tags that are attached to metadata properties holding information about the owners of the file content and the rules under which the content can be used. |
+| [LegalTagCategory](../com.groupdocs.metadata.tagging/legaltagcategory) | Provides tags that are attached to metadata properties holding information about the owners of the file contentand the rules under which the content can be used. |
| [OriginTagCategory](../com.groupdocs.metadata.tagging/origintagcategory) | Provides tags that help a user to determine the origin of a file (e.g. |
| [PersonTagCategory](../com.groupdocs.metadata.tagging/persontagcategory) | Provides tags that mark metadata properties holding information about the people contributed to file or intellectual content creation. |
| [PropertyTag](../com.groupdocs.metadata.tagging/propertytag) | Represents a tag used to mark metadata properties. |
diff --git a/english/java/com.groupdocs.metadata.tagging/contenttagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/contenttagcategory/_index.md
index 43099e8f6f..cc20220bf3 100644
--- a/english/java/com.groupdocs.metadata.tagging/contenttagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/contenttagcategory/_index.md
@@ -12,28 +12,47 @@ java.lang.Object, [com.groupdocs.metadata.tagging.TagCategory](../../com.groupdo
public class ContentTagCategory extends TagCategory
```
-Provides tags that are attached to metadata properties describing the content of a file. The tags are useful to find out the content language, type (genre), subject, rating, etc.
+Provides tags that are attached to metadata properties describing the content of a file.
+The tags are useful to find out the content language, type (genre), subject, rating, etc.
+
## Methods
| Method | Description |
| --- | --- |
-| [getDescription()](#getDescription--) | Gets the tag that labels properties containing a description of a file. |
-| [getComment()](#getComment--) | Gets the tag that denotes a comment left by a person who contributed in file creation. |
-| [getTitle()](#getTitle--) | Gets the tag that labels the name given to a file. |
-| [getThumbnail()](#getThumbnail--) | Gets the tag that indicates a thumbnail image attached to a file. |
-| [getLanguage()](#getLanguage--) | Gets the tag indicating the language of the intellectual content of a file. |
-| [getSubject()](#getSubject--) | Gets the tag that denotes the subject the intellectual content is focused on. |
-| [getTableOfContents()](#getTableOfContents--) | Gets the tag indicating properties containing the table of contents of a file. |
-| [getType()](#getType--) | Gets the tag that indicates the nature or genre of the content of a file. |
-| [getRating()](#getRating--) | Gets the tag labeling a user assigned rating of a file. |
-| [getKeywords()](#getKeywords--) | Gets the tag that denotes a metadata property containing keywords that describe the content. |
-| [getFileFormat()](#getFileFormat--) | Gets the tag that indicates a metadata property containing information about the format of a file. |
-| [getStatus()](#getStatus--) | Gets the tag that denotes the status of a file. |
-| [getVersion()](#getVersion--) | Gets the tag labeling the version or revision of a file. |
-| [getSharedDoc()](#getSharedDoc--) | Gets the tag that denotes which is a common document for several manufacturers. |
-| [getHyperlinksChanged()](#getHyperlinksChanged--) | Gets the tag that denotes the indicates that one or more hyperlinks in this part have been updated exclusively in this part by the manufacturer. |
-| [getBody()](#getBody--) | Gets the tag that denotes the body of a email file. |
-| [getAlbum()](#getAlbum--) | Gets the tag that denotes the album name of a audio file. |
+| [getDescription()](#getDescription--) | Gets the tag that labels properties containing a description of a file.
+ |
+| [getComment()](#getComment--) | Gets the tag that denotes a comment left by a person who contributed in file creation.
+ |
+| [getTitle()](#getTitle--) | Gets the tag that labels the name given to a file.
+ |
+| [getThumbnail()](#getThumbnail--) | Gets the tag that indicates a thumbnail image attached to a file.
+ |
+| [getLanguage()](#getLanguage--) | Gets the tag indicating the language of the intellectual content of a file.
+ |
+| [getSubject()](#getSubject--) | Gets the tag that denotes the subject the intellectual content is focused on.
+ |
+| [getTableOfContents()](#getTableOfContents--) | Gets the tag indicating properties containing the table of contents of a file.
+ |
+| [getType()](#getType--) | Gets the tag that indicates the nature or genre of the content of a file.
+ |
+| [getRating()](#getRating--) | Gets the tag labeling a user assigned rating of a file.
+ |
+| [getKeywords()](#getKeywords--) | Gets the tag that denotes a metadata property containing keywords that describe the content.
+ |
+| [getFileFormat()](#getFileFormat--) | Gets the tag that indicates a metadata property containing information about the format of a file.
+ |
+| [getStatus()](#getStatus--) | Gets the tag that denotes the status of a file.
+ |
+| [getVersion()](#getVersion--) | Gets the tag labeling the version or revision of a file.
+ |
+| [getSharedDoc()](#getSharedDoc--) | Gets the tag that denotes which is a common document for several manufacturers.
+ |
+| [getHyperlinksChanged()](#getHyperlinksChanged--) | Gets the tag that denotes the indicates that one or more hyperlinks in this part have been updated exclusively in this part by the manufacturer.
+ |
+| [getBody()](#getBody--) | Gets the tag that denotes the body of a email file.
+ |
+| [getAlbum()](#getAlbum--) | Gets the tag that denotes the album name of a audio file.
+ |
### getDescription() {#getDescription--}
```
public final PropertyTag getDescription()
@@ -42,8 +61,10 @@ public final PropertyTag getDescription()
Gets the tag that labels properties containing a description of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels properties containing a description of a file.
+
### getComment() {#getComment--}
```
public final PropertyTag getComment()
@@ -52,8 +73,10 @@ public final PropertyTag getComment()
Gets the tag that denotes a comment left by a person who contributed in file creation.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes a comment left by a person who contributed in file creation.
+
### getTitle() {#getTitle--}
```
public final PropertyTag getTitle()
@@ -62,8 +85,10 @@ public final PropertyTag getTitle()
Gets the tag that labels the name given to a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels the name given to a file.
+
### getThumbnail() {#getThumbnail--}
```
public final PropertyTag getThumbnail()
@@ -72,8 +97,10 @@ public final PropertyTag getThumbnail()
Gets the tag that indicates a thumbnail image attached to a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates a thumbnail image attached to a file.
+
### getLanguage() {#getLanguage--}
```
public final PropertyTag getLanguage()
@@ -82,6 +109,7 @@ public final PropertyTag getLanguage()
Gets the tag indicating the language of the intellectual content of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag)
### getSubject() {#getSubject--}
@@ -92,8 +120,10 @@ public final PropertyTag getSubject()
Gets the tag that denotes the subject the intellectual content is focused on.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the subject the intellectual content is focused on.
+
### getTableOfContents() {#getTableOfContents--}
```
public final PropertyTag getTableOfContents()
@@ -102,6 +132,7 @@ public final PropertyTag getTableOfContents()
Gets the tag indicating properties containing the table of contents of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag)
### getType() {#getType--}
@@ -110,7 +141,9 @@ public final PropertyTag getType()
```
-Gets the tag that indicates the nature or genre of the content of a file. It also includes terms describing general categories, functions, aggregation levels for the content.
+Gets the tag that indicates the nature or genre of the content of a file.
+It also includes terms describing general categories, functions, aggregation levels for the content.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag)
@@ -122,8 +155,10 @@ public final PropertyTag getRating()
Gets the tag labeling a user assigned rating of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag labeling a user assigned rating of a file.
+
### getKeywords() {#getKeywords--}
```
public final PropertyTag getKeywords()
@@ -132,8 +167,10 @@ public final PropertyTag getKeywords()
Gets the tag that denotes a metadata property containing keywords that describe the content.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes a metadata property containing keywords that describe the content.
+
### getFileFormat() {#getFileFormat--}
```
public final PropertyTag getFileFormat()
@@ -142,8 +179,10 @@ public final PropertyTag getFileFormat()
Gets the tag that indicates a metadata property containing information about the format of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates a metadata property containing information about the format of a file.
+
### getStatus() {#getStatus--}
```
public final PropertyTag getStatus()
@@ -152,8 +191,10 @@ public final PropertyTag getStatus()
Gets the tag that denotes the status of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the status of a file.
+
### getVersion() {#getVersion--}
```
public final PropertyTag getVersion()
@@ -162,8 +203,10 @@ public final PropertyTag getVersion()
Gets the tag labeling the version or revision of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag labeling the version or revision of a file.
+
### getSharedDoc() {#getSharedDoc--}
```
public final PropertyTag getSharedDoc()
@@ -172,8 +215,10 @@ public final PropertyTag getSharedDoc()
Gets the tag that denotes which is a common document for several manufacturers.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes which is a common document for several manufacturers.
+
### getHyperlinksChanged() {#getHyperlinksChanged--}
```
public final PropertyTag getHyperlinksChanged()
@@ -182,8 +227,10 @@ public final PropertyTag getHyperlinksChanged()
Gets the tag that denotes the indicates that one or more hyperlinks in this part have been updated exclusively in this part by the manufacturer.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes indicates that one or more hyperlinks in this part have been updated exclusively in this part by the manufacturer.
+
### getBody() {#getBody--}
```
public final PropertyTag getBody()
@@ -192,8 +239,10 @@ public final PropertyTag getBody()
Gets the tag that denotes the body of a email file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the body of a email file.
+
### getAlbum() {#getAlbum--}
```
public final PropertyTag getAlbum()
@@ -201,8 +250,8 @@ public final PropertyTag getAlbum()
Gets the tag that denotes the album name of a audio file.
-
Value: The tag that denotes the album name of a audio file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag)
diff --git a/english/java/com.groupdocs.metadata.tagging/corporatetagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/corporatetagcategory/_index.md
index ff7bc18d06..6e927e4318 100644
--- a/english/java/com.groupdocs.metadata.tagging/corporatetagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/corporatetagcategory/_index.md
@@ -13,19 +13,24 @@ public class CorporateTagCategory extends TagCategory
```
Provides tags intended to mark metadata properties related to a company that participated in file creation.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCompany()](#getCompany--) | Gets the tag that labels a property containing information about a company contributed to file creation. |
-| [getManager()](#getManager--) | Gets the tag that labels information about a person who managed the making process of a file. |
+| [getCompany()](#getCompany--) | Gets the tag that labels a property containing information about a company contributed to file creation.
+ |
+| [getManager()](#getManager--) | Gets the tag that labels information about a person who managed the making process of a file.
+ |
### getCompany() {#getCompany--}
```
public final PropertyTag getCompany()
```
-Gets the tag that labels a property containing information about a company contributed to file creation. Alternatively, the tag can refer to a company the file content is about.
+Gets the tag that labels a property containing information about a company contributed to file creation.
+Alternatively, the tag can refer to a company the file content is about.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag)
@@ -37,5 +42,7 @@ public final PropertyTag getManager()
Gets the tag that labels information about a person who managed the making process of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels information about a person who managed the making process of a file.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/documenttagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/documenttagcategory/_index.md
index e1b0c302ca..84cdc89883 100644
--- a/english/java/com.groupdocs.metadata.tagging/documenttagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/documenttagcategory/_index.md
@@ -12,19 +12,29 @@ java.lang.Object, [com.groupdocs.metadata.tagging.TagCategory](../../com.groupdo
public class DocumentTagCategory extends TagCategory
```
-Provides tags that are applied to document-specific properties only. The tags can be useful to determine from which part of an office document a property was extracted.
+Provides tags that are applied to document-specific properties only.
+The tags can be useful to determine from which part of an office document a property was extracted.
+
## Methods
| Method | Description |
| --- | --- |
-| [getBuiltIn()](#getBuiltIn--) | Gets the tag that indicates that the property it labels is built-in. |
-| [getReadOnly()](#getReadOnly--) | Gets the tag that indicates that the property it labels is read-only and cannot be changed by GroupDocs.Metadata. |
-| [getHiddenData()](#getHiddenData--) | Gets the tag indicating a document part that is not visible for regular users. |
-| [getUserComment()](#getUserComment--) | Gets the tag that labels user comments shown in the document content. |
-| [getPage()](#getPage--) | Gets the tag that denotes a property holding information about a document page. |
-| [getStatistic()](#getStatistic--) | Gets the tag indicating a property containing document statistics (word count, character count, etc). |
-| [getField()](#getField--) | Gets the tag that denotes a property holding information about a form field or calculated field extracted from a document. |
-| [getRevision()](#getRevision--) | Get the tag labeling a property containing information about a document revision (tracked change). |
+| [getBuiltIn()](#getBuiltIn--) | Gets the tag that indicates that the property it labels is built-in.
+ |
+| [getReadOnly()](#getReadOnly--) | Gets the tag that indicates that the property it labels is read-only and cannot be changed by GroupDocs.Metadata.
+ |
+| [getHiddenData()](#getHiddenData--) | Gets the tag indicating a document part that is not visible for regular users.
+ |
+| [getUserComment()](#getUserComment--) | Gets the tag that labels user comments shown in the document content.
+ |
+| [getPage()](#getPage--) | Gets the tag that denotes a property holding information about a document page.
+ |
+| [getStatistic()](#getStatistic--) | Gets the tag indicating a property containing document statistics (word count, character count, etc).
+ |
+| [getField()](#getField--) | Gets the tag that denotes a property holding information about a form field or calculated field extracted from a document.
+ |
+| [getRevision()](#getRevision--) | Get the tag labeling a property containing information about a document revision (tracked change).
+ |
### getBuiltIn() {#getBuiltIn--}
```
public final PropertyTag getBuiltIn()
@@ -33,8 +43,10 @@ public final PropertyTag getBuiltIn()
Gets the tag that indicates that the property it labels is built-in.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates that the property it labels is built-in.
+
### getReadOnly() {#getReadOnly--}
```
public final PropertyTag getReadOnly()
@@ -43,8 +55,10 @@ public final PropertyTag getReadOnly()
Gets the tag that indicates that the property it labels is read-only and cannot be changed by GroupDocs.Metadata.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates that the property it labels is read-only and cannot be changed by GroupDocs.Metadata.
+
### getHiddenData() {#getHiddenData--}
```
public final PropertyTag getHiddenData()
@@ -53,8 +67,10 @@ public final PropertyTag getHiddenData()
Gets the tag indicating a document part that is not visible for regular users.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag indicating a document part that is not visible for regular users.
+
### getUserComment() {#getUserComment--}
```
public final PropertyTag getUserComment()
@@ -63,8 +79,10 @@ public final PropertyTag getUserComment()
Gets the tag that labels user comments shown in the document content.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels user comments shown in the document content.
+
### getPage() {#getPage--}
```
public final PropertyTag getPage()
@@ -73,8 +91,10 @@ public final PropertyTag getPage()
Gets the tag that denotes a property holding information about a document page.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes a property holding information about a document page.
+
### getStatistic() {#getStatistic--}
```
public final PropertyTag getStatistic()
@@ -83,8 +103,10 @@ public final PropertyTag getStatistic()
Gets the tag indicating a property containing document statistics (word count, character count, etc).
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag indicating a property containing document statistics (word count, character count, etc).
+
### getField() {#getField--}
```
public final PropertyTag getField()
@@ -93,8 +115,10 @@ public final PropertyTag getField()
Gets the tag that denotes a property holding information about a form field or calculated field extracted from a document.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes a property holding information about a form field or calculated field extracted from a document.
+
### getRevision() {#getRevision--}
```
public final PropertyTag getRevision()
@@ -103,5 +127,7 @@ public final PropertyTag getRevision()
Get the tag labeling a property containing information about a document revision (tracked change).
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag labeling a property containing information about a document revision (tracked change).
+
diff --git a/english/java/com.groupdocs.metadata.tagging/legaltagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/legaltagcategory/_index.md
index 031f632797..5d9a56f89f 100644
--- a/english/java/com.groupdocs.metadata.tagging/legaltagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/legaltagcategory/_index.md
@@ -12,14 +12,19 @@ java.lang.Object, [com.groupdocs.metadata.tagging.TagCategory](../../com.groupdo
public class LegalTagCategory extends TagCategory
```
-Provides tags that are attached to metadata properties holding information about the owners of the file content and the rules under which the content can be used.
+Provides tags that are attached to metadata properties holding information about the owners of the file content
+and the rules under which the content can be used.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCopyright()](#getCopyright--) | Gets the tag that labels a copyright notice provided by the owner. |
-| [getOwner()](#getOwner--) | Gets the tag that denotes information about the owners of a file. |
-| [getUsageTerms()](#getUsageTerms--) | Gets the tag that labels instructions on how the file can be used. |
+| [getCopyright()](#getCopyright--) | Gets the tag that labels a copyright notice provided by the owner.
+ |
+| [getOwner()](#getOwner--) | Gets the tag that denotes information about the owners of a file.
+ |
+| [getUsageTerms()](#getUsageTerms--) | Gets the tag that labels instructions on how the file can be used.
+ |
### getCopyright() {#getCopyright--}
```
public final PropertyTag getCopyright()
@@ -28,8 +33,10 @@ public final PropertyTag getCopyright()
Gets the tag that labels a copyright notice provided by the owner.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a copyright notice provided by the owner.
+
### getOwner() {#getOwner--}
```
public final PropertyTag getOwner()
@@ -38,8 +45,10 @@ public final PropertyTag getOwner()
Gets the tag that denotes information about the owners of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes information about the owners of a file.
+
### getUsageTerms() {#getUsageTerms--}
```
public final PropertyTag getUsageTerms()
@@ -48,5 +57,7 @@ public final PropertyTag getUsageTerms()
Gets the tag that labels instructions on how the file can be used.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels instructions on how the file can be used.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/origintagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/origintagcategory/_index.md
index ffa44d96eb..7e9725867b 100644
--- a/english/java/com.groupdocs.metadata.tagging/origintagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/origintagcategory/_index.md
@@ -13,12 +13,15 @@ public class OriginTagCategory extends TagCategory
```
Provides tags that help a user to determine the origin of a file (e.g. template or another source).
+
## Methods
| Method | Description |
| --- | --- |
-| [getTemplate()](#getTemplate--) | Gets the tag that denotes the template from which the file was created. |
-| [getSource()](#getSource--) | Gets the tag that labels a reference to a resource from which the file content is derived. |
+| [getTemplate()](#getTemplate--) | Gets the tag that denotes the template from which the file was created.
+ |
+| [getSource()](#getSource--) | Gets the tag that labels a reference to a resource from which the file content is derived.
+ |
### getTemplate() {#getTemplate--}
```
public final PropertyTag getTemplate()
@@ -27,8 +30,10 @@ public final PropertyTag getTemplate()
Gets the tag that denotes the template from which the file was created.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the template from which the file was created.
+
### getSource() {#getSource--}
```
public final PropertyTag getSource()
@@ -37,5 +42,7 @@ public final PropertyTag getSource()
Gets the tag that labels a reference to a resource from which the file content is derived.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a reference to a resource from which the file content is derived.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/persontagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/persontagcategory/_index.md
index 946b02c139..096a6a4756 100644
--- a/english/java/com.groupdocs.metadata.tagging/persontagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/persontagcategory/_index.md
@@ -12,20 +12,32 @@ java.lang.Object, [com.groupdocs.metadata.tagging.TagCategory](../../com.groupdo
public class PersonTagCategory extends TagCategory
```
-Provides tags that mark metadata properties holding information about the people contributed to file or intellectual content creation. These tags can help you to find the document creator, editor or even the client for whom the work was performed. Despite the name of the category some metadata properties marked with the tags can contain a company name rather than a person's name.
+Provides tags that mark metadata properties holding information about the people contributed to file or intellectual content creation.
+These tags can help you to find the document creator, editor or even the client for whom the work was performed.
+Despite the name of the category some metadata properties marked with the tags can contain a company name rather than a person's name.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCreator()](#getCreator--) | Gets the tag that denotes the original author of a file/document. |
-| [getContributor()](#getContributor--) | Gets the tag that labels a property containing the name of a person who somehow contributed to file creation. |
-| [getEditor()](#getEditor--) | Gets the tag that labels a person who edited a file. |
-| [getModel()](#getModel--) | Gets the tag that denotes information about a person the content of the file is about. |
-| [getClient()](#getClient--) | Gets the tag that labels information about the client for whom the file/intellectual content was created. |
-| [getManager()](#getManager--) | Gets the tag that labels information about a person who managed the making process of a file. |
-| [getPublisher()](#getPublisher--) | Gets the tag marking a person responsible for making the file available. |
-| [getArtist()](#getArtist--) | Gets the tag that denotes the original performer of a file. |
-| [getRecipient()](#getRecipient--) | Gets the tag that denotes the original recipients of a mail. |
+| [getCreator()](#getCreator--) | Gets the tag that denotes the original author of a file/document.
+ |
+| [getContributor()](#getContributor--) | Gets the tag that labels a property containing the name of a person who somehow contributed to file creation.
+ |
+| [getEditor()](#getEditor--) | Gets the tag that labels a person who edited a file.
+ |
+| [getModel()](#getModel--) | Gets the tag that denotes information about a person the content of the file is about.
+ |
+| [getClient()](#getClient--) | Gets the tag that labels information about the client for whom the file/intellectual content was created.
+ |
+| [getManager()](#getManager--) | Gets the tag that labels information about a person who managed the making process of a file.
+ |
+| [getPublisher()](#getPublisher--) | Gets the tag marking a person responsible for making the file available.
+ |
+| [getArtist()](#getArtist--) | Gets the tag that denotes the original performer of a file.
+ |
+| [getRecipient()](#getRecipient--) | Gets the tag that denotes the original recipients of a mail.
+ |
### getCreator() {#getCreator--}
```
public final PropertyTag getCreator()
@@ -34,38 +46,50 @@ public final PropertyTag getCreator()
Gets the tag that denotes the original author of a file/document.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the original author of a file/document.
+
### getContributor() {#getContributor--}
```
public final PropertyTag getContributor()
```
-Gets the tag that labels a property containing the name of a person who somehow contributed to file creation. Please note that the tag is not applied towards metadata properties marked with more specific tags from this category. E.g. if a property labeled with the Creator tag.
+Gets the tag that labels a property containing the name of a person who somehow contributed to file creation.
+Please note that the tag is not applied towards metadata properties marked with more specific tags from this category.
+E.g. if a property labeled with the Creator tag.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a property containing the name of a person who somehow contributed to file creation.
+
### getEditor() {#getEditor--}
```
public final PropertyTag getEditor()
```
-Gets the tag that labels a person who edited a file. The tag is usually used to mark a property containing information about the last editor.
+Gets the tag that labels a person who edited a file.
+The tag is usually used to mark a property containing information about the last editor.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a person who edited a file.
+
### getModel() {#getModel--}
```
public final PropertyTag getModel()
```
-Gets the tag that denotes information about a person the content of the file is about. For photos that is a person shown in the image.
+Gets the tag that denotes information about a person the content of the file is about.
+For photos that is a person shown in the image.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes information about a person the content of the file is about.
+
### getClient() {#getClient--}
```
public final PropertyTag getClient()
@@ -74,8 +98,10 @@ public final PropertyTag getClient()
Gets the tag that labels information about the client for whom the file/intellectual content was created.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels information about the client for whom the file/intellectual content was created.
+
### getManager() {#getManager--}
```
public final PropertyTag getManager()
@@ -84,8 +110,10 @@ public final PropertyTag getManager()
Gets the tag that labels information about a person who managed the making process of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels information about a person who managed the making process of a file.
+
### getPublisher() {#getPublisher--}
```
public final PropertyTag getPublisher()
@@ -94,8 +122,10 @@ public final PropertyTag getPublisher()
Gets the tag marking a person responsible for making the file available.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag marking a person responsible for making the file available.
+
### getArtist() {#getArtist--}
```
public final PropertyTag getArtist()
@@ -104,8 +134,10 @@ public final PropertyTag getArtist()
Gets the tag that denotes the original performer of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the original performer of a file.
+
### getRecipient() {#getRecipient--}
```
public final PropertyTag getRecipient()
@@ -114,5 +146,7 @@ public final PropertyTag getRecipient()
Gets the tag that denotes the original recipients of a mail.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the original recipients of a mail.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/propertytag/_index.md b/english/java/com.groupdocs.metadata.tagging/propertytag/_index.md
index 276051ca24..2348939d1d 100644
--- a/english/java/com.groupdocs.metadata.tagging/propertytag/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/propertytag/_index.md
@@ -16,17 +16,25 @@ public final class PropertyTag implements System.IEquatable
```
Represents a tag used to mark metadata properties.
+
## Methods
| Method | Description |
| --- | --- |
-| [getCategory()](#getCategory--) | Gets the tag category. |
-| [equals(PropertyTag other)](#equals-com.groupdocs.metadata.tagging.PropertyTag-) | Indicates whether the current object is equal to another object of the same type. |
-| [equals(Object obj)](#equals-java.lang.Object-) | Determines whether the specified object is equal to the current object. |
-| [hashCode()](#hashCode--) | Serves as the default hash function. |
-| [op_Equality(PropertyTag left, PropertyTag right)](#op-Equality-com.groupdocs.metadata.tagging.PropertyTag-com.groupdocs.metadata.tagging.PropertyTag-) | Indicates whether two objects of the same type are equal. |
-| [op_Inequality(PropertyTag left, PropertyTag right)](#op-Inequality-com.groupdocs.metadata.tagging.PropertyTag-com.groupdocs.metadata.tagging.PropertyTag-) | Indicates whether two objects of the same type are not equal. |
-| [toString()](#toString--) | Returns a string that represents the current object. |
+| [getCategory()](#getCategory--) | Gets the tag category.
+ |
+| [equals(PropertyTag other)](#equals-com.groupdocs.metadata.tagging.PropertyTag-) | Indicates whether the current object is equal to another object of the same type.
+ |
+| [equals(Object obj)](#equals-java.lang.Object-) | Determines whether the specified object is equal to the current object.
+ |
+| [hashCode()](#hashCode--) | Serves as the default hash function.
+ |
+| [op_Equality(PropertyTag left, PropertyTag right)](#op-Equality-com.groupdocs.metadata.tagging.PropertyTag-com.groupdocs.metadata.tagging.PropertyTag-) | Indicates whether two objects of the same type are equal.
+ |
+| [op_Inequality(PropertyTag left, PropertyTag right)](#op-Inequality-com.groupdocs.metadata.tagging.PropertyTag-com.groupdocs.metadata.tagging.PropertyTag-) | Indicates whether two objects of the same type are not equal.
+ |
+| [toString()](#toString--) | Returns a string that represents the current object.
+ |
### getCategory() {#getCategory--}
```
public final TagCategory getCategory()
@@ -35,8 +43,10 @@ public final TagCategory getCategory()
Gets the tag category.
+
**Returns:**
[TagCategory](../../com.groupdocs.metadata.tagging/tagcategory) - The tag category.
+
### equals(PropertyTag other) {#equals-com.groupdocs.metadata.tagging.PropertyTag-}
```
public final boolean equals(PropertyTag other)
@@ -45,13 +55,16 @@ public final boolean equals(PropertyTag other)
Indicates whether the current object is equal to another object of the same type.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| other | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | An object to compare with this object. |
+| other | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | An object to compare with this object.
+ |
**Returns:**
boolean - True if the current object is equal to the other parameter; otherwise, false.
+
### equals(Object obj) {#equals-java.lang.Object-}
```
public boolean equals(Object obj)
@@ -60,13 +73,16 @@ public boolean equals(Object obj)
Determines whether the specified object is equal to the current object.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| obj | java.lang.Object | The object to compare with the current object. |
+| obj | java.lang.Object | The object to compare with the current object.
+ |
**Returns:**
boolean - True if the specified object is equal to the current object; otherwise, false.
+
### hashCode() {#hashCode--}
```
public int hashCode()
@@ -75,8 +91,10 @@ public int hashCode()
Serves as the default hash function.
+
**Returns:**
int - A hash code for the current object.
+
### op_Equality(PropertyTag left, PropertyTag right) {#op-Equality-com.groupdocs.metadata.tagging.PropertyTag-com.groupdocs.metadata.tagging.PropertyTag-}
```
public static boolean op_Equality(PropertyTag left, PropertyTag right)
@@ -85,14 +103,18 @@ public static boolean op_Equality(PropertyTag left, PropertyTag right)
Indicates whether two objects of the same type are equal.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| left | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The left object. |
-| right | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The rigt object. |
+| left | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The left object.
+ |
+| right | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The rigt object.
+ |
**Returns:**
boolean - True if the objects are equal; otherwise, false.
+
### op_Inequality(PropertyTag left, PropertyTag right) {#op-Inequality-com.groupdocs.metadata.tagging.PropertyTag-com.groupdocs.metadata.tagging.PropertyTag-}
```
public static boolean op_Inequality(PropertyTag left, PropertyTag right)
@@ -101,14 +123,18 @@ public static boolean op_Inequality(PropertyTag left, PropertyTag right)
Indicates whether two objects of the same type are not equal.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| left | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The left object. |
-| right | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The rigt object. |
+| left | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The left object.
+ |
+| right | [PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) | The rigt object.
+ |
**Returns:**
boolean - True if the objects are not equal; otherwise, false.
+
### toString() {#toString--}
```
public String toString()
@@ -117,5 +143,7 @@ public String toString()
Returns a string that represents the current object.
+
**Returns:**
java.lang.String - A string that represents the current object.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/propertytypetagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/propertytypetagcategory/_index.md
index 490aa101d3..bd2fa117d4 100644
--- a/english/java/com.groupdocs.metadata.tagging/propertytypetagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/propertytypetagcategory/_index.md
@@ -12,20 +12,32 @@ java.lang.Object, [com.groupdocs.metadata.tagging.TagCategory](../../com.groupdo
public class PropertyTypeTagCategory extends TagCategory
```
-Provides tags that bear additional information about the type of a property rather than about its purpose. Using these tags you can detect metadata properties that contain URL links to external resources, properties describing fonts, colors, geolocation and so on.
+Provides tags that bear additional information about the type of a property rather than about its purpose.
+Using these tags you can detect metadata properties that contain URL links to external resources,
+properties describing fonts, colors, geolocation and so on.
+
## Methods
| Method | Description |
| --- | --- |
-| [getLink()](#getLink--) | Gets the tag that denotes a property being a link to an external resource. |
-| [getHash()](#getHash--) | Gets the tag that labels a property holding a hash of the file content. |
-| [getMeasure()](#getMeasure--) | Gets the tag that indicates a property being a measured characteristic of the content. |
-| [getDigitalSignature()](#getDigitalSignature--) | Gets the tag that labels a digital signature. |
-| [getIdentifier()](#getIdentifier--) | Gets the tag that labels a property containing an identifier of the content. |
-| [getLocation()](#getLocation--) | Gets the tag that indicates a property being a reference to a geographical location. |
-| [getFont()](#getFont--) | Gets the tag that denotes a property describing font characteristics. |
-| [getColor()](#getColor--) | Gets the tag that labels a property describing a color. |
-| [getBitrate()](#getBitrate--) | Gets the tag that labels a property describing a bitrate. |
+| [getLink()](#getLink--) | Gets the tag that denotes a property being a link to an external resource.
+ |
+| [getHash()](#getHash--) | Gets the tag that labels a property holding a hash of the file content.
+ |
+| [getMeasure()](#getMeasure--) | Gets the tag that indicates a property being a measured characteristic of the content.
+ |
+| [getDigitalSignature()](#getDigitalSignature--) | Gets the tag that labels a digital signature.
+ |
+| [getIdentifier()](#getIdentifier--) | Gets the tag that labels a property containing an identifier of the content.
+ |
+| [getLocation()](#getLocation--) | Gets the tag that indicates a property being a reference to a geographical location.
+ |
+| [getFont()](#getFont--) | Gets the tag that denotes a property describing font characteristics.
+ |
+| [getColor()](#getColor--) | Gets the tag that labels a property describing a color.
+ |
+| [getBitrate()](#getBitrate--) | Gets the tag that labels a property describing a bitrate.
+ |
### getLink() {#getLink--}
```
public final PropertyTag getLink()
@@ -34,8 +46,10 @@ public final PropertyTag getLink()
Gets the tag that denotes a property being a link to an external resource.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes a property being a link to an external resource.
+
### getHash() {#getHash--}
```
public final PropertyTag getHash()
@@ -44,18 +58,23 @@ public final PropertyTag getHash()
Gets the tag that labels a property holding a hash of the file content.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a property holding a hash of the file content.
+
### getMeasure() {#getMeasure--}
```
public final PropertyTag getMeasure()
```
-Gets the tag that indicates a property being a measured characteristic of the content. It can be the file size, number of pages, page size, etc.
+Gets the tag that indicates a property being a measured characteristic of the content.
+It can be the file size, number of pages, page size, etc.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates a property being a measured characteristic of the content.
+
### getDigitalSignature() {#getDigitalSignature--}
```
public final PropertyTag getDigitalSignature()
@@ -64,8 +83,10 @@ public final PropertyTag getDigitalSignature()
Gets the tag that labels a digital signature.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a digital signature.
+
### getIdentifier() {#getIdentifier--}
```
public final PropertyTag getIdentifier()
@@ -74,18 +95,23 @@ public final PropertyTag getIdentifier()
Gets the tag that labels a property containing an identifier of the content.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a property containing an identifier of the content.
+
### getLocation() {#getLocation--}
```
public final PropertyTag getLocation()
```
-Gets the tag that indicates a property being a reference to a geographical location. The property can contain the name of a city, full address, GPS coordinates, etc.
+Gets the tag that indicates a property being a reference to a geographical location.
+The property can contain the name of a city, full address, GPS coordinates, etc.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates a property being a reference to a geographical location.
+
### getFont() {#getFont--}
```
public final PropertyTag getFont()
@@ -94,8 +120,10 @@ public final PropertyTag getFont()
Gets the tag that denotes a property describing font characteristics.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes a property describing font characteristics.
+
### getColor() {#getColor--}
```
public final PropertyTag getColor()
@@ -104,8 +132,10 @@ public final PropertyTag getColor()
Gets the tag that labels a property describing a color.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a property describing a color.
+
### getBitrate() {#getBitrate--}
```
public final PropertyTag getBitrate()
@@ -114,5 +144,7 @@ public final PropertyTag getBitrate()
Gets the tag that labels a property describing a bitrate.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels a property describing a bitrate.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/tagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/tagcategory/_index.md
index 4e7a699458..3755d8908c 100644
--- a/english/java/com.groupdocs.metadata.tagging/tagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/tagcategory/_index.md
@@ -13,11 +13,13 @@ public class TagCategory
```
Represents a set of tags having some shared characteristics.
+
## Methods
| Method | Description |
| --- | --- |
-| [toString()](#toString--) | Returns a string that represents the current object. |
+| [toString()](#toString--) | Returns a string that represents the current object.
+ |
### toString() {#toString--}
```
public String toString()
@@ -26,5 +28,7 @@ public String toString()
Returns a string that represents the current object.
+
**Returns:**
java.lang.String - A string that represents the current object.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/tags/_index.md b/english/java/com.groupdocs.metadata.tagging/tags/_index.md
index 2aa569ba48..2d661b9bc5 100644
--- a/english/java/com.groupdocs.metadata.tagging/tags/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/tags/_index.md
@@ -12,7 +12,9 @@ java.lang.Object
public class Tags
```
-Contains various sets of tags with which most important metadata properties are marked. The tags allow you to find and update metadata properties in different packages regardless of the metadata standard and file format.
+Contains various sets of tags with which most important metadata properties are marked.
+The tags allow you to find and update metadata properties in different packages regardless of the metadata standard and file format.
+
## Constructors
| Constructor | Description |
@@ -22,15 +24,25 @@ Contains various sets of tags with which most important metadata properties are
| Method | Description |
| --- | --- |
-| [getPerson()](#getPerson--) | Gets a set of tags that mark metadata properties holding information about the people contributed to file or intellectual content creation. |
-| [getTool()](#getTool--) | Gets the tags intended to mark metadata properties related to the tools (software and hardware) that were used to create a file. |
-| [getTime()](#getTime--) | Gets a set of tags that mark metadata properties used to describe the lifecycle of a file. |
-| [getContent()](#getContent--) | Gets the tags that are attached to metadata properties describing the content of a file. |
-| [getPropertyType()](#getPropertyType--) | Gets a set of tags that bear additional information about the type of a property rather than about its purpose. |
-| [getDocument()](#getDocument--) | Gets a set of tags that are applied to document-specific properties only. |
-| [getOrigin()](#getOrigin--) | Gets the tags that help a user to determine the origin of a file (e.g. |
-| [getCorporate()](#getCorporate--) | Gets a set of tags intended to mark metadata properties related to a company that participated in file creation. |
-| [getLegal()](#getLegal--) | Gets a set of tags that are attached to metadata properties holding information about the owners of the file content and the rules under which the content can be used. |
+| [getPerson()](#getPerson--) | Gets a set of tags that mark metadata properties holding information about the people contributed to file or intellectual content creation.
+ |
+| [getTool()](#getTool--) | Gets the tags intended to mark metadata properties related to the tools (software and hardware) that were used to create a file.
+ |
+| [getTime()](#getTime--) | Gets a set of tags that mark metadata properties used to describe the lifecycle of a file.
+ |
+| [getContent()](#getContent--) | Gets the tags that are attached to metadata properties describing the content of a file.
+ |
+| [getPropertyType()](#getPropertyType--) | Gets a set of tags that bear additional information about the type of a property rather than about its purpose.
+ |
+| [getDocument()](#getDocument--) | Gets a set of tags that are applied to document-specific properties only.
+ |
+| [getOrigin()](#getOrigin--) | Gets the tags that help a user to determine the origin of a file (e.g.
+ |
+| [getCorporate()](#getCorporate--) | Gets a set of tags intended to mark metadata properties related to a company that participated in file creation.
+ |
+| [getLegal()](#getLegal--) | Gets a set of tags that are attached to metadata properties holding information about the owners of the file content
+and the rules under which the content can be used.
+ |
### Tags() {#Tags--}
```
public Tags()
@@ -43,10 +55,14 @@ public static PersonTagCategory getPerson()
```
-Gets a set of tags that mark metadata properties holding information about the people contributed to file or intellectual content creation. These tags can help you to find the document creator, editor or even the client for whom the work was performed. Despite the name of the category some metadata properties marked with the tags can contain a company name rather than a person's name.
+Gets a set of tags that mark metadata properties holding information about the people contributed to file or intellectual content creation.
+These tags can help you to find the document creator, editor or even the client for whom the work was performed.
+Despite the name of the category some metadata properties marked with the tags can contain a company name rather than a person's name.
+
**Returns:**
[PersonTagCategory](../../com.groupdocs.metadata.tagging/persontagcategory) - A set of tags that mark metadata properties holding information about the people contributed to file or intellectual content creation.
+
### getTool() {#getTool--}
```
public static ToolTagCategory getTool()
@@ -55,35 +71,46 @@ public static ToolTagCategory getTool()
Gets the tags intended to mark metadata properties related to the tools (software and hardware) that were used to create a file.
+
**Returns:**
[ToolTagCategory](../../com.groupdocs.metadata.tagging/tooltagcategory) - The tags intended to mark metadata properties related to the tools (software and hardware) that were used to create a file.
+
### getTime() {#getTime--}
```
public static TimeTagCategory getTime()
```
-Gets a set of tags that mark metadata properties used to describe the lifecycle of a file. The tags deal with time points when a file or intellectual content was created, edited, printed, etc.
+Gets a set of tags that mark metadata properties used to describe the lifecycle of a file.
+The tags deal with time points when a file or intellectual content was created, edited, printed, etc.
+
**Returns:**
[TimeTagCategory](../../com.groupdocs.metadata.tagging/timetagcategory) - A set of tags that mark metadata properties used to describe the lifecycle of a file.
+
### getContent() {#getContent--}
```
public static ContentTagCategory getContent()
```
-Gets the tags that are attached to metadata properties describing the content of a file. The tags are useful to find out the content language, type (genre), subject, rating, etc.
+Gets the tags that are attached to metadata properties describing the content of a file.
+The tags are useful to find out the content language, type (genre), subject, rating, etc.
+
**Returns:**
[ContentTagCategory](../../com.groupdocs.metadata.tagging/contenttagcategory) - The tags that are attached to metadata properties describing the content of a file.
+
### getPropertyType() {#getPropertyType--}
```
public static PropertyTypeTagCategory getPropertyType()
```
-Gets a set of tags that bear additional information about the type of a property rather than about its purpose. Using these tags you can detect metadata properties that contain URL links to external resources, properties describing fonts, colors, geolocation and so on.
+Gets a set of tags that bear additional information about the type of a property rather than about its purpose.
+Using these tags you can detect metadata properties that contain URL links to external resources,
+properties describing fonts, colors, geolocation and so on.
+
**Returns:**
[PropertyTypeTagCategory](../../com.groupdocs.metadata.tagging/propertytypetagcategory)
@@ -93,10 +120,13 @@ public static DocumentTagCategory getDocument()
```
-Gets a set of tags that are applied to document-specific properties only. The tags can be useful to determine from which part of an office document a property was extracted.
+Gets a set of tags that are applied to document-specific properties only.
+The tags can be useful to determine from which part of an office document a property was extracted.
+
**Returns:**
[DocumentTagCategory](../../com.groupdocs.metadata.tagging/documenttagcategory) - A set of tags that are applied to document-specific properties only.
+
### getOrigin() {#getOrigin--}
```
public static OriginTagCategory getOrigin()
@@ -105,8 +135,10 @@ public static OriginTagCategory getOrigin()
Gets the tags that help a user to determine the origin of a file (e.g. template or another source).
+
**Returns:**
[OriginTagCategory](../../com.groupdocs.metadata.tagging/origintagcategory) - The tags that help a user to determine the origin of a file (e.g. template or another source).
+
### getCorporate() {#getCorporate--}
```
public static CorporateTagCategory getCorporate()
@@ -115,15 +147,20 @@ public static CorporateTagCategory getCorporate()
Gets a set of tags intended to mark metadata properties related to a company that participated in file creation.
+
**Returns:**
[CorporateTagCategory](../../com.groupdocs.metadata.tagging/corporatetagcategory) - A set of tags intended to mark metadata properties related to a company that participated in file creation.
+
### getLegal() {#getLegal--}
```
public static LegalTagCategory getLegal()
```
-Gets a set of tags that are attached to metadata properties holding information about the owners of the file content and the rules under which the content can be used.
+Gets a set of tags that are attached to metadata properties holding information about the owners of the file content
+and the rules under which the content can be used.
+
**Returns:**
[LegalTagCategory](../../com.groupdocs.metadata.tagging/legaltagcategory) - A set of tags that are attached to metadata properties holding information about the owners of the file content and the rules under which the content can be used.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/timetagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/timetagcategory/_index.md
index 8315e6d52b..1b65cfbe0b 100644
--- a/english/java/com.groupdocs.metadata.tagging/timetagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/timetagcategory/_index.md
@@ -12,20 +12,31 @@ java.lang.Object, [com.groupdocs.metadata.tagging.TagCategory](../../com.groupdo
public class TimeTagCategory extends TagCategory
```
-Provides tags that mark metadata properties used to describe the lifecycle of a file. The tags deal with time points when a file or intellectual content was created, edited, printed, etc.
+Provides tags that mark metadata properties used to describe the lifecycle of a file.
+The tags deal with time points when a file or intellectual content was created, edited, printed, etc.
+
## Methods
| Method | Description |
| --- | --- |
-| [getIntellectualContentCreated()](#getIntellectualContentCreated--) | Gets the tag that denotes the date the intellectual content of a file was created. |
-| [getCreated()](#getCreated--) | Gets the tag that indicates the date a file was created. |
-| [getModified()](#getModified--) | Gets the tag that indicates the date a file was edited. |
-| [getPublished()](#getPublished--) | Gets the tag that indicates the date a file became available. |
-| [getPrinted()](#getPrinted--) | Gets the tag that denotes the date a file was printed. |
-| [getExpired()](#getExpired--) | Gets the tag that labels the latest date the owner intends the file data to be used. |
-| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the tag that denotes the total editing time of a file. |
-| [getDuration()](#getDuration--) | Gets the tag that denotes the duration of a media file. |
-| [getZoneCity()](#getZoneCity--) | Gets the tag that denotes the time zone. |
+| [getIntellectualContentCreated()](#getIntellectualContentCreated--) | Gets the tag that denotes the date the intellectual content of a file was created.
+ |
+| [getCreated()](#getCreated--) | Gets the tag that indicates the date a file was created.
+ |
+| [getModified()](#getModified--) | Gets the tag that indicates the date a file was edited.
+ |
+| [getPublished()](#getPublished--) | Gets the tag that indicates the date a file became available.
+ |
+| [getPrinted()](#getPrinted--) | Gets the tag that denotes the date a file was printed.
+ |
+| [getExpired()](#getExpired--) | Gets the tag that labels the latest date the owner intends the file data to be used.
+ |
+| [getTotalEditingTime()](#getTotalEditingTime--) | Gets the tag that denotes the total editing time of a file.
+ |
+| [getDuration()](#getDuration--) | Gets the tag that denotes the duration of a media file.
+ |
+| [getZoneCity()](#getZoneCity--) | Gets the tag that denotes the time zone.
+ |
### getIntellectualContentCreated() {#getIntellectualContentCreated--}
```
public final PropertyTag getIntellectualContentCreated()
@@ -34,8 +45,10 @@ public final PropertyTag getIntellectualContentCreated()
Gets the tag that denotes the date the intellectual content of a file was created.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the date the intellectual content of a file was created.
+
### getCreated() {#getCreated--}
```
public final PropertyTag getCreated()
@@ -44,8 +57,10 @@ public final PropertyTag getCreated()
Gets the tag that indicates the date a file was created.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates the date a file was created.
+
### getModified() {#getModified--}
```
public final PropertyTag getModified()
@@ -54,8 +69,10 @@ public final PropertyTag getModified()
Gets the tag that indicates the date a file was edited.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates the date a file was edited.
+
### getPublished() {#getPublished--}
```
public final PropertyTag getPublished()
@@ -64,8 +81,10 @@ public final PropertyTag getPublished()
Gets the tag that indicates the date a file became available.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that indicates the date a file became available.
+
### getPrinted() {#getPrinted--}
```
public final PropertyTag getPrinted()
@@ -74,8 +93,10 @@ public final PropertyTag getPrinted()
Gets the tag that denotes the date a file was printed.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the date a file was printed.
+
### getExpired() {#getExpired--}
```
public final PropertyTag getExpired()
@@ -84,8 +105,10 @@ public final PropertyTag getExpired()
Gets the tag that labels the latest date the owner intends the file data to be used.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels the latest date the owner intends the file data to be used.
+
### getTotalEditingTime() {#getTotalEditingTime--}
```
public final PropertyTag getTotalEditingTime()
@@ -94,8 +117,10 @@ public final PropertyTag getTotalEditingTime()
Gets the tag that denotes the total editing time of a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the total editing time of a file.
+
### getDuration() {#getDuration--}
```
public final PropertyTag getDuration()
@@ -104,8 +129,10 @@ public final PropertyTag getDuration()
Gets the tag that denotes the duration of a media file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the duration of a media file.
+
### getZoneCity() {#getZoneCity--}
```
public final PropertyTag getZoneCity()
@@ -114,5 +141,7 @@ public final PropertyTag getZoneCity()
Gets the tag that denotes the time zone.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes the time zone.
+
diff --git a/english/java/com.groupdocs.metadata.tagging/tooltagcategory/_index.md b/english/java/com.groupdocs.metadata.tagging/tooltagcategory/_index.md
index 19bf09df50..983b653f3a 100644
--- a/english/java/com.groupdocs.metadata.tagging/tooltagcategory/_index.md
+++ b/english/java/com.groupdocs.metadata.tagging/tooltagcategory/_index.md
@@ -13,17 +13,25 @@ public class ToolTagCategory extends TagCategory
```
Provides tags intended to mark metadata properties related to the tools (software and hardware) that were used to create a file.
+
## Methods
| Method | Description |
| --- | --- |
-| [getSoftware()](#getSoftware--) | Gets the tag that labels any kind of software used to create a file. |
-| [getHardware()](#getHardware--) | Gets the tag that denotes any kind of hardware used to create a file. |
-| [getSoftwareVersion()](#getSoftwareVersion--) | Gets the tag that labels properties containing the version of the software used to create a file. |
-| [getHardwareVersion()](#getHardwareVersion--) | Gets the tag that labels properties containing the version of the hardware used to create a file. |
-| [getSoftwareManufacturer()](#getSoftwareManufacturer--) | Gets the tag that marks a software manufacturer. |
-| [getHardwareManufacturer()](#getHardwareManufacturer--) | Gets the tag that marks a hardware manufacturer. |
-| [getModelId()](#getModelId--) | Gets the tag that marks a model id. |
+| [getSoftware()](#getSoftware--) | Gets the tag that labels any kind of software used to create a file.
+ |
+| [getHardware()](#getHardware--) | Gets the tag that denotes any kind of hardware used to create a file.
+ |
+| [getSoftwareVersion()](#getSoftwareVersion--) | Gets the tag that labels properties containing the version of the software used to create a file.
+ |
+| [getHardwareVersion()](#getHardwareVersion--) | Gets the tag that labels properties containing the version of the hardware used to create a file.
+ |
+| [getSoftwareManufacturer()](#getSoftwareManufacturer--) | Gets the tag that marks a software manufacturer.
+ |
+| [getHardwareManufacturer()](#getHardwareManufacturer--) | Gets the tag that marks a hardware manufacturer.
+ |
+| [getModelId()](#getModelId--) | Gets the tag that marks a model id.
+ |
### getSoftware() {#getSoftware--}
```
public final PropertyTag getSoftware()
@@ -32,8 +40,10 @@ public final PropertyTag getSoftware()
Gets the tag that labels any kind of software used to create a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels any kind of software used to create a file.
+
### getHardware() {#getHardware--}
```
public final PropertyTag getHardware()
@@ -42,8 +52,10 @@ public final PropertyTag getHardware()
Gets the tag that denotes any kind of hardware used to create a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that denotes any kind of hardware used to create a file.
+
### getSoftwareVersion() {#getSoftwareVersion--}
```
public final PropertyTag getSoftwareVersion()
@@ -52,8 +64,10 @@ public final PropertyTag getSoftwareVersion()
Gets the tag that labels properties containing the version of the software used to create a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels properties containing the version of the software used to create a file.
+
### getHardwareVersion() {#getHardwareVersion--}
```
public final PropertyTag getHardwareVersion()
@@ -62,8 +76,10 @@ public final PropertyTag getHardwareVersion()
Gets the tag that labels properties containing the version of the hardware used to create a file.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that labels properties containing the version of the hardware used to create a file.
+
### getSoftwareManufacturer() {#getSoftwareManufacturer--}
```
public final PropertyTag getSoftwareManufacturer()
@@ -72,8 +88,10 @@ public final PropertyTag getSoftwareManufacturer()
Gets the tag that marks a software manufacturer.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that marks a software manufacturer.
+
### getHardwareManufacturer() {#getHardwareManufacturer--}
```
public final PropertyTag getHardwareManufacturer()
@@ -82,8 +100,10 @@ public final PropertyTag getHardwareManufacturer()
Gets the tag that marks a hardware manufacturer.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that marks a hardware manufacturer.
+
### getModelId() {#getModelId--}
```
public final PropertyTag getModelId()
@@ -92,5 +112,7 @@ public final PropertyTag getModelId()
Gets the tag that marks a model id.
+
**Returns:**
[PropertyTag](../../com.groupdocs.metadata.tagging/propertytag) - The tag that marks a model id.
+
diff --git a/english/java/com.groupdocs.metadata/_index.md b/english/java/com.groupdocs.metadata/_index.md
index 8fcacdd1a6..50557cab1b 100644
--- a/english/java/com.groupdocs.metadata/_index.md
+++ b/english/java/com.groupdocs.metadata/_index.md
@@ -10,6 +10,7 @@ url: /java/com.groupdocs.metadata/
The **com.groupdocs.metadata** namespace is the entry point to all features of the library.
+
## Classes
| Class | Description |
diff --git a/english/java/com.groupdocs.metadata/metadata/_index.md b/english/java/com.groupdocs.metadata/metadata/_index.md
index b5d4604f8f..e5c41d892a 100644
--- a/english/java/com.groupdocs.metadata/metadata/_index.md
+++ b/english/java/com.groupdocs.metadata/metadata/_index.md
@@ -16,73 +16,105 @@ public final class Metadata implements Closeable
```
Provides the main class to access metadata in all supported formats.
+
## Constructors
| Constructor | Description |
| --- | --- |
-| [Metadata(String filePath)](#Metadata-java.lang.String-) | Initializes a new instance of the Metadata class. |
-| [Metadata(InputStream document)](#Metadata-java.io.InputStream-) | Initializes a new instance of the Metadata class. |
-| [Metadata(String filePath, LoadOptions loadOptions)](#Metadata-java.lang.String-com.groupdocs.metadata.options.LoadOptions-) | Initializes a new instance of the Metadata class. |
-| [Metadata(InputStream document, LoadOptions loadOptions)](#Metadata-java.io.InputStream-com.groupdocs.metadata.options.LoadOptions-) | Initializes a new instance of the Metadata class. |
+| [Metadata(String filePath)](#Metadata-java.lang.String-) | Initializes a new instance of the
+Metadata
+ class.
+ |
+| [Metadata(InputStream document)](#Metadata-java.io.InputStream-) | Initializes a new instance of the
+Metadata
+ class.
+ |
+| [Metadata(String filePath, LoadOptions loadOptions)](#Metadata-java.lang.String-com.groupdocs.metadata.options.LoadOptions-) | Initializes a new instance of the
+Metadata
+ class.
+ |
+| [Metadata(InputStream document, LoadOptions loadOptions)](#Metadata-java.io.InputStream-com.groupdocs.metadata.options.LoadOptions-) | Initializes a new instance of the
+Metadata
+ class.
+ |
## Methods
| Method | Description |
| --- | --- |
-| [getFileFormat()](#getFileFormat--) | Gets the type of the loaded file (if recognized). |
-| [getRootPackage()](#getRootPackage--) | Gets the root package providing access to all metadata properties extracted from the file. |
-| [getRootPackageGeneric()](#-TRoot-getRootPackageGeneric--) | Gets the root package providing access to all metadata properties extracted from the file. |
-| [findProperties(Specification specification)](#findProperties-com.groupdocs.metadata.search.Specification-) | Finds the metadata properties satisfying a specification. |
-| [updateProperties(Specification specification, PropertyValue value)](#updateProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Updates known metadata properties satisfying a specification. |
-| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification. |
-| [addProperties(Specification specification, PropertyValue value)](#addProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Adds known metadata properties satisfying the specification. |
-| [setProperties(Specification specification, PropertyValue value)](#setProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Sets known metadata properties satisfying the specification. |
-| [sanitize()](#sanitize--) | Removes writable metadata properties from all detected packages or whole packages if possible. |
-| [save()](#save--) | Saves all changes made in the loaded document. |
-| [save(OutputStream document)](#save-java.io.OutputStream-) | Saves the document content into a stream. |
-| [save(String filePath)](#save-java.lang.String-) | Saves the document content to the specified file. |
-| [generatePreview(PreviewOptions previewOptions)](#generatePreview-com.groupdocs.metadata.options.PreviewOptions-) | Creates preview images for specified pages. |
-| [getDocumentInfo()](#getDocumentInfo--) | Gets common information about the loaded document. |
-| [copyTo(MetadataPackage metadataPackage)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | Copy known metadata properties from source package to destination package. |
-| [copyTo(MetadataPackage metadataPackage, List tags)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-java.util.List-com.groupdocs.metadata.tagging.PropertyTag--) | Copy known metadata properties from source package to destination package. |
-| [close()](#close--) | Closes the loaded document and releases any system resources associated with it. |
+| [getFileFormat()](#getFileFormat--) | Gets the type of the loaded file (if recognized).
+ |
+| [getRootPackage()](#getRootPackage--) | Gets the root package providing access to all metadata properties extracted from the file.
+ |
+| [getRootPackageGeneric()](#-TRoot-getRootPackageGeneric--) | Gets the root package providing access to all metadata properties extracted from the file.
+ |
+| [findProperties(Specification specification)](#findProperties-com.groupdocs.metadata.search.Specification-) | Finds the metadata properties satisfying a specification.
+ |
+| [updateProperties(Specification specification, PropertyValue value)](#updateProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Updates known metadata properties satisfying a specification.
+ |
+| [removeProperties(Specification specification)](#removeProperties-com.groupdocs.metadata.search.Specification-) | Removes metadata properties satisfying a specification.
+ |
+| [addProperties(Specification specification, PropertyValue value)](#addProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Adds known metadata properties satisfying the specification.
+ |
+| [setProperties(Specification specification, PropertyValue value)](#setProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-) | Sets known metadata properties satisfying the specification.
+ |
+| [sanitize()](#sanitize--) | Removes writable metadata properties from all detected packages or whole packages if possible.
+ |
+| [save()](#save--) | Saves all changes made in the loaded document.
+ |
+| [save(OutputStream document)](#save-java.io.OutputStream-) | Saves the document content into a stream.
+ |
+| [save(String filePath)](#save-java.lang.String-) | Saves the document content to the specified file.
+ |
+| [generatePreview(PreviewOptions previewOptions)](#generatePreview-com.groupdocs.metadata.options.PreviewOptions-) | Creates preview images for specified pages.
+ |
+| [getDocumentInfo()](#getDocumentInfo--) | Gets common information about the loaded document.
+ |
+| [copyTo(MetadataPackage metadataPackage)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-) | Copy known metadata properties from source package to destination package.
+ |
+| [copyTo(MetadataPackage metadataPackage, List tags)](#copyTo-com.groupdocs.metadata.core.MetadataPackage-java.util.List-com.groupdocs.metadata.tagging.PropertyTag--) | Copy known metadata properties from source package to destination package.
+ |
+| [close()](#close--) | Closes the loaded document and releases any system resources associated with it.
+ |
### Metadata(String filePath) {#Metadata-java.lang.String-}
```
public Metadata(String filePath)
```
-Initializes a new instance of the Metadata class.
+Initializes a new instance of the
+Metadata
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filePath | java.lang.String | A string that contains the full name of the file from which to create a Metadata instance.
+
**Learn more**
- * [Load from a local disk][]
- * [Load from a stream][]
- * [Load a file of a specific format][]
- * [Load a password-protected document][]
+* [Load from a local disk](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk)
+* [Load from a stream](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream)
+* [Load a file of a specific format](../https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format)
+* [Load a password-protected document](../https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document)
-This example demonstrates how to load a file from a local disk.
+
+This example demonstrates how to load a file from a local disk.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputOne is an absolute or relative path to your document. Ex: @"C:\Docs\source.one"
> try (Metadata metadata = new Metadata(Constants.InputOne)) {
> // Extract, edit or remove metadata here
> }
>
> ```
-> ```
+> ````
-
-[Load from a local disk]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk
-[Load from a stream]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream
-[Load a file of a specific format]: https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format
-[Load a password-protected document]: https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document |
+ |
### Metadata(InputStream document) {#Metadata-java.io.InputStream-}
```
@@ -90,25 +122,31 @@ public Metadata(InputStream document)
```
-Initializes a new instance of the Metadata class.
+Initializes a new instance of the
+Metadata
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| document | java.io.InputStream | A stream that contains the document to load.
+
**Learn more**
- * [Load from a local disk][]
- * [Load from a stream][]
- * [Load a file of a specific format][]
- * [Load a password-protected document][]
+* [Load from a local disk](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk)
+* [Load from a stream](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream)
+* [Load a file of a specific format](../https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format)
+* [Load a password-protected document](../https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document)
-This example demonstrates how to load a file from a stream.
+
+This example demonstrates how to load a file from a stream.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputDoc is an absolute or relative path to your document. Ex: @"C:\Docs\source.doc"
> try (InputStream stream = new FileInputStream(Constants.InputDoc)) {
> try (Metadata metadata = new Metadata(stream)) {
@@ -117,13 +155,9 @@ This example demonstrates how to load a file from a stream.
> }
>
> ```
-> ```
-
+> ````
-[Load from a local disk]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk
-[Load from a stream]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream
-[Load a file of a specific format]: https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format
-[Load a password-protected document]: https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document |
+ |
### Metadata(String filePath, LoadOptions loadOptions) {#Metadata-java.lang.String-com.groupdocs.metadata.options.LoadOptions-}
```
@@ -131,26 +165,33 @@ public Metadata(String filePath, LoadOptions loadOptions)
```
-Initializes a new instance of the Metadata class.
+Initializes a new instance of the
+Metadata
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| filePath | java.lang.String | A string that contains the full name of the file from which to create a Metadata instance. |
+| filePath | java.lang.String | A string that contains the full name of the file from which to create a Metadata instance.
+ |
| loadOptions | [LoadOptions](../../com.groupdocs.metadata.options/loadoptions) | Additional options to use when loading a document.
+
**Learn more**
- * [Load from a local disk][]
- * [Load from a stream][]
- * [Load a file of a specific format][]
- * [Load a password-protected document][]
+* [Load from a local disk](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk)
+* [Load from a stream](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream)
+* [Load a file of a specific format](../https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format)
+* [Load a password-protected document](../https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document)
-This example demonstrates how to load a password-protected document.
+
+This example demonstrates how to load a password-protected document.
+>
+> ````
> ```
-> ```
->
+>
> // Specify the password
> LoadOptions loadOptions = new LoadOptions();
> loadOptions.setPassword("123");
@@ -160,13 +201,9 @@ This example demonstrates how to load a password-protected document.
> }
>
> ```
-> ```
+> ````
-
-[Load from a local disk]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk
-[Load from a stream]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream
-[Load a file of a specific format]: https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format
-[Load a password-protected document]: https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document |
+ |
### Metadata(InputStream document, LoadOptions loadOptions) {#Metadata-java.io.InputStream-com.groupdocs.metadata.options.LoadOptions-}
```
@@ -174,26 +211,29 @@ public Metadata(InputStream document, LoadOptions loadOptions)
```
-Initializes a new instance of the Metadata class.
+Initializes a new instance of the
+Metadata
+ class.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| document | java.io.InputStream | A stream that contains the document to load. |
+| document | java.io.InputStream | A stream that contains the document to load.
+ |
| loadOptions | [LoadOptions](../../com.groupdocs.metadata.options/loadoptions) | Additional options to use when loading a document.
+
**Learn more**
- * [Load from a local disk][]
- * [Load from a stream][]
- * [Load a file of a specific format][]
- * [Load a password-protected document][]
+* [Load from a local disk](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk)
+* [Load from a stream](../https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream)
+* [Load a file of a specific format](../https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format)
+* [Load a password-protected document](../https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document)
+
-[Load from a local disk]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+local+disk
-[Load from a stream]: https://docs.groupdocs.com/display/metadatajava/Load+from+a+stream
-[Load a file of a specific format]: https://docs.groupdocs.com/display/metadatajava/Load+a+file+of+a+specific+format
-[Load a password-protected document]: https://docs.groupdocs.com/display/metadatajava/Load+a+password-protected+document |
+ |
### getFileFormat() {#getFileFormat--}
```
@@ -203,8 +243,10 @@ public final FileFormat getFileFormat()
Gets the type of the loaded file (if recognized).
+
**Returns:**
[FileFormat](../../com.groupdocs.metadata.core/fileformat) - The type of the loaded file if recognized; otherwise, F:GroupDocs.Metadata.FileFormat.Unknown .
+
### getRootPackage() {#getRootPackage--}
```
public final RootMetadataPackage getRootPackage()
@@ -213,18 +255,22 @@ public final RootMetadataPackage getRootPackage()
Gets the root package providing access to all metadata properties extracted from the file.
+
**Returns:**
[RootMetadataPackage](../../com.groupdocs.metadata.core/rootmetadatapackage) - The root package providing access to all metadata properties extracted from the file.
+
**Learn more**
- * [Traverse a whole metadata tree][]
+* [Traverse a whole metadata tree](../https://docs.groupdocs.com/display/metadatajava/Traverse+a+whole+metadata+tree)
-This example demonstrates how to traverse the whole metadata tree for a specific file regardless of the format.
+
+This example demonstrates how to traverse the whole metadata tree for a specific file regardless of the format.
+>
+> ````
> ```
-> ```
->
+>
> public static void run() {
> try (Metadata metadata = new Metadata(Constants.JpegWithXmp)) {
> displayMetadataTree(metadata.getRootPackage(), 0);
@@ -259,10 +305,9 @@ This example demonstrates how to traverse the whole metadata tree for a specific
> }
>
> ```
-> ```
+> ````
-[Traverse a whole metadata tree]: https://docs.groupdocs.com/display/metadatajava/Traverse+a+whole+metadata+tree
### getRootPackageGeneric() {#-TRoot-getRootPackageGeneric--}
```
public final TRoot getRootPackageGeneric()
@@ -271,39 +316,49 @@ public final TRoot getRootPackageGeneric()
Gets the root package providing access to all metadata properties extracted from the file.
+
**Learn more**
- * [Traverse a whole metadata tree][]
+* [Traverse a whole metadata tree](../https://docs.groupdocs.com/display/metadatajava/Traverse+a+whole+metadata+tree)
+
+
-[Traverse a whole metadata tree]: https://docs.groupdocs.com/display/metadatajava/Traverse+a+whole+metadata+tree
**Returns:**
TRoot - The root package providing access to all metadata properties extracted from the file.
- TRoot : The exact type of the root package.
+
+TRoot
+: The exact type of the root package.
+
### findProperties(Specification specification) {#findProperties-com.groupdocs.metadata.search.Specification-}
```
public final IReadOnlyList findProperties(Specification specification)
```
-Finds the metadata properties satisfying a specification. The search is recursive so it affects all nested packages as well.
+Finds the metadata properties satisfying a specification.
+The search is recursive so it affects all nested packages as well.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A function to test each metadata property for a condition.
+
**Learn more**
- * More examples demonstrating usages of this method: [Extracting metadata][]
+* More examples demonstrating usages of this method: [Extracting metadata](../https://docs.groupdocs.com/display/metadatajava/Extracting+metadata)
-This example demonstrates how to search for specific metadata properties using tags.
+
+This example demonstrates how to search for specific metadata properties using tags.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputPptx is an absolute or relative path to your document. Ex: @"C:\Docs\source.pptx"
> try (Metadata metadata = new Metadata(Constants.InputPptx)) {
> // Fetch all the properties satisfying the predicate:
@@ -316,40 +371,50 @@ This example demonstrates how to search for specific metadata properties using t
> }
>
> ```
-> ```
-
+> ````
-[Extracting metadata]: https://docs.groupdocs.com/display/metadatajava/Extracting+metadata |
+ |
**Returns:**
[IReadOnlyList](../../com.groupdocs.metadata.core/ireadonlylist) - A collection that contains properties from the package that satisfy the condition.
+
### updateProperties(Specification specification, PropertyValue value) {#updateProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-}
```
public final int updateProperties(Specification specification, PropertyValue value)
```
-Updates known metadata properties satisfying a specification. The operation is recursive so it affects all nested packages as well.
+Updates known metadata properties satisfying a specification.
+The operation is recursive so it affects all nested packages as well.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | A new value for the filtered properties.
---------------------
+
+
+*** ** * ** ***
Please note that GroupDocs.Metadata implicitly checks the type of each filtered property. It's impossible to update a property with a value having an inappropriate type.
+
+
+
**Learn more**
- * More examples demonstrating usages of this method: [Updating metadata][]
+* More examples demonstrating usages of this method: [Updating metadata](../https://docs.groupdocs.com/display/metadatajava/Updating+metadata)
-This example demonstrates how to update existing metadata properties by various criteria regardless of the file format.
+
+This example demonstrates how to update existing metadata properties by various criteria regardless of the file format.
+>
+> ````
> ```
-> ```
->
+>
> public class UpdatingMetadata {
> public static void run() {
> Date threeDaysAgo = new Date(System.currentTimeMillis() - TimeUnit.DAYS.toMillis(3));
@@ -374,17 +439,17 @@ This example demonstrates how to update existing metadata properties by various
> public DateBeforeSpecification(Date date) {
> setValue(date);
> }
->
+>
> public final Date getValue() {
> return auto_Value;
> }
->
+>
> private void setValue(Date value) {
> auto_Value = value;
> }
->
+>
> private Date auto_Value;
->
+>
> public boolean isSatisfiedBy(MetadataProperty candidate) {
> Date date = candidate.getValue().toClass(Date.class);
> if (date != null) {
@@ -396,13 +461,13 @@ This example demonstrates how to update existing metadata properties by various
> }
>
> ```
-> ```
+> ````
-
-[Updating metadata]: https://docs.groupdocs.com/display/metadatajava/Updating+metadata |
+ |
**Returns:**
int - The number of affected properties.
+
### removeProperties(Specification specification) {#removeProperties-com.groupdocs.metadata.search.Specification-}
```
public final int removeProperties(Specification specification)
@@ -411,25 +476,29 @@ public final int removeProperties(Specification specification)
Removes metadata properties satisfying a specification.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+
**Learn more**
- * More examples demonstrating usages of this method: [Removing metadata][]
+* More examples demonstrating usages of this method: [Removing metadata](../https://docs.groupdocs.com/display/metadatajava/Removing+metadata)
-This example demonstrates how to remove specific metadata properties using various criteria.
+
+This example demonstrates how to remove specific metadata properties using various criteria.
+>
+> ````
> ```
-> ```
->
+>
> public class RemoveMetadataProperties {
> public static void run() {
> // Constants.InputDocx is an absolute or relative path to your document. Ex: @"C:\Docs\source.docx"
> try (Metadata metadata = new Metadata(Constants.InputDocx)) {
->
+>
> // Remove all the properties satisfying the predicate:
> // property contains the name of the document author OR
> // it refers to the last editor OR
@@ -438,29 +507,29 @@ This example demonstrates how to remove specific metadata properties using vario
> new ContainsTagSpecification(Tags.getPerson().getCreator()).or(
> new ContainsTagSpecification(Tags.getPerson().getEditor())).or(
> new OfTypeSpecification(MetadataPropertyType.String).and(new RemoveMetadataProperties().new WithValueSpecification("John"))));
->
+>
> System.out.println(String.format("Properties removed: %s", affected));
->
+>
> metadata.save(Constants.OutputDocx);
> }
> }
->
+>
> // Define your own specifications to filter metadata properties
> public class WithValueSpecification extends Specification {
> public WithValueSpecification(Object value) {
> setValue(value);
> }
->
+>
> public final Object getValue() {
> return auto_Value;
> }
->
+>
> private void setValue(Object value) {
> auto_Value = value;
> }
->
+>
> private Object auto_Value;
->
+>
> public boolean isSatisfiedBy(MetadataProperty candidate) {
> return candidate.getValue().getRawValue().equals(getValue());
> }
@@ -468,36 +537,42 @@ This example demonstrates how to remove specific metadata properties using vario
> }
>
> ```
-> ```
+> ````
-
-[Removing metadata]: https://docs.groupdocs.com/display/metadatajava/Removing+metadata |
+ |
**Returns:**
int - The number of affected properties.
+
### addProperties(Specification specification, PropertyValue value) {#addProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-}
```
public final int addProperties(Specification specification, PropertyValue value)
```
-Adds known metadata properties satisfying the specification. The operation is recursive so it affects all nested packages as well.
+Adds known metadata properties satisfying the specification.
+The operation is recursive so it affects all nested packages as well.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | A value for the picked properties.
+
**Learn more**
- * More examples demonstrating usages of this method: [Adding metadata][]
+* More examples demonstrating usages of this method: [Adding metadata](../https://docs.groupdocs.com/display/metadatajava/Adding+metadata)
-This example demonstrates how to add some missing metadata properties to a file regardless of its format.
+
+This example demonstrates how to add some missing metadata properties to a file regardless of its format.
+>
+> ````
> ```
-> ```
->
+>
> File folder = new File(Constants.InputPath);
> for (File file : folder.listFiles()) {
> try (Metadata metadata = new Metadata(file.getAbsolutePath())) {
@@ -517,40 +592,57 @@ This example demonstrates how to add some missing metadata properties to a file
> }
>
> ```
-> ```
+> ````
-
-[Adding metadata]: https://docs.groupdocs.com/display/metadatajava/Adding+metadata |
+ |
**Returns:**
int - The number of affected properties.
+
### setProperties(Specification specification, PropertyValue value) {#setProperties-com.groupdocs.metadata.search.Specification-com.groupdocs.metadata.core.PropertyValue-}
```
public final int setProperties(Specification specification, PropertyValue value)
```
-Sets known metadata properties satisfying the specification. The operation is recursive so it affects all nested packages as well. This method is a combination of AddProperties and UpdateProperties . If an existing property satisfies the specification its value is updated. If there is a known property missing in the package that satisfies the specification it is added to the package.
+Sets known metadata properties satisfying the specification.
+The operation is recursive so it affects all nested packages as well.
+This method is a combination of
+AddProperties
+ and
+UpdateProperties
+.
+If an existing property satisfies the specification its value is updated.
+If there is a known property missing in the package that satisfies the specification it is added to the package.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition. |
+| specification | [Specification](../../com.groupdocs.metadata.search/specification) | A specification to test each metadata property for a condition.
+ |
| value | [PropertyValue](../../com.groupdocs.metadata.core/propertyvalue) | A new value for the filtered properties.
---------------------
+
+
+*** ** * ** ***
Please note that GroupDocs.Metadata implicitly checks the type of each filtered property. It's impossible to set a property with a value having inappropriate type.
+
+
+
**Learn more**
- * More examples demonstrating usages of this method: [Set metadata properties][]
+* More examples demonstrating usages of this method: [Set metadata properties](../https://docs.groupdocs.com/display/metadatajava/Set+metadata+properties)
-This example demonstrates how to set specific metadata properties using different criteria.
+
+This example demonstrates how to set specific metadata properties using different criteria.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputVsdx is an absolute or relative path to your document. Ex: @"C:\Docs\source.vsdx"
> try (Metadata metadata = new Metadata(Constants.InputVsdx)) {
> // Set the value of each property that satisfies the predicate:
@@ -563,33 +655,38 @@ This example demonstrates how to set specific metadata properties using differen
> }
>
> ```
-> ```
-
+> ````
-[Set metadata properties]: https://docs.groupdocs.com/display/metadatajava/Set+metadata+properties |
+ |
**Returns:**
int - The number of affected properties.
+
### sanitize() {#sanitize--}
```
public final int sanitize()
```
-Removes writable metadata properties from all detected packages or whole packages if possible. The operation is recursive so it affects all nested packages as well.
+Removes writable metadata properties from all detected packages or whole packages if possible.
+The operation is recursive so it affects all nested packages as well.
+
**Returns:**
int - The number of affected properties.
+
**Learn more**
- * More examples demonstrating usages of this method: [Clean metadata][]
+* More examples demonstrating usages of this method: [Clean metadata](../https://docs.groupdocs.com/display/metadatajava/Clean+metadata)
-This example demonstrates how to remove all detected metadata packages/properties from a file.
+
+This example demonstrates how to remove all detected metadata packages/properties from a file.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputPdf is an absolute or relative path to your document. Ex: @"C:\Docs\source.pdf"
> try (Metadata metadata = new Metadata(Constants.InputPdf)) {
> // Remove detected metadata packages
@@ -599,10 +696,9 @@ This example demonstrates how to remove all detected metadata packages/propertie
> }
>
> ```
-> ```
+> ````
-[Clean metadata]: https://docs.groupdocs.com/display/metadatajava/Clean+metadata
### save() {#save--}
```
public final void save()
@@ -611,17 +707,20 @@ public final void save()
Saves all changes made in the loaded document.
+
**Learn more**
- * [Save a modified file to the original source][]
- * [Save a modified file to a specified location][]
- * [Save a modified file to a stream][]
+* [Save a modified file to the original source](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+the+original+source)
+* [Save a modified file to a specified location](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+specified+location)
+* [Save a modified file to a stream](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+stream)
-This example shows how to save the modified content to the underlying file.
+
+This example shows how to save the modified content to the underlying file.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputPpt is an absolute or relative path to your document. Ex: @"C:\Docs\test.ppt"
> File outputFile = new File(Constants.OutputPpt);
> outputFile.delete();
@@ -633,12 +732,9 @@ This example shows how to save the modified content to the underlying file.
> }
>
> ```
-> ```
+> ````
-[Save a modified file to the original source]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+the+original+source
-[Save a modified file to a specified location]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+specified+location
-[Save a modified file to a stream]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+stream
### save(OutputStream document) {#save-java.io.OutputStream-}
```
@@ -648,22 +744,26 @@ public final void save(OutputStream document)
Saves the document content into a stream.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| document | java.io.OutputStream | An output stream for the document.
+
**Learn more**
- * [Save a modified file to the original source][]
- * [Save a modified file to a specified location][]
- * [Save a modified file to a stream][]
+* [Save a modified file to the original source](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+the+original+source)
+* [Save a modified file to a specified location](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+specified+location)
+* [Save a modified file to a stream](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+stream)
-This example shows how to save a document to the specified stream.
+
+This example shows how to save a document to the specified stream.
+>
+> ````
> ```
-> ```
->
+>
> try (OutputStream stream = new FileOutputStream(Constants.OutputPng)) {
> // Constants.InputPng is an absolute or relative path to your document. Ex: @"C:\Docs\test.png"
> try (Metadata metadata = new Metadata(Constants.InputPng)) {
@@ -673,12 +773,9 @@ This example shows how to save a document to the specified stream.
> }
>
> ```
-> ```
-
+> ````
-[Save a modified file to the original source]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+the+original+source
-[Save a modified file to a specified location]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+specified+location
-[Save a modified file to a stream]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+stream |
+ |
### save(String filePath) {#save-java.lang.String-}
```
@@ -688,22 +785,26 @@ public final void save(String filePath)
Saves the document content to the specified file.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| filePath | java.lang.String | The full name of the output file.
+
**Learn more**
- * [Save a modified file to the original source][]
- * [Save a modified file to a specified location][]
- * [Save a modified file to a stream][]
+* [Save a modified file to the original source](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+the+original+source)
+* [Save a modified file to a specified location](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+specified+location)
+* [Save a modified file to a stream](../https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+stream)
-This example shows how to save a document to the specified location.
+
+This example shows how to save a document to the specified location.
+>
+> ````
> ```
-> ```
->
+>
> // Constants.InputJpeg is an absolute or relative path to your document. Ex: @"C:\Docs\test.jpg"
> try (Metadata metadata = new Metadata(Constants.InputJpeg)) {
> // Edit or remove metadata here
@@ -711,12 +812,9 @@ This example shows how to save a document to the specified location.
> }
>
> ```
-> ```
-
+> ````
-[Save a modified file to the original source]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+the+original+source
-[Save a modified file to a specified location]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+specified+location
-[Save a modified file to a stream]: https://docs.groupdocs.com/display/metadatajava/Save+a+modified+file+to+a+stream |
+ |
### generatePreview(PreviewOptions previewOptions) {#generatePreview-com.groupdocs.metadata.options.PreviewOptions-}
```
@@ -726,17 +824,20 @@ public final void generatePreview(PreviewOptions previewOptions)
Creates preview images for specified pages.
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| previewOptions | [PreviewOptions](../../com.groupdocs.metadata.options/previewoptions) | A set of options for preview generation.
+
**Learn more**
- * [Generate document preview][]
+* [Generate document preview](../https://docs.groupdocs.com/display/metadatajava/Generate+document+preview)
+
-[Generate document preview]: https://docs.groupdocs.com/display/metadatajava/Generate+document+preview |
+ |
### getDocumentInfo() {#getDocumentInfo--}
```
@@ -746,44 +847,61 @@ public final IDocumentInfo getDocumentInfo()
Gets common information about the loaded document.
+
**Returns:**
[IDocumentInfo](../../com.groupdocs.metadata.core/idocumentinfo) - An object representing common document information.
+
**Learn more**
- * [Get document info][]
+* [Get document info](../https://docs.groupdocs.com/display/metadatajava/Get+document+info)
+
+
-[Get document info]: https://docs.groupdocs.com/display/metadatajava/Get+document+info
### copyTo(MetadataPackage metadataPackage) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-}
```
public void copyTo(MetadataPackage metadataPackage)
```
-Copy known metadata properties from source package to destination package. The operation is recursive so it affects all nested packages as well. If an existing property its value is updated. If there is a known property missing in a destination package it is added to the package. If there is a known property missing in a source package it is not remove from destination package. If that need, use Sanitize method before.
+Copy known metadata properties from source package to destination package.
+The operation is recursive so it affects all nested packages as well.
+If an existing property its value is updated.
+If there is a known property missing in a destination package it is added to the package.
+If there is a known property missing in a source package it is not remove from destination package. If that need, use Sanitize method before.
+
+
---------------------
+*** ** * ** ***
> ```
-> This example demonstrates how to copy metadata properties from source package to destination package.
->
-> Metadata source_metadata = new Metadata(Constants.InputPdf);
+> This example demonstrates how to copy metadata properties from source package to destination package.
+> Metadata source_metadata = new Metadata(Constants.InputPdf);
> Metadata destination_metadata = new Metadata(Constants.DestinationPdf);
> {
> source_metadata.copyTo(destination_metadata);
> source_metadata.save();
> }
+>
+>
> ```
+
+
+
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
| metadataPackage | [MetadataPackage](../../com.groupdocs.metadata.core/metadatapackage) | A destination metadata package.
---------------------
+
-If the package types do not match, an error will be returned. |
+*** ** * ** ***
+
+If the package types do not match, an error will be returned.
+ |
### copyTo(MetadataPackage metadataPackage, List tags) {#copyTo-com.groupdocs.metadata.core.MetadataPackage-java.util.List-com.groupdocs.metadata.tagging.PropertyTag--}
```
@@ -791,14 +909,19 @@ public int copyTo(MetadataPackage metadataPackage, List tags)
```
-Copy known metadata properties from source package to destination package. The operation is recursive so it affects all nested packages as well. If an existing property its value is updated. If there is a known property missing in a destination package it is added to the package. If there is a known property missing in a source package it is not remove from destination package. If that need, use Sanitize method before.
+Copy known metadata properties from source package to destination package.
+The operation is recursive so it affects all nested packages as well.
+If an existing property its value is updated.
+If there is a known property missing in a destination package it is added to the package.
+If there is a known property missing in a source package it is not remove from destination package. If that need, use Sanitize method before.
+
+
---------------------
+*** ** * ** ***
> ```
-> This example demonstrates how to copy metadata properties from source package to destination package.
->
-> Metadata source_metadata = new Metadata(Constants.InputPdf);
+> This example demonstrates how to copy metadata properties from source package to destination package.
+> Metadata source_metadata = new Metadata(Constants.InputPdf);
> Metadata destination_metadata = new Metadata(Constants.DestinationPdf);
> {
> List tags = new ArrayList();
@@ -806,20 +929,31 @@ Copy known metadata properties from source package to destination package. The o
> source_metadata.copyTo(destination_metadata, tags);
> source_metadata.save();
> }
+>
+>
> ```
+
+
+
+
**Parameters:**
| Parameter | Type | Description |
| --- | --- | --- |
-| metadataPackage | [MetadataPackage](../../com.groupdocs.metadata.core/metadatapackage) | A destination metadata package. |
+| metadataPackage | [MetadataPackage](../../com.groupdocs.metadata.core/metadatapackage) | A destination metadata package.
+ |
| tags | java.util.List | A list of the tags.
---------------------
+
+
+*** ** * ** ***
-If the package types do not match, an error will be returned. |
+If the package types do not match, an error will be returned.
+ |
**Returns:**
int - The number of affected properties.
+
### close() {#close--}
```
public void close()
@@ -828,3 +962,4 @@ public void close()
Closes the loaded document and releases any system resources associated with it.
+
diff --git a/english/java/com/groupdocs/metadata/Metadata.html b/english/java/com/groupdocs/metadata/Metadata.html
index 51266c2c4d..67d3f995b9 100644
--- a/english/java/com/groupdocs/metadata/Metadata.html
+++ b/english/java/com/groupdocs/metadata/Metadata.html
@@ -2,10 +2,10 @@
-
+
-Metadata (GroupDocs.Metadata (26.1) API Reference)
-
+Metadata (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,13 +13,13 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/core/package-summary.html b/english/java/com/groupdocs/metadata/core/package-summary.html
index 3b27f070e8..c7581cd95b 100644
--- a/english/java/com/groupdocs/metadata/core/package-summary.html
+++ b/english/java/com/groupdocs/metadata/core/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata.core (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata.core (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/export/package-summary.html b/english/java/com/groupdocs/metadata/export/package-summary.html
index b762b1e1d2..46b8c593a7 100644
--- a/english/java/com/groupdocs/metadata/export/package-summary.html
+++ b/english/java/com/groupdocs/metadata/export/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata.export (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata.export (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/licensing/package-summary.html b/english/java/com/groupdocs/metadata/licensing/package-summary.html
index 02d180498c..64caa37f1f 100644
--- a/english/java/com/groupdocs/metadata/licensing/package-summary.html
+++ b/english/java/com/groupdocs/metadata/licensing/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata.licensing (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata.licensing (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/options/package-summary.html b/english/java/com/groupdocs/metadata/options/package-summary.html
index 5cb534edb6..84d71a8b0a 100644
--- a/english/java/com/groupdocs/metadata/options/package-summary.html
+++ b/english/java/com/groupdocs/metadata/options/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata.options (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata.options (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/package-summary.html b/english/java/com/groupdocs/metadata/package-summary.html
index ea258df69f..a1d7e0150f 100644
--- a/english/java/com/groupdocs/metadata/package-summary.html
+++ b/english/java/com/groupdocs/metadata/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/search/package-summary.html b/english/java/com/groupdocs/metadata/search/package-summary.html
index d283cfc9e9..002a73273e 100644
--- a/english/java/com/groupdocs/metadata/search/package-summary.html
+++ b/english/java/com/groupdocs/metadata/search/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata.search (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata.search (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/com/groupdocs/metadata/tagging/package-summary.html b/english/java/com/groupdocs/metadata/tagging/package-summary.html
index d93f91ce09..766dd97775 100644
--- a/english/java/com/groupdocs/metadata/tagging/package-summary.html
+++ b/english/java/com/groupdocs/metadata/tagging/package-summary.html
@@ -2,10 +2,10 @@
-
+
-com.groupdocs.metadata.tagging (GroupDocs.Metadata (26.1) API Reference)
-
+com.groupdocs.metadata.tagging (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
diff --git a/english/java/overview-summary.html b/english/java/overview-summary.html
index 612019fe6b..ceee076a8a 100644
--- a/english/java/overview-summary.html
+++ b/english/java/overview-summary.html
@@ -2,10 +2,10 @@
-
+
-Overview (GroupDocs.Metadata (26.1) API Reference)
-
+Overview (GroupDocs.Metadata (26.7) API Reference)
+
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@
@@ -13,7 +13,7 @@