public final class TemporalCoverage extends AbstractBaseComponent
| In DDMS | 2.0 | 3.0 | 3.1 | 4.0.1/4.1 | 5.0 |
To avoid confusion between the name of the temporalCoverage element and the name of the specified time period, the latter is referred to as the "time period name".
If not "Not Applicable" or "Unknown", date formats must adhere to one of the DDMS-allowed date formats.
| History |
|---|
|
Before DDMS 4.0.1, a temporalCoverage element contains a locally defined TimePeriod construct. This TimePeriod construct is a container for the name, start, and end values of a time period. It exists only inside of a ddms:temporalCoverage parent, so it is not implemented as a Java object. Starting in DDMS 4.0.1, the TimePeriod wrapper has been removed. Starting in DDMS 4.1, the start and end dates may optionally be replaced by an approximableStart or approximableEnd date. |
| Nested Elements | ||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| Attributes | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| Validation Rules | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
| Modifier and Type | Class and Description |
|---|---|
static class |
TemporalCoverage.Builder
Builder for this DDMS component.
|
OUTPUT_TEMPLATES| Constructor and Description |
|---|
TemporalCoverage(nu.xom.Element element)
Constructor for creating a component from a XOM Element
|
TemporalCoverage(String timePeriodName,
ApproximableDate approximableStart,
ApproximableDate approximableEnd,
SecurityAttributes securityAttributes)
Constructor for creating a component from raw data, using two approximable dates.
|
TemporalCoverage(String timePeriodName,
ApproximableDate approximableStart,
String endString,
SecurityAttributes securityAttributes)
Constructor for creating a component from raw data, using an approximable start date
and an exact end date.
|
TemporalCoverage(String timePeriodName,
String startString,
ApproximableDate approximableEnd,
SecurityAttributes securityAttributes)
Constructor for creating a component from raw data, using an exact start date
and an approximable end date.
|
TemporalCoverage(String timePeriodName,
String startString,
String endString,
SecurityAttributes securityAttributes)
Constructor for creating a component from raw data, using two exact date values.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Test for logical equality.
|
ApproximableDate |
getApproximableEnd()
Accessor for the approximableStart date.
|
ApproximableDate |
getApproximableStart()
Accessor for the approximableStart date.
|
javax.xml.datatype.XMLGregorianCalendar |
getEnd()
Deprecated.
Because DDMS 4.1 added a new allowable date format (ddms:DateHourMinType),
XMLGregorianCalendar is no longer a sufficient representation. This accessor will return
null for dates in the new format. Use
getEndString() to
access the raw XML format of the date, "Not Applicable", or "Unknown" values instead. |
String |
getEndString()
Accessor for the end date as a string.
|
String |
getHTMLTextOutput(OutputFormat format,
String prefix,
String suffix)
Renders this component as HTML or Text, with an optional prefix to nest it.
|
com.google.gson.JsonObject |
getJSONObject()
Renders this component as a JSON object, which can either be converted to a JSON string or inserted into the
parent JSON object.
|
protected String |
getLocatorSuffix()
Can be overridden to change the locator string used in warnings and errors.
|
static String |
getName(DDMSVersion version)
Accessor for the element name of this component, based on the version of DDMS used
|
protected List<IDDMSComponent> |
getNestedComponents()
Accessor for a collection of nested components.
|
SecurityAttributes |
getSecurityAttributes()
Accessor for the Security Attributes.
|
javax.xml.datatype.XMLGregorianCalendar |
getStart()
Deprecated.
Because DDMS 4.1 added a new allowable date format (ddms:DateHourMinType),
XMLGregorianCalendar is no longer a sufficient representation. This accessor will return
null for dates in the new format. Use
getStartString() to
access the raw XML format of the date, "Not Applicable", or "Unknown" values instead. |
String |
getStartString()
Accessor for the start date as a string.
|
String |
getTimePeriodName()
Accessor for the TimePeriod name element child text.
|
int |
hashCode()
Returns a hashcode for the component.
|
protected void |
validate()
Base case for validation.
|
protected void |
validateWarnings()
Base case for warnings.
|
addDdms40Warning, addJson, addJson, addJson, addJson, addWarning, addWarnings, buildHTMLTextOutput, buildHTMLTextOutput, buildIndex, buildPrefix, getAttributeValue, getAttributeValue, getChild, getChildTextAsDouble, getDDMSVersion, getName, getNamespace, getPrefix, getQualifiedName, getValidationWarnings, getXOMElement, getXOMElementCopy, requireAtLeastVersion, requireAtMostVersion, setXOMElement, toHTML, toJSON, toString, toText, toXMLpublic TemporalCoverage(nu.xom.Element element)
throws InvalidDDMSException
element - the XOM element representing thisInvalidDDMSException - if any required information is missing or malformedpublic TemporalCoverage(String timePeriodName,
String startString,
String endString,
SecurityAttributes securityAttributes)
throws InvalidDDMSException
timePeriodName - the time period namestartString - a string representation of the dateendString - a string representation of the end datesecurityAttributes - any security attributesInvalidDDMSException - if any required information is missing or malformedpublic TemporalCoverage(String timePeriodName,
String startString,
ApproximableDate approximableEnd,
SecurityAttributes securityAttributes)
throws InvalidDDMSException
timePeriodName - the time period namestartString - a string representation of the dateapproximableEnd - the end date, as an approximable datesecurityAttributes - any security attributesInvalidDDMSException - if any required information is missing or malformedpublic TemporalCoverage(String timePeriodName,
ApproximableDate approximableStart,
String endString,
SecurityAttributes securityAttributes)
throws InvalidDDMSException
timePeriodName - the time period nameapproximableStart - the start date, as an approximable dateendString - a string representation of the end datesecurityAttributes - any security attributesInvalidDDMSException - if any required information is missing or malformedpublic TemporalCoverage(String timePeriodName,
ApproximableDate approximableStart,
ApproximableDate approximableEnd,
SecurityAttributes securityAttributes)
throws InvalidDDMSException
timePeriodName - the time period name (if empty, defaults to Unknown)approximableStart - the start date, as an approximable dateapproximableEnd - the end date, as an approximable datesecurityAttributes - any security attributesInvalidDDMSException - if any required information is missing or malformedprotected void validate()
throws InvalidDDMSException
AbstractBaseComponentvalidate in class AbstractBaseComponentInvalidDDMSExceptionAbstractBaseComponent.validate()protected void validateWarnings()
AbstractBaseComponentvalidateWarnings in class AbstractBaseComponentAbstractBaseComponent.validateWarnings()protected String getLocatorSuffix()
AbstractBaseComponentFor components such as Format, there are wrapper elements that are not implemented as Java objects. These elements should be included in the XPath string used to identify the source of the error.
For example, if a ddms:extent element has a warning and the ddms:format element reports it, the locator information should be "/ddms:format/ddms:Media/ddms:extent" and not the default of "/ddms:format/ddms:extent"
getLocatorSuffix in class AbstractBaseComponentAbstractBaseComponent.getLocatorSuffix()public com.google.gson.JsonObject getJSONObject()
AbstractBaseComponentgetJSONObject in class AbstractBaseComponentAbstractBaseComponent.getJSONObject()public String getHTMLTextOutput(OutputFormat format, String prefix, String suffix)
AbstractBaseComponentI consider this to be an internal method, that unfortunately must be marked as public to allow cross-package access when generating output. Use toHTML() and toText() as the formal, public methods to generate output.
getHTMLTextOutput in class AbstractBaseComponentformat - the desired format of this outputprefix - an optional prefix to put on each name.suffix - an optional suffix to append to each name, such as an index.AbstractBaseComponent.getHTMLTextOutput(OutputFormat, String, String)protected List<IDDMSComponent> getNestedComponents()
AbstractBaseComponentgetNestedComponents in class AbstractBaseComponentAbstractBaseComponent.getNestedComponents()public boolean equals(Object obj)
AbstractBaseComponentThe base case tests against the name value and namespaceURI, as well as any child components classified as "nested components" and any security attributes. Extending classes may require additional rules for equality. This case automatically includes any nested components or security attributes.
equals in class AbstractBaseComponentObject.equals(Object)public int hashCode()
AbstractBaseComponentThis automatically includes any nested components or security attributes.
hashCode in class AbstractBaseComponentObject.hashCode()public static String getName(DDMSVersion version)
version - the DDMSVersionpublic String getTimePeriodName()
public javax.xml.datatype.XMLGregorianCalendar getStart()
getStartString() to
access the raw XML format of the date, "Not Applicable", or "Unknown" values instead.public String getStartString()
getStart to work with this value as a calendar date.public javax.xml.datatype.XMLGregorianCalendar getEnd()
getEndString() to
access the raw XML format of the date, "Not Applicable", or "Unknown" values instead.public String getEndString()
getEnd to work with this value as a calendar date.public ApproximableDate getApproximableStart()
public ApproximableDate getApproximableEnd()
public SecurityAttributes getSecurityAttributes()
getSecurityAttributes in interface IDDMSComponentgetSecurityAttributes in class AbstractBaseComponentCopyright 2010 - 2014 by Brian Uri!
Generated on 05/30/2014 06:37 PM
http://ddmsence.urizone.net/