
net.datastream.schemas.mp_fields.ASPECTPROMPTCUSTOMFIELD Maven / Gradle / Ivy
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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.openapplications.oagis_segments.DATETIME;
import org.openapplications.oagis_segments.QUANTITY;
/**
* Classe Java pour anonymous complex type.
*
*
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <choice>
* <element ref="{http://schemas.datastream.net/MP_fields}ASPECTPROMPTCHARFIELD" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ASPECTPROMPTNUMBERFIELD" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}ASPECTPROMPTDATEFIELD" minOccurs="0"/>
* </choice>
* </sequence>
* <attribute name="fieldcode" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="label" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="sequence" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="columnname" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="mandatory" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" />
* <attribute name="calculatedresultfield" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" />
* <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}long" />
* <attribute name="case" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" />
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="promptvaluesexist" type="{http://schemas.datastream.net/MP_fields}FLAG_Type" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"aspectpromptcharfield",
"aspectpromptnumberfield",
"aspectpromptdatefield"
})
@XmlRootElement(name = "ASPECTPROMPTCUSTOMFIELD")
public class ASPECTPROMPTCUSTOMFIELD {
@XmlElement(name = "ASPECTPROMPTCHARFIELD")
protected String aspectpromptcharfield;
@XmlElement(name = "ASPECTPROMPTNUMBERFIELD")
protected QUANTITY aspectpromptnumberfield;
@XmlElement(name = "ASPECTPROMPTDATEFIELD")
protected DATETIME aspectpromptdatefield;
@XmlAttribute(name = "fieldcode")
protected String fieldcode;
@XmlAttribute(name = "label")
protected String label;
@XmlAttribute(name = "sequence")
protected Long sequence;
@XmlAttribute(name = "columnname")
protected String columnname;
@XmlAttribute(name = "mandatory")
protected String mandatory;
@XmlAttribute(name = "calculatedresultfield")
protected String calculatedresultfield;
@XmlAttribute(name = "size")
protected Long size;
@XmlAttribute(name = "case")
protected String _case;
@XmlAttribute(name = "type")
protected String type;
@XmlAttribute(name = "promptvaluesexist")
protected String promptvaluesexist;
/**
* Obtient la valeur de la propriété aspectpromptcharfield.
*
* @return
* possible object is
* {@link String }
*
*/
public String getASPECTPROMPTCHARFIELD() {
return aspectpromptcharfield;
}
/**
* Définit la valeur de la propriété aspectpromptcharfield.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setASPECTPROMPTCHARFIELD(String value) {
this.aspectpromptcharfield = value;
}
/**
* Obtient la valeur de la propriété aspectpromptnumberfield.
*
* @return
* possible object is
* {@link QUANTITY }
*
*/
public QUANTITY getASPECTPROMPTNUMBERFIELD() {
return aspectpromptnumberfield;
}
/**
* Définit la valeur de la propriété aspectpromptnumberfield.
*
* @param value
* allowed object is
* {@link QUANTITY }
*
*/
public void setASPECTPROMPTNUMBERFIELD(QUANTITY value) {
this.aspectpromptnumberfield = value;
}
/**
* Obtient la valeur de la propriété aspectpromptdatefield.
*
* @return
* possible object is
* {@link DATETIME }
*
*/
public DATETIME getASPECTPROMPTDATEFIELD() {
return aspectpromptdatefield;
}
/**
* Définit la valeur de la propriété aspectpromptdatefield.
*
* @param value
* allowed object is
* {@link DATETIME }
*
*/
public void setASPECTPROMPTDATEFIELD(DATETIME value) {
this.aspectpromptdatefield = value;
}
/**
* Obtient la valeur de la propriété fieldcode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFieldcode() {
return fieldcode;
}
/**
* Définit la valeur de la propriété fieldcode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFieldcode(String value) {
this.fieldcode = value;
}
/**
* Obtient la valeur de la propriété label.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLabel() {
return label;
}
/**
* Définit la valeur de la propriété label.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLabel(String value) {
this.label = value;
}
/**
* Obtient la valeur de la propriété sequence.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSequence() {
return sequence;
}
/**
* Définit la valeur de la propriété sequence.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSequence(Long value) {
this.sequence = value;
}
/**
* Obtient la valeur de la propriété columnname.
*
* @return
* possible object is
* {@link String }
*
*/
public String getColumnname() {
return columnname;
}
/**
* Définit la valeur de la propriété columnname.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setColumnname(String value) {
this.columnname = value;
}
/**
* Obtient la valeur de la propriété mandatory.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMandatory() {
return mandatory;
}
/**
* Définit la valeur de la propriété mandatory.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMandatory(String value) {
this.mandatory = value;
}
/**
* Obtient la valeur de la propriété calculatedresultfield.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCalculatedresultfield() {
return calculatedresultfield;
}
/**
* Définit la valeur de la propriété calculatedresultfield.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCalculatedresultfield(String value) {
this.calculatedresultfield = value;
}
/**
* Obtient la valeur de la propriété size.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getSize() {
return size;
}
/**
* Définit la valeur de la propriété size.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setSize(Long value) {
this.size = value;
}
/**
* Obtient la valeur de la propriété case.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCase() {
return _case;
}
/**
* Définit la valeur de la propriété case.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCase(String value) {
this._case = value;
}
/**
* Obtient la valeur de la propriété type.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Définit la valeur de la propriété type.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Obtient la valeur de la propriété promptvaluesexist.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPromptvaluesexist() {
return promptvaluesexist;
}
/**
* Définit la valeur de la propriété promptvaluesexist.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPromptvaluesexist(String value) {
this.promptvaluesexist = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy