This is an automated email from the ASF dual-hosted git repository.
tilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tika.git
The following commit(s) were added to refs/heads/main by this push:
new 3b00351b4 TIKA-4442: fix javadoc
3b00351b4 is described below
commit 3b00351b475cd87d88803b3dcd5fbc7794dab8c6
Author: Tilman Hausherr <[email protected]>
AuthorDate: Wed Jun 25 15:01:46 2025 +0200
TIKA-4442: fix javadoc
---
.../src/main/java/org/apache/tika/metadata/Metadata.java | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/tika-core/src/main/java/org/apache/tika/metadata/Metadata.java
b/tika-core/src/main/java/org/apache/tika/metadata/Metadata.java
index 1e36faab3..a5f1a2390 100644
--- a/tika-core/src/main/java/org/apache/tika/metadata/Metadata.java
+++ b/tika-core/src/main/java/org/apache/tika/metadata/Metadata.java
@@ -157,8 +157,8 @@ public class Metadata
}
/**
- * Get the value associated to a metadata name. If many values are
assiociated
- * to the specified name, then the first one is returned.
+ * Get the value associated to a metadata name. If many values are
associated to the specified
+ * name, then the first one is returned.
*
* @param name of the metadata.
* @return the value associated to the specified metadata name.
@@ -190,7 +190,8 @@ public class Metadata
}
/**
- * Returns the value (if any) of the identified metadata property.
+ * Returns the value (if any) of the identified metadata property. If many
values are associated
+ * to the specified property, then the first one is returned.
*
* @param property property definition
* @return property value, or <code>null</code> if the property is not set
@@ -201,7 +202,8 @@ public class Metadata
}
/**
- * Returns the value of the identified Integer based metadata property.
+ * Returns the value of the identified Integer based metadata property. If
many values are
+ * associated to the specified property, then the first one is returned.
*
* @param property simple integer property definition
* @return property value as a Integer, or <code>null</code> if the
property is not set, or
@@ -228,7 +230,8 @@ public class Metadata
}
/**
- * Returns the value of the identified Date based metadata property.
+ * Returns the value of the identified Date based metadata property. If
many values are
+ * associated to the specified property, then the first one is returned.
*
* @param property simple date property definition
* @return property value as a Date, or <code>null</code> if the property
is not set, or not