org.datacite.schema.kernel_4.Box Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-base Show documentation
Show all versions of service-base Show documentation
Base service module containing entities, interfaces and helpers.
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 generiert
// Siehe http://java.sun.com/xml/jaxb
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2018.01.10 um 07:42:46 AM CET
//
package org.datacite.schema.kernel_4;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java-Klasse für box complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="box">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <all>
* <element name="westBoundLongitude" type="{http://datacite.org/schema/kernel-4}longitudeType"/>
* <element name="eastBoundLongitude" type="{http://datacite.org/schema/kernel-4}longitudeType"/>
* <element name="southBoundLatitude" type="{http://datacite.org/schema/kernel-4}latitudeType"/>
* <element name="northBoundLatitude" type="{http://datacite.org/schema/kernel-4}latitudeType"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "box", propOrder = {
})
public class Box {
protected float westBoundLongitude;
protected float eastBoundLongitude;
protected float southBoundLatitude;
protected float northBoundLatitude;
/**
* Ruft den Wert der westBoundLongitude-Eigenschaft ab.
*
*/
public float getWestBoundLongitude() {
return westBoundLongitude;
}
/**
* Legt den Wert der westBoundLongitude-Eigenschaft fest.
*
*/
public void setWestBoundLongitude(float value) {
this.westBoundLongitude = value;
}
/**
* Ruft den Wert der eastBoundLongitude-Eigenschaft ab.
*
*/
public float getEastBoundLongitude() {
return eastBoundLongitude;
}
/**
* Legt den Wert der eastBoundLongitude-Eigenschaft fest.
*
*/
public void setEastBoundLongitude(float value) {
this.eastBoundLongitude = value;
}
/**
* Ruft den Wert der southBoundLatitude-Eigenschaft ab.
*
*/
public float getSouthBoundLatitude() {
return southBoundLatitude;
}
/**
* Legt den Wert der southBoundLatitude-Eigenschaft fest.
*
*/
public void setSouthBoundLatitude(float value) {
this.southBoundLatitude = value;
}
/**
* Ruft den Wert der northBoundLatitude-Eigenschaft ab.
*
*/
public float getNorthBoundLatitude() {
return northBoundLatitude;
}
/**
* Legt den Wert der northBoundLatitude-Eigenschaft fest.
*
*/
public void setNorthBoundLatitude(float value) {
this.northBoundLatitude = value;
}
}