Skip to content

Commit ebf5101

Browse files
Update file(s) "/." from "groupdocs-metadata/Groupdocs.Metadata-References"
1 parent 80008f0 commit ebf5101

File tree

898 files changed

+4660
-4496
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

898 files changed

+4660
-4496
lines changed

content/sites/groupdocs/metadata/english/java/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ weight: 11
55
url: /java/
66
description: GroupDocs.Metadata for Java API References contain examples, code snippets, and API documentation. It provides packages, classes, interfaces, and other API details.
77
is_root: true
8-
version: 24.12
8+
version: 26.1
99
---
1010

1111
## Packages

content/sites/groupdocs/metadata/english/java/allclasses-frame.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Tue Dec 24 10:31:17 CST 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Wed Feb 04 15:27:26 CST 2026 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>All Classes (GroupDocs.Metadata (24.12) API Reference)</title>
8-
<meta name="date" content="2024-12-24">
7+
<title>All Classes (GroupDocs.Metadata (26.1) API Reference)</title>
8+
<meta name="date" content="2026-02-04">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<script type="text/javascript" src="script.js"></script>
1111
</head>

content/sites/groupdocs/metadata/english/java/allclasses-noframe.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Tue Dec 24 10:31:17 CST 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Wed Feb 04 15:27:26 CST 2026 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>All Classes (GroupDocs.Metadata (24.12) API Reference)</title>
8-
<meta name="date" content="2024-12-24">
7+
<title>All Classes (GroupDocs.Metadata (26.1) API Reference)</title>
8+
<meta name="date" content="2026-02-04">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<script type="text/javascript" src="script.js"></script>
1111
</head>

