Package org.apache.tika.metadata
Class Metadata
java.lang.Object
org.apache.tika.metadata.Metadata
- All Implemented Interfaces:
Serializable
,ClimateForcast
,CreativeCommons
,Geographic
,HttpHeaders
,Message
,TIFF
,TikaMimeKeys
- Direct Known Subclasses:
XMPMetadata
public class Metadata
extends Object
implements CreativeCommons, Geographic, HttpHeaders, Message, ClimateForcast, TIFF, TikaMimeKeys, Serializable
A multi-valued metadata container.
- See Also:
-
Field Summary
Fields inherited from interface org.apache.tika.metadata.ClimateForcast
ACKNOWLEDGEMENT, COMMAND_LINE, COMMENT, CONTACT, CONVENTIONS, EXPERIMENT_ID, HISTORY, INSTITUTION, MODEL_NAME_ENGLISH, PROGRAM_ID, PROJECT_ID, REALIZATION, REFERENCES, SOURCE, TABLE_ID
Fields inherited from interface org.apache.tika.metadata.CreativeCommons
LICENSE_LOCATION, LICENSE_URL, WORK_TYPE
Fields inherited from interface org.apache.tika.metadata.Geographic
ALTITUDE, LATITUDE, LONGITUDE
Fields inherited from interface org.apache.tika.metadata.HttpHeaders
CONTENT_DISPOSITION, CONTENT_ENCODING, CONTENT_LANGUAGE, CONTENT_LENGTH, CONTENT_LOCATION, CONTENT_MD5, CONTENT_TYPE, LOCATION
Fields inherited from interface org.apache.tika.metadata.Message
MESSAGE_BCC, MESSAGE_BCC_DISPLAY_NAME, MESSAGE_BCC_EMAIL, MESSAGE_BCC_NAME, MESSAGE_CC, MESSAGE_CC_DISPLAY_NAME, MESSAGE_CC_EMAIL, MESSAGE_CC_NAME, MESSAGE_FROM, MESSAGE_FROM_EMAIL, MESSAGE_FROM_NAME, MESSAGE_PREFIX, MESSAGE_RAW_HEADER_PREFIX, MESSAGE_RECIPIENT_ADDRESS, MESSAGE_TO, MESSAGE_TO_DISPLAY_NAME, MESSAGE_TO_EMAIL, MESSAGE_TO_NAME, MULTIPART_BOUNDARY, MULTIPART_SUBTYPE
Fields inherited from interface org.apache.tika.metadata.TIFF
BITS_PER_SAMPLE, EQUIPMENT_MAKE, EQUIPMENT_MODEL, EXIF_PAGE_COUNT, EXPOSURE_TIME, F_NUMBER, FLASH_FIRED, FOCAL_LENGTH, IMAGE_LENGTH, IMAGE_WIDTH, ISO_SPEED_RATINGS, ORIENTATION, ORIGINAL_DATE, RESOLUTION_HORIZONTAL, RESOLUTION_UNIT, RESOLUTION_VERTICAL, SAMPLES_PER_PIXEL, SOFTWARE
Fields inherited from interface org.apache.tika.metadata.TikaMimeKeys
MIME_TYPE_MAGIC, TIKA_MIME_FILE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add a metadata name/value mapping.protected void
Add a metadata name/value mapping.void
Adds the integer value of the identified metadata property.void
Add a metadata property/value mapping.void
Adds the date value of the identified metadata property.boolean
Get the value associated to a metadata name.Returns the value (if any) of the identified metadata property.Returns the value of the identified Date based metadata property.Returns the value of the identified Integer based metadata property.int[]
getIntValues
(Property property) Gets the array of ints of the identified "seq" integer metadata property.long[]
getLongValues
(Property property) Gets the array of ints of the identified "seq" integer metadata property.String[]
Get the values associated to a metadata name.String[]
Get the values associated to a metadata name.int
hashCode()
boolean
isMultiValued
(String name) Returns true if named value is multivalued.boolean
isMultiValued
(Property property) Returns true if named value is multivalued.String[]
names()
Returns an array of the names contained in the metadata.void
Remove a metadata and all its associated values.void
Set metadata name/value.protected void
void
Sets the integer value of the identified metadata property.void
Sets the real or rational value of the identified metadata property.void
Sets the integer value of the identified metadata property.void
Sets the integer value of the identified metadata property.void
Sets the value of the identified metadata property.void
Sets the values of the identified metadata property.void
Sets the date value of the identified metadata property.void
Sets the date value of the identified metadata property.void
setAll
(Properties properties) Copy All key-value pairs from properties.void
setMetadataWriteFilter
(MetadataWriteFilter writeFilter) Sets the writeFilter that is called beforeset(String, String)
set(String, String[])
,add(String, String)
,add(String, String[])
.int
size()
Returns the number of metadata names in this metadata.toString()
-
Constructor Details
-
Metadata
public Metadata()Constructs a new, empty metadata.
-
-
Method Details
-
isMultiValued
Returns true if named value is multivalued.- Parameters:
property
- metadata property- Returns:
- true is named value is multivalued, false if single value or null
-
isMultiValued
Returns true if named value is multivalued.- Parameters:
name
- name of metadata- Returns:
- true is named value is multivalued, false if single value or null
-
names
Returns an array of the names contained in the metadata.- Returns:
- Metadata names
-
get
Get the value associated to a metadata name. If many values are assiociated to the specified name, then the first one is returned.- Parameters:
name
- of the metadata.- Returns:
- the value associated to the specified metadata name.
-
setMetadataWriteFilter
Sets the writeFilter that is called beforeset(String, String)
set(String, String[])
,add(String, String)
,add(String, String[])
. The default isACCEPT_ALL
. This is intended for expert use only. Some parsers rely on metadata during the parse, and if the metadata they need is excluded, they will not function properly.- Parameters:
writeFilter
-- Since:
- 2.4.0
-
get
Returns the value (if any) of the identified metadata property.- Parameters:
property
- property definition- Returns:
- property value, or
null
if the property is not set - Since:
- Apache Tika 0.7
-
getInt
Returns the value of the identified Integer based metadata property.- Parameters:
property
- simple integer property definition- Returns:
- property value as a Integer, or
null
if the property is not set, or not a valid Integer - Since:
- Apache Tika 0.8
-
getDate
Returns the value of the identified Date based metadata property.- Parameters:
property
- simple date property definition- Returns:
- property value as a Date, or
null
if the property is not set, or not a valid Date - Since:
- Apache Tika 0.8
-
getValues
Get the values associated to a metadata name.- Parameters:
property
- of the metadata.- Returns:
- the values associated to a metadata name.
-
getValues
Get the values associated to a metadata name.- Parameters:
name
- of the metadata.- Returns:
- the values associated to a metadata name.
-
add
Add a metadata name/value mapping. Add the specified value to the list of values associated to the specified metadata name.- Parameters:
name
- the metadata name.value
- the metadata value.
-
add
Add a metadata name/value mapping. Add the specified value to the list of values associated to the specified metadata name.- Parameters:
name
- the metadata name.newValues
- the metadata values
-
add
Add a metadata property/value mapping. Add the specified value to the list of values associated to the specified metadata property.- Parameters:
property
- the metadata property.value
- the metadata value.
-
setAll
Copy All key-value pairs from properties.- Parameters:
properties
- properties to copy from
-
set
Set metadata name/value. Associate the specified value to the specified metadata name. If some previous values were associated to this name, they are removed. If the given value isnull
, then the metadata entry is removed.- Parameters:
name
- the metadata name.value
- the metadata value, ornull
-
set
-
set
Sets the value of the identified metadata property.- Parameters:
property
- property definitionvalue
- property value- Since:
- Apache Tika 0.7
-
set
Sets the values of the identified metadata property.- Parameters:
property
- property definitionvalues
- property values- Since:
- Apache Tika 1.2
-
set
Sets the integer value of the identified metadata property.- Parameters:
property
- simple integer property definitionvalue
- property value- Since:
- Apache Tika 0.8
-
set
Sets the integer value of the identified metadata property.- Parameters:
property
- simple integer property definitionvalue
- property value- Since:
- Apache Tika 0.8
-
set
Sets the integer value of the identified metadata property.- Parameters:
property
- simple integer property definitionvalue
- property value- Since:
- Apache Tika 2.1.1
-
add
Adds the integer value of the identified metadata property.- Parameters:
property
- seq integer property definitionvalue
- property value- Since:
- Apache Tika 1.21
-
getIntValues
Gets the array of ints of the identified "seq" integer metadata property.- Parameters:
property
- seq integer property definition- Returns:
- array of ints
- Since:
- Apache Tika 1.21
-
getLongValues
Gets the array of ints of the identified "seq" integer metadata property.- Parameters:
property
- seq integer property definition- Returns:
- array of ints
- Since:
- Apache Tika 1.21
-
set
Sets the real or rational value of the identified metadata property.- Parameters:
property
- simple real or simple rational property definitionvalue
- property value- Since:
- Apache Tika 0.8
-
set
Sets the date value of the identified metadata property.- Parameters:
property
- simple integer property definitiondate
- property value- Since:
- Apache Tika 0.8
-
set
Sets the date value of the identified metadata property.- Parameters:
property
- simple integer property definitiondate
- property value- Since:
- Apache Tika 0.8
-
add
Adds the date value of the identified metadata property.- Parameters:
property
- simple calendar property definitiondate
- property value- Since:
- Apache Tika 2.5.0
-
remove
Remove a metadata and all its associated values.- Parameters:
name
- metadata name to remove
-
size
public int size()Returns the number of metadata names in this metadata.- Returns:
- number of metadata names
-
hashCode
public int hashCode() -
equals
-
toString
-