Package uk.ac.starlink.votable
Class VOTableVersion
- java.lang.Object
-
- uk.ac.starlink.votable.VOTableVersion
-
- All Implemented Interfaces:
java.lang.Comparable<VOTableVersion>
public abstract class VOTableVersion extends java.lang.Object implements java.lang.Comparable<VOTableVersion>
Provides characteristics for a given version of the VOTable standard. An instance of this class is passed to aVOTableWriterto indicate what version of the standard should be followed when generating VOTable output.- Since:
- 15 Nov 2012
- Author:
- Mark Taylor
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringDEFAULT_VERSION_STRINGDefault VOTable version number which output will conform to if not otherwise specified ("1.4").static VOTableVersionV10VOTable 1.0.static VOTableVersionV11VOTable 1.1.static VOTableVersionV12VOTable 1.2.static VOTableVersionV13VOTable 1.3.static VOTableVersionV14VOTable 1.4.static java.lang.StringVOTABLE_VERSION_PROPSystem property name whose value gives the default VOTable version written by instances of this class if no version is given explicitly.
-
Constructor Summary
Constructors Modifier Constructor Description protectedVOTableVersion(java.lang.String versionNumber)Constructor.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract booleanallowBinary2()Indicates whether the BINARY2 serialization format is defined by this version.abstract booleanallowEmptyTd()Indicates whether this version permits an empty TD element to represent a null value for all data types.abstract booleanallowTimesys()Indicates whether the TIMESYS element is supported in this version.abstract booleanallowXtype()Indicates whether the xtype attribute is permitted on FIELD elements etc in this version.intcompareTo(VOTableVersion other)static VOTableVersiongetDefaultVersion()Returns the version instance used by default for output in this JVM.abstract java.lang.StringgetDoctypeDeclaration()Returns the text of the DOCTYPE XML declaration for this version.abstract java.net.URLgetDtdUrl()Returns a URL from which the DTD can be retrieved.static java.util.Map<java.lang.String,VOTableVersion>getKnownVersions()Returns a number->version map for all known versions.abstract javax.xml.validation.SchemagetSchema()Returns a schema which may be used to validate document instances of this VOTable version.abstract java.lang.StringgetSchemaLocation()Returns the URL of the VOTable schema corresponding to this version.java.lang.StringgetVersionNumber()Returns the version number for this version.abstract java.lang.StringgetXmlNamespace()Returns the XML namespace in which the VOTable elements reside.abstract booleanisVOUnitSyntax()Indicates whether this version of VOTable is supposed to use the VOUnit standard for the content of unit attributes.java.lang.StringtoString()Returns version number.
-
-
-
Field Detail
-
V10
public static final VOTableVersion V10
VOTable 1.0.
-
V11
public static final VOTableVersion V11
VOTable 1.1.
-
V12
public static final VOTableVersion V12
VOTable 1.2.
-
V13
public static final VOTableVersion V13
VOTable 1.3.
-
V14
public static final VOTableVersion V14
VOTable 1.4.
-
DEFAULT_VERSION_STRING
public static final java.lang.String DEFAULT_VERSION_STRING
Default VOTable version number which output will conform to if not otherwise specified ("1.4").- See Also:
- Constant Field Values
-
VOTABLE_VERSION_PROP
public static final java.lang.String VOTABLE_VERSION_PROP
System property name whose value gives the default VOTable version written by instances of this class if no version is given explicitly. The property is named "votable.version" and if it is not supplied the version defaults to the value ofDEFAULT_VERSION_STRING(="1.4").- See Also:
- Constant Field Values
-
-
Method Detail
-
getVersionNumber
public java.lang.String getVersionNumber()
Returns the version number for this version.- Returns:
- version number (like "1.1")
-
getXmlNamespace
public abstract java.lang.String getXmlNamespace()
Returns the XML namespace in which the VOTable elements reside.- Returns:
- VOTable XML namespace, or null
-
getSchemaLocation
public abstract java.lang.String getSchemaLocation()
Returns the URL of the VOTable schema corresponding to this version.- Returns:
- VOTable schema, or null
-
getSchema
public abstract javax.xml.validation.Schema getSchema()
Returns a schema which may be used to validate document instances of this VOTable version. Will return non-null iffgetSchemaLocation()returns non-null.- Returns:
- validation schema, or null
-
getDoctypeDeclaration
public abstract java.lang.String getDoctypeDeclaration()
Returns the text of the DOCTYPE XML declaration for this version.- Returns:
- doctype declaration, or null
-
getDtdUrl
public abstract java.net.URL getDtdUrl()
Returns a URL from which the DTD can be retrieved. This is not the canonical DTD url, but a pointer to a local resource. Will return non-null iffgetDoctypeDeclaration()returns non-null.- Returns:
- local URL from which the DTD can be retrieved, or null
-
compareTo
public int compareTo(VOTableVersion other)
- Specified by:
compareToin interfacejava.lang.Comparable<VOTableVersion>
-
toString
public java.lang.String toString()
Returns version number.- Overrides:
toStringin classjava.lang.Object
-
allowEmptyTd
public abstract boolean allowEmptyTd()
Indicates whether this version permits an empty TD element to represent a null value for all data types.- Returns:
- true iff empty TD elements are always permitted
-
allowBinary2
public abstract boolean allowBinary2()
Indicates whether the BINARY2 serialization format is defined by this version.- Returns:
- true iff BINARY2 is allowed
-
allowXtype
public abstract boolean allowXtype()
Indicates whether the xtype attribute is permitted on FIELD elements etc in this version.- Returns:
- true iff xtype attribute is allowed
-
allowTimesys
public abstract boolean allowTimesys()
Indicates whether the TIMESYS element is supported in this version.- Returns:
- true iff TIMESYS is allowed
-
isVOUnitSyntax
public abstract boolean isVOUnitSyntax()
Indicates whether this version of VOTable is supposed to use the VOUnit standard for the content of unit attributes.- Returns:
- true if VOUnits are supposed to be used
- See Also:
- VOUnits
-
getKnownVersions
public static java.util.Map<java.lang.String,VOTableVersion> getKnownVersions()
Returns a number->version map for all known versions. The map keys are version number strings like "1.1". The order of entries in this map is in ascending order of version number.- Returns:
- version map
-
getDefaultVersion
public static VOTableVersion getDefaultVersion()
Returns the version instance used by default for output in this JVM. By default this is determined by the value of theDEFAULT_VERSION_STRINGconstant, but it can be overridden by use of theVOTABLE_VERSION_PROP("votable.version") system property.- Returns:
- default VOTable version for output
-
-