content/sites/groupdocs/metadata/english/java/com.groupdocs.metadata.core/metadatapropertytype/_index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Defines metadata property types.
3737
| [MetadataArray](#MetadataArray) | Represents an array of nested metadata blocks. |
3838
| [Guid](#Guid) | Represents a global unique identifier value. |
3939
| [PropertyValueArray](#PropertyValueArray) | Represents a metadata property value array. |
40+
| [Object](#Object) | Represents a generic object property. |
4041
## Methods
4142

4243
| Method | Description |
@@ -186,6 +187,14 @@ public static final MetadataPropertyType PropertyValueArray
186187

187188
Represents a metadata property value array.
188189

190+
### Object {#Object}
191+
```
192+
public static final MetadataPropertyType Object
193+
```
194+
195+
196+
Represents a generic object property.
197+
189198
### values() {#values--}
190199
```
191200
public static MetadataPropertyType[] values()

content/sites/groupdocs/metadata/english/java/com.groupdocs.metadata.core/msgpackage/_index.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Represents MSG message metadata.
2626
| --- | --- |
2727
| [getBody()](#getBody--) | Gets the email message text. |
2828
| [getCategories()](#getCategories--) | Gets the array of categories or keywords. |
29+
| [getAttachments()](#getAttachments--) | Gets an array of the attached files. |
2930
| [getDeliveryTime()](#getDeliveryTime--) | Gets the date and time the message was delivered. |
3031
### getBody() {#getBody--}
3132
```
@@ -47,6 +48,16 @@ Gets the array of categories or keywords.
4748

4849
**Returns:**
4950
java.lang.String[] - The array of categories or keywords.
51+
### getAttachments() {#getAttachments--}
52+
```
53+
public final MsgAttachmentPackage[] getAttachments()
54+
```
55+
56+
57+
Gets an array of the attached files.
58+
59+
**Returns:**
60+
com.groupdocs.metadata.core.MsgAttachmentPackage[] - An array of the attached files.
5061
### getDeliveryTime() {#getDeliveryTime--}
5162
```
5263
public final Date getDeliveryTime()

content/sites/groupdocs/metadata/english/java/com.groupdocs.metadata.core/msgrootpackage/_index.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ This code sample shows how to extract metadata from an MSG message.
5151
| Method | Description |
5252
| --- | --- |
5353
| [getMsgPackage()](#getMsgPackage--) | Gets the MSG metadata package. |
54+
| [getString(MsgKnownProperties tag)](#getString-com.groupdocs.metadata.core.MsgKnownProperties-) | Gets the string value of the property specified by tag. |
5455
### getMsgPackage() {#getMsgPackage--}
5556
```
5657
public final MsgPackage getMsgPackage()
@@ -61,3 +62,18 @@ Gets the MSG metadata package.
6162
6263
**Returns:**
6364
[MsgPackage](../../com.groupdocs.metadata.core/msgpackage) - The MSG metadata package.
65+
### getString(MsgKnownProperties tag) {#getString-com.groupdocs.metadata.core.MsgKnownProperties-}
66+
```
67+
public final String getString(MsgKnownProperties tag)
68+
```
69+
70+
71+
Gets the string value of the property specified by tag.
72+
73+
**Parameters:**
74+
| Parameter | Type | Description |
75+
| --- | --- | --- |
76+
| tag | [MsgKnownProperties](../../com.groupdocs.metadata.core/msgknownproperties) | The value from MsgKnownProperties enum. |
77+
78+
**Returns:**
79+
java.lang.String - The value of the property. If the property does not exist, returns null; otherwise, returns the value.

content/sites/groupdocs/metadata/english/java/com.groupdocs.metadata.core/propertyvalue/_index.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ Represents a property value.
3131
| [PropertyValue(PropertyValue[] values)](#PropertyValue-com.groupdocs.metadata.core.PropertyValue---) | Initializes a new instance of the PropertyValue class with an array of metadata property values. |
3232
| [PropertyValue(PropertyValue value)](#PropertyValue-com.groupdocs.metadata.core.PropertyValue-) | |
3333
| [PropertyValue(UUID value)](#PropertyValue-java.util.UUID-) | |
34+
| [PropertyValue(Object value)](#PropertyValue-java.lang.Object-) | Initializes a new instance of the PropertyValue class with a generic object value. |
3435
## Methods
3536

3637
| Method | Description |
@@ -220,6 +221,19 @@ public PropertyValue(UUID value)
220221
| --- | --- | --- |
221222
| value | java.util.UUID | |
222223

224+
### PropertyValue(Object value) {#PropertyValue-java.lang.Object-}
225+
```
226+
public PropertyValue(Object value)
227+
```
228+
229+
230+
Initializes a new instance of the PropertyValue class with a generic object value.
231+
232+
**Parameters:**
233+
| Parameter | Type | Description |
234+
| --- | --- | --- |
235+
| value | java.lang.Object | An object value. |
236+
223237
### getType() {#getType--}
224238
```
225239
public final MetadataPropertyType getType()

content/sites/groupdocs/metadata/english/java/com.groupdocs.metadata.core/psdlayer/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ Gets the layer flags.
6868
[PsdLayerFlags](../../com.groupdocs.metadata.core/psdlayerflags) - The flags.
6969
### getLength() {#getLength--}
7070
```
71-
public final int getLength()
71+
public final long getLength()
7272
```
7373

7474

7575
Gets the overall layer length in bytes.
7676

7777
**Returns:**
78-
int - The overall layer length in bytes.
78+
long - The overall layer length in bytes.
7979
### getOpacity() {#getOpacity--}
8080
```
8181
public final byte getOpacity()

content/sites/groupdocs/metadata/english/java/com/groupdocs/metadata/Metadata.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Tue Dec 24 10:31:11 CST 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Wed Feb 04 15:27:24 CST 2026 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>Metadata (GroupDocs.Metadata (24.12) API Reference)</title>
8-
<meta name="date" content="2024-12-24">
7+
<title>Metadata (GroupDocs.Metadata (26.1) API Reference)</title>
8+
<meta name="date" content="2026-02-04">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="Metadata (GroupDocs.Metadata (24.12) API Reference)";
16+
parent.document.title="Metadata (GroupDocs.Metadata (26.1) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -1160,6 +1160,6 @@ <h4>updateProperties</h4>
11601160
<!-- -->
11611161
</a></div>
11621162
<!-- ======== END OF BOTTOM NAVBAR ======= -->
1163-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
1163+
<p class="legalCopy"><small>Copyright &#169; 2026. All rights reserved.</small></p>
11641164
</body>
11651165
</html>

content/sites/groupdocs/metadata/english/java/com/groupdocs/metadata/class-use/Metadata.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_421) on Tue Dec 24 10:31:16 CST 2024 -->
5+
<!-- Generated by javadoc (1.8.0_421) on Wed Feb 04 15:27:26 CST 2026 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>Uses of Class com.groupdocs.metadata.Metadata (GroupDocs.Metadata (24.12) API Reference)</title>
8-
<meta name="date" content="2024-12-24">
7+
<title>Uses of Class com.groupdocs.metadata.Metadata (GroupDocs.Metadata (26.1) API Reference)</title>
8+
<meta name="date" content="2026-02-04">
99
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="Uses of Class com.groupdocs.metadata.Metadata (GroupDocs.Metadata (24.12) API Reference)";
16+
parent.document.title="Uses of Class com.groupdocs.metadata.Metadata (GroupDocs.Metadata (26.1) API Reference)";
1717
}
1818
}
1919
catch(err) {
@@ -119,6 +119,6 @@ <h2 title="Uses of Class com.groupdocs.metadata.Metadata" class="title">Uses of
119119
<!-- -->
120120
</a></div>
121121
<!-- ======== END OF BOTTOM NAVBAR ======= -->
122-
<p class="legalCopy"><small>Copyright &#169; 2024. All rights reserved.</small></p>
122+
<p class="legalCopy"><small>Copyright &#169; 2026. All rights reserved.</small></p>
123123
</body>
124124
</html>

0 commit comments

Comments
 (0)