Cloudiness.java
package sk.iway.iwcm.components.weather.met.no.generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Element denoting the cloudiness in percent or eights.
*
*
* <p>Java class for cloudiness complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="cloudiness">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="eights">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}integer">
* <minInclusive value="0"/>
* <maxInclusive value="8"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="percent" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "cloudiness")
public class Cloudiness {
@XmlAttribute(name = "eights")
protected Integer eights;
@XmlAttribute(name = "percent")
protected String percent;
@XmlAttribute(name = "id")
protected String id;
/**
* Gets the value of the eights property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getEights() {
return eights;
}
/**
* Sets the value of the eights property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setEights(Integer value) {
this.eights = value;
}
/**
* Gets the value of the percent property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPercent() {
return percent;
}
/**
* Sets the value of the percent property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPercent(String value) {
this.percent = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
}