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

net.datastream.schemas.mp_fields.DSString Maven / Gradle / Ivy

There is a newer version: 12.1.0-21
Show newest version

package net.datastream.schemas.mp_fields;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Classe Java pour DSString complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType name="DSString">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="null" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DSString", propOrder = { "value" }) public class DSString { @XmlValue protected String value; @XmlAttribute(name = "null") protected Boolean _null; /** * Obtient la valeur de la propriété value. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Définit la valeur de la propriété value. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Obtient la valeur de la propriété null. * * @return * possible object is * {@link Boolean } * */ public boolean isNull() { if (_null == null) { return false; } else { return _null; } } /** * Définit la valeur de la propriété null. * * @param value * allowed object is * {@link Boolean } * */ public void setNull(Boolean value) { this._null = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy