org.plasma.metamodel.ValueConstraint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.09.11 at 01:59:49 PM MST
//
package org.plasma.metamodel;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ValueConstraint complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ValueConstraint">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="minInclusive" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="maxInclusive" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="minExclusive" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="maxExclusive" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="minLength" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="maxLength" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="totalDigits" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="fractionDigits" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="pattern" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ValueConstraint")
@XmlRootElement(name = "ValueConstraint")
public class ValueConstraint {
@XmlAttribute(name = "minInclusive")
protected String minInclusive;
@XmlAttribute(name = "maxInclusive")
protected String maxInclusive;
@XmlAttribute(name = "minExclusive")
protected String minExclusive;
@XmlAttribute(name = "maxExclusive")
protected String maxExclusive;
@XmlAttribute(name = "minLength")
protected String minLength;
@XmlAttribute(name = "maxLength")
protected String maxLength;
@XmlAttribute(name = "totalDigits")
protected String totalDigits;
@XmlAttribute(name = "fractionDigits")
protected String fractionDigits;
@XmlAttribute(name = "pattern")
protected String pattern;
/**
* Gets the value of the minInclusive property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMinInclusive() {
return minInclusive;
}
/**
* Sets the value of the minInclusive property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMinInclusive(String value) {
this.minInclusive = value;
}
/**
* Gets the value of the maxInclusive property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMaxInclusive() {
return maxInclusive;
}
/**
* Sets the value of the maxInclusive property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaxInclusive(String value) {
this.maxInclusive = value;
}
/**
* Gets the value of the minExclusive property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMinExclusive() {
return minExclusive;
}
/**
* Sets the value of the minExclusive property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMinExclusive(String value) {
this.minExclusive = value;
}
/**
* Gets the value of the maxExclusive property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMaxExclusive() {
return maxExclusive;
}
/**
* Sets the value of the maxExclusive property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaxExclusive(String value) {
this.maxExclusive = value;
}
/**
* Gets the value of the minLength property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMinLength() {
return minLength;
}
/**
* Sets the value of the minLength property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMinLength(String value) {
this.minLength = value;
}
/**
* Gets the value of the maxLength property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMaxLength() {
return maxLength;
}
/**
* Sets the value of the maxLength property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMaxLength(String value) {
this.maxLength = value;
}
/**
* Gets the value of the totalDigits property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTotalDigits() {
return totalDigits;
}
/**
* Sets the value of the totalDigits property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTotalDigits(String value) {
this.totalDigits = value;
}
/**
* Gets the value of the fractionDigits property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFractionDigits() {
return fractionDigits;
}
/**
* Sets the value of the fractionDigits property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFractionDigits(String value) {
this.fractionDigits = value;
}
/**
* Gets the value of the pattern property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPattern() {
return pattern;
}
/**
* Sets the value of the pattern property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPattern(String value) {
this.pattern = value;
}
}