org.exolab.castor.builder.types
public class XSUnsignedLong extends XSPatternBase
Version: $Revision: 6317 $ $Date: 2006-04-25 15:08:23 -0600 (Tue, 25 Apr 2006) $
Field Summary | |
---|---|
BigInteger | maxExclusive |
BigInteger | maxInclusive |
BigInteger | minExclusive |
BigInteger | minInclusive |
Constructor Summary | |
---|---|
XSUnsignedLong() |
Method Summary | |
---|---|
String | createFromJavaObjectCode(String variableName)
Returns the String necessary to convert an Object to
an instance of this XSType. |
String | createToJavaObjectCode(String variableName)
Returns the String necessary to convert an instance of this XSType
to an Object. |
JType | getJType()
Returns the JType that this XSType represents |
BigInteger | getMaxExclusive()
Returns the maximum exclusive value that this XSLong can hold. |
BigInteger | getMaxInclusive()
Returns the maximum inclusive value that this XSLong can hold. |
BigInteger | getMinExclusive()
Returns the minimum exclusive value that this XSLong can hold. |
BigInteger | getMinInclusive()
Returns the minimum inclusive value that this XSLong can hold. |
boolean | hasMaximum() |
boolean | hasMinimum() |
String | newInstanceCode() |
void | setFacets(SimpleType simpleType)
Reads and sets the facets for XSTimeDuration
override the readFacet method of XSType |
void | setMaxExclusive(BigInteger max)
Sets the maximum exclusive value that this XSLong can hold. |
void | setMaxInclusive(BigInteger max)
Sets the maximum inclusive value that this XSLong can hold. |
void | setMinExclusive(BigInteger min)
Sets the minimum exclusive value that this XSLong can hold. |
void | setMinInclusive(BigInteger min)
Sets the minimum inclusive value that this XSLong can hold. |
void | validationCode(JSourceCode jsc, String fixedValue, String fieldValidatorInstanceName)
Creates the validation code for an instance of this XSType. |
Parameters: variableName the name of the Object
Returns: the String necessary to convert an Object to an instance of this XSType
Parameters: variableName the name of the instance variable
Returns: the String necessary to convert an instance of this XSType to an Object
Returns: the JType that this XSType represents
Returns: the maximum exclusive value that this XSLong can hold. If no maximum exclusive value has been set, Null will be returned
See Also: XSUnsignedLong
Returns: the maximum inclusive value that this XSLong can hold. If no maximum inclusive value has been set, Null will be returned
See Also: XSUnsignedLong
Returns: the minimum exclusive value that this XSLong can hold. If no minimum exclusive value has been set, Null will be returned
See Also: getMinInclusive
Returns: the minimum inclusive value that this XSLong can hold. If no minimum inclusive value has been set, Null will be returned
See Also: XSUnsignedLong
Parameters: simpleType the Simpletype containing the facets
See Also: XSType
Parameters: max the maximum exclusive value this XSLong can be
Parameters: max the maximum inclusive value this XSLong can be
Parameters: min the minimum exclusive value this XSLong can be
Parameters: min the minimum inclusive value this XSLong can be
Parameters: fixedValue a fixed value to use if any jsc the JSourceCode to fill in. fieldValidatorInstanceName the name of the FieldValidator that the configured TypeValidator should be added to.