All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datacite.schema.kernel_4.Box Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
//
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy