public final class XmpDate extends XmpTypeBase
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
Modifier and Type | Field and Description |
---|---|
static String |
Iso8601Format
The ISO 8601 (roundtrip) format string.
|
Constructor and Description |
---|
XmpDate(Date dateTime)
Initializes a new instance of the
XmpDate class. |
XmpDate(String dateString)
Initializes a new instance of the
XmpDate class. |
Modifier and Type | Method and Description |
---|---|
String |
getFormat()
Gets the format string for current value.
|
Date |
getValue()
Gets or sets the date value.
|
String |
getXmpRepresentation()
Returns string contained value in XMP format.
|
void |
setValue(Date value)
Gets or sets the date value.
|
public static final String Iso8601Format
The ISO 8601 (roundtrip) format string.
See more: https://en.wikipedia.org/wiki/ISO_8601.
public XmpDate(Date dateTime)
Initializes a new instance of the XmpDate
class.
dateTime
- A date-time value which is represented using a subset of ISO RFC 8601 formatting.public XmpDate(String dateString)
Initializes a new instance of the XmpDate
class.
dateString
- The string representation of date.com.aspose.ms.System.ArgumentException
- Invalid date format;datepublic Date getValue()
Gets or sets the date value.
Value: The date value.public void setValue(Date value)
Gets or sets the date value.
Value: The date value.public String getFormat()
Gets the format string for current value.
Value: The format string for current value.public String getXmpRepresentation()
Returns string contained value in XMP format.
getXmpRepresentation
in interface IXmpType
getXmpRepresentation
in class XmpTypeBase