public interface XsValue
Modifier and Type | Method and Description |
---|---|
XsAnyURIVal |
anyURI(java.lang.String value)
Takes a uri as a string and constructs an
xs:anyURI value
|
XsAnyURISeqVal |
anyURISeq(java.lang.String... values)
Takes any number of uris as a string and
constructs an xs:anyURI sequence
|
XsAnyURISeqVal |
anyURISeq(XsAnyURIVal... values)
Takes any number of xs:anyURI values and
constructs an xs:anyURI sequence
|
XsBase64BinaryVal |
base64Binary(byte[] value)
Takes a binary value as a byte array and
constructs an xs:base64Binary value
|
XsBase64BinarySeqVal |
base64BinarySeq(byte[]... values)
Takes any number of binary values as a byte
array and constructs an xs:base64Binary sequence
|
XsBase64BinarySeqVal |
base64BinarySeq(XsBase64BinaryVal... values)
Takes any number of xs:base64Binary values and
constructs an xs:base64Binary sequence
|
XsBooleanSeqVal |
booleanSeq(boolean... values)
Takes any number of boolean primitives and
constructs an xs:boolean sequence
|
XsBooleanSeqVal |
booleanSeq(XsBooleanVal... values)
Takes any number of xs:boolean values and
constructs an xs:boolean sequence
|
XsBooleanVal |
booleanVal(boolean value)
Takes a boolean primitive and constructs an
xs:boolean value
|
XsByteSeqVal |
byteSeq(byte... values)
Takes any number of byte primitives and
constructs an xs:byte sequence
|
XsByteSeqVal |
byteSeq(XsByteVal... values)
Takes any number of xs:byte values and
constructs an xs:byte sequence
|
XsByteVal |
byteVal(byte value)
Takes a byte primitive and constructs an xs:byte
value
|
XsDateVal |
date(java.util.Calendar value)
Takes a date as a Calendar value and constructs
an xs:date value
|
XsDateVal |
date(java.lang.String value)
Takes a date in a string format based on ISO
8601 and constructs an xs:date value
|
XsDateVal |
date(javax.xml.datatype.XMLGregorianCalendar value)
Takes a date as an XMLGregorianCalendar value
and constructs an xs:date value
|
XsDateSeqVal |
dateSeq(java.util.Calendar... values)
Takes any number of dates as Calendar values and
constructs an xs:date sequence
|
XsDateSeqVal |
dateSeq(java.lang.String... values)
Takes any number of dates in a string format
based on ISO 8601 and constructs an xs:date sequence
|
XsDateSeqVal |
dateSeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of dates as
XMLGregorianCalendar values and constructs an xs:date
sequence
|
XsDateSeqVal |
dateSeq(XsDateVal... values)
Takes any number of xs:date values and
constructs an xs:date sequence
|
XsDateTimeVal |
dateTime(java.util.Calendar value)
Takes a timestamp as a Calendar value and
constructs an xs:dateTime value
|
XsDateTimeVal |
dateTime(java.util.Date value)
Takes a timestamp as a Date value and constructs
an xs:dateTime value
|
XsDateTimeVal |
dateTime(java.lang.String value)
Takes a timestamp in a string format based on
ISO 8601 and constructs an xs:dateTime value
|
XsDateTimeVal |
dateTime(javax.xml.datatype.XMLGregorianCalendar value)
Takes a timestamp as an XMLGregorianCalendar
value and constructs an xs:dateTime value
|
XsDateTimeSeqVal |
dateTimeSeq(java.util.Calendar... values)
Takes any number of timestamps as Calendar
values and constructs an xs:dateTime sequence
|
XsDateTimeSeqVal |
dateTimeSeq(java.util.Date... values)
Takes any number of timestamps as Date values
and constructs an xs:dateTime sequence
|
XsDateTimeSeqVal |
dateTimeSeq(java.lang.String... values)
Takes any number of timestamps in a string
format based on ISO 8601 and constructs an xs:dateTime
sequence
|
XsDateTimeSeqVal |
dateTimeSeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of timestamps as
XMLGregorianCalendar values and constructs an xs:dateTime
sequence
|
XsDateTimeSeqVal |
dateTimeSeq(XsDateTimeVal... values)
Takes any number of xs:dateTime values and
constructs an xs:dateTime sequence
|
XsDayTimeDurationVal |
dayTimeDuration(javax.xml.datatype.Duration value)
Takes a duration in increments of a day or less
as a Duration value and constructs an xs:dayTimeDuration
value
|
XsDayTimeDurationVal |
dayTimeDuration(java.lang.String value)
Takes a duration of increments of a day or less
in a string format based on ISO 8601 and constructs an
xs:dayTimeDuration value
|
XsDayTimeDurationSeqVal |
dayTimeDurationSeq(javax.xml.datatype.Duration... values)
Takes any number of duration in increments of a
day or less as a Duration and constructs an xs:dayTimeDuration
sequence
|
XsDayTimeDurationSeqVal |
dayTimeDurationSeq(java.lang.String... values)
Takes any number of duration in increments of a
day or less as a string and constructs an xs:dayTimeDuration
sequence
|
XsDayTimeDurationSeqVal |
dayTimeDurationSeq(XsDayTimeDurationVal... values)
Takes any number of xs:dayTimeDuration values
and constructs an xs:dayTimeDuration sequence
|
XsDecimalVal |
decimal(java.math.BigDecimal value)
Takes a real number as a BigDecimal value and
constructs an xs:decimal value
|
XsDecimalVal |
decimal(double value)
Takes a real number as a double primitive and
constructs an xs:decimal value
|
XsDecimalVal |
decimal(long value)
Takes a real number as a long primitive and
constructs an xs:decimal value
|
XsDecimalVal |
decimal(java.lang.String value)
Takes a real number as a decimal string and
constructs an xs:decimal value
|
XsDecimalSeqVal |
decimalSeq(java.math.BigDecimal... values)
Takes any number of real numbers as a BigDecimal
value and constructs an xs:decimal sequence
|
XsDecimalSeqVal |
decimalSeq(double... values)
Takes any number of real numbers as a double
primitive and constructs an xs:decimal sequence
|
XsDecimalSeqVal |
decimalSeq(long... values)
Takes any number of real numbers as a long
primitive and constructs an xs:decimal sequence
|
XsDecimalSeqVal |
decimalSeq(java.lang.String... values)
Takes any number of real numbers as a string and
constructs an xs:decimal sequence
|
XsDecimalSeqVal |
decimalSeq(XsDecimalVal... values)
Takes any number of xs:decimal values and
constructs an xs:decimal sequence
|
XsDoubleSeqVal |
doubleSeq(double... values)
Takes any number of double primitives and
constructs an xs:double sequence
|
XsDoubleSeqVal |
doubleSeq(XsDoubleVal... values)
Takes any number of xs:double values and
constructs an xs:double sequence
|
XsDoubleVal |
doubleVal(double value)
Takes a double primitive and constructs an
xs:double value
|
XsFloatSeqVal |
floatSeq(float... values)
Takes any number of float primitives and
constructs an xs:float sequence
|
XsFloatSeqVal |
floatSeq(XsFloatVal... values)
Takes any number of xs:float values and
constructs an xs:float sequence
|
XsFloatVal |
floatVal(float value)
Takes a float primitive and constructs an
xs:float value
|
XsGDayVal |
gDay(java.lang.String value)
Takes a day as a string and constructs an
xs:gDay value
|
XsGDayVal |
gDay(javax.xml.datatype.XMLGregorianCalendar value)
Takes a day as a XMLGregorianCalendar value and
constructs an xs:gDay value
|
XsGDaySeqVal |
gDaySeq(java.lang.String... values)
Takes any number of days as a string and
constructs an xs:gDay sequence
|
XsGDaySeqVal |
gDaySeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of days as a
XMLGregorianCalendar value and constructs an xs:gDay sequence
|
XsGDaySeqVal |
gDaySeq(XsGDayVal... values)
Takes any number of xs:gDay values and
constructs an xs:gDay sequence
|
XsGMonthVal |
gMonth(java.lang.String value)
Takes a month as a string and constructs an
xs:gMonth value
|
XsGMonthVal |
gMonth(javax.xml.datatype.XMLGregorianCalendar value)
Takes a month as a XMLGregorianCalendar value
and constructs an xs:gMonth value
|
XsGMonthDayVal |
gMonthDay(java.lang.String value)
Takes a day and month as a string and constructs
an xs:gMonthDay value
|
XsGMonthDayVal |
gMonthDay(javax.xml.datatype.XMLGregorianCalendar value)
Takes a day and month as a XMLGregorianCalendar
value and constructs an xs:gMonthDay value
|
XsGMonthDaySeqVal |
gMonthDaySeq(java.lang.String... values)
Takes any number of days and months as a string
and constructs an xs:gMonthDay sequence
|
XsGMonthDaySeqVal |
gMonthDaySeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of days and months as a
XMLGregorianCalendar value and constructs an xs:gMonthDay
sequence
|
XsGMonthDaySeqVal |
gMonthDaySeq(XsGMonthDayVal... values)
Takes any number of xs:gMonthDay values and
constructs an xs:gMonthDay sequence
|
XsGMonthSeqVal |
gMonthSeq(java.lang.String... values)
Takes any number of months as a string and
constructs an xs:gMonth sequence
|
XsGMonthSeqVal |
gMonthSeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of months as a
XMLGregorianCalendar value and constructs an xs:gMonth
sequence
|
XsGMonthSeqVal |
gMonthSeq(XsGMonthVal... values)
Takes any number of xs:gMonth values and
constructs an xs:gMonth sequence
|
XsGYearVal |
gYear(java.lang.String value)
Takes a year as a string and constructs an
xs:gYear value
|
XsGYearVal |
gYear(javax.xml.datatype.XMLGregorianCalendar value)
Takes a year as a XMLGregorianCalendar value and
constructs an xs:gYear value
|
XsGYearMonthVal |
gYearMonth(java.lang.String value)
Takes a month and year as a string and
constructs an xs:gYearMonth value
|
XsGYearMonthVal |
gYearMonth(javax.xml.datatype.XMLGregorianCalendar value)
Takes a month and year as a XMLGregorianCalendar
value and constructs an xs:gYearMonth value
|
XsGYearMonthSeqVal |
gYearMonthSeq(java.lang.String... values)
Takes any number of months and years as a string
and constructs an xs:gYearMonth sequence
|
XsGYearMonthSeqVal |
gYearMonthSeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of months and years as a
XMLGregorianCalendar value and constructs an xs:gYearMonth
sequence
|
XsGYearMonthSeqVal |
gYearMonthSeq(XsGYearMonthVal... values)
Takes any number of xs:gYearMonth values and
constructs an xs:gYearMonth sequence
|
XsGYearSeqVal |
gYearSeq(java.lang.String... values)
Takes any number of years as a string and
constructs an xs:gYear sequence
|
XsGYearSeqVal |
gYearSeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of years as a
XMLGregorianCalendar value and constructs an xs:gYear
sequence
|
XsGYearSeqVal |
gYearSeq(XsGYearVal... values)
Takes any number of xs:gYear values and
constructs an xs:gYear sequence
|
XsHexBinaryVal |
hexBinary(byte[] value)
Takes a binary value as a byte array and
constructs an xs:hexBinary value
|
XsHexBinarySeqVal |
hexBinarySeq(byte[]... values)
Takes any number of binary values as a byte
array and constructs an xs:hexBinary sequence
|
XsHexBinarySeqVal |
hexBinarySeq(XsHexBinaryVal... values)
Takes any number of xs:hexBinary values and
constructs an xs:hexBinary sequence
|
XsIntegerVal |
integer(java.math.BigInteger value)
Takes an integer number as a BigInteger value
and constructs an xs:integer value
|
XsIntegerVal |
integer(long value)
Takes an integer number as a long primitive and
constructs an xs:integer value
|
XsIntegerVal |
integer(java.lang.String value)
Takes an integer number as a string and
constructs an xs:integer value
|
XsIntegerSeqVal |
integerSeq(java.math.BigInteger... values)
Takes any number of integer numbers as a
BigInteger value and constructs an xs:integer sequence
|
XsIntegerSeqVal |
integerSeq(long... values)
Takes any number of integer numbers as a long
primitive and constructs an xs:integer sequence
|
XsIntegerSeqVal |
integerSeq(java.lang.String... values)
Takes any number of integer numbers as a string
and constructs an xs:integer sequence
|
XsIntegerSeqVal |
integerSeq(XsIntegerVal... values)
Takes any number of xs:integer values and
constructs an xs:integer sequence
|
XsIntSeqVal |
intSeq(int... values)
Takes any number of int primitives and
constructs an xs:int sequence
|
XsIntSeqVal |
intSeq(XsIntVal... values)
Takes any number of xs:int values and constructs
an xs:int sequence
|
XsIntVal |
intVal(int value)
Takes an int primitive and constructs an xs:int
value
|
XsLongSeqVal |
longSeq(long... values)
Takes any number of long primitives and
constructs an xs:long sequence
|
XsLongSeqVal |
longSeq(XsLongVal... values)
Takes any number of xs:long values and
constructs an xs:long sequence
|
XsLongVal |
longVal(long value)
Takes a long primitive and constructs an xs:long
value
|
XsQNameVal |
QName(javax.xml.namespace.QName value)
Constructs a qualified name as an xs:QName
schema value
|
XsQNameVal |
QName(java.lang.String localName)
Constructs a qualified name as a xs:QName schema
value
|
XsQNameVal |
QName(java.lang.String namespace,
java.lang.String localName)
Constructs a qualified name as a xs:QName schema
value
|
XsQNameSeqVal |
QNameSeq(javax.xml.namespace.QName... values)
Takes any number of QName values and constructs
an xs:QName sequence
|
XsQNameSeqVal |
QNameSeq(java.lang.String... localNames)
Takes any number of local names as a string and
constructs an xs:QName sequence
|
XsQNameSeqVal |
QNameSeq(java.lang.String namespace,
java.lang.String... localNames)
Takes one namespace, one prefix, and any number
of local names as a string and constructs an xs:QName
sequence
|
XsQNameSeqVal |
QNameSeq(XsQNameVal... values)
Takes any number of xs:QName values and
constructs an xs:QName sequence
|
XsShortSeqVal |
shortSeq(short... values)
Takes any number of short primitives and
constructs an xs:short sequence
|
XsShortSeqVal |
shortSeq(XsShortVal... values)
Takes any number of xs:short values and
constructs an xs:short sequence
|
XsShortVal |
shortVal(short value)
Takes a short primitive and constructs an
xs:short value
|
XsStringVal |
string(java.lang.String value)
Takes a String literal and constructs an
xs:string value
|
XsStringSeqVal |
stringSeq(java.lang.String... values)
Takes any number of String literals and
constructs an xs:string sequence
|
XsStringSeqVal |
stringSeq(XsStringVal... values)
Takes any number of xs:string values and
constructs an xs:string sequence
|
XsTimeVal |
time(java.util.Calendar value)
Takes a time of day as a Calendar value and
constructs an xs:time value
|
XsTimeVal |
time(java.lang.String value)
Takes a time of day in a string format based on
ISO 8601 and constructs an xs:time value
|
XsTimeVal |
time(javax.xml.datatype.XMLGregorianCalendar value)
Takes a time of day as a XMLGregorianCalendar
value and constructs an xs:time value
|
XsTimeSeqVal |
timeSeq(java.util.Calendar... values)
Takes any number of times of day as Calendar
values and constructs an xs:time sequence
|
XsTimeSeqVal |
timeSeq(java.lang.String... values)
Takes any number of times of day in a string
format based on ISO 8601 and constructs an xs:time sequence
|
XsTimeSeqVal |
timeSeq(javax.xml.datatype.XMLGregorianCalendar... values)
Takes any number of times of day as
XMLGregorianCalendar values and constructs an xs:time
sequence
|
XsTimeSeqVal |
timeSeq(XsTimeVal... values)
Takes any number of xs:time values and
constructs an xs:time sequence
|
XsUnsignedByteVal |
unsignedByte(byte value)
Takes an unsigned byte primitive and constructs
an xs:unsignedByte value
|
XsUnsignedByteSeqVal |
unsignedByteSeq(byte... values)
Takes any number of unsigned byte primitives and
constructs an xs:unsignedByte sequence
|
XsUnsignedByteSeqVal |
unsignedByteSeq(XsUnsignedByteVal... values)
Takes any number of xs:unsignedByte values and
constructs an xs:unsignedByte sequence
|
XsUnsignedIntVal |
unsignedInt(int value)
Takes an unsigned int primitive and constructs
an xs:unsignedInt value
|
XsUnsignedIntSeqVal |
unsignedIntSeq(int... values)
Takes any number of unsigned int primitives and
constructs an xs:unsignedInt sequence
|
XsUnsignedIntSeqVal |
unsignedIntSeq(XsUnsignedIntVal... values)
Takes any number of xs:unsignedInt values and
constructs an xs:unsignedInt sequence
|
XsUnsignedLongVal |
unsignedLong(long value)
Takes an unsigned long primitive and constructs
an xs:unsignedLong value
|
XsUnsignedLongSeqVal |
unsignedLongSeq(long... values)
Takes any number of unsigned long primitives and
constructs an xs:unsignedLong sequence
|
XsUnsignedLongSeqVal |
unsignedLongSeq(XsUnsignedLongVal... values)
Takes any number of xs:unsignedLong values and
constructs an xs:unsignedLong sequence
|
XsUnsignedShortVal |
unsignedShort(short value)
Takes an unsigned short primitive and constructs
an xs:unsignedShort value
|
XsUnsignedShortSeqVal |
unsignedShortSeq(short... values)
Takes any number of unsigned short primitives
and constructs an xs:unsignedShort sequence
|
XsUnsignedShortSeqVal |
unsignedShortSeq(XsUnsignedShortVal... values)
Takes any number of xs:unsignedShort values and
constructs an xs:unsignedShort sequence
|
XsUntypedAtomicVal |
untypedAtomic(java.lang.String value)
Takes a untyped atomic value as a string and
constructs an xs:untypedAtomic value
|
XsUntypedAtomicSeqVal |
untypedAtomicSeq(java.lang.String... values)
Takes any number of untyped atomic values as a
string and constructs an xs:untypedAtomic sequence
|
XsUntypedAtomicSeqVal |
untypedAtomicSeq(XsUntypedAtomicVal... values)
Takes any number of xs:untypedAtomic values and
constructs an xs:untypedAtomic sequence
|
XsYearMonthDurationVal |
yearMonthDuration(javax.xml.datatype.Duration value)
Takes a duration in increments of a month or
more day or less as a Duration value and constructs an
xs:yearMonthDuration value
|
XsYearMonthDurationVal |
yearMonthDuration(java.lang.String value)
Takes a duration of increments of a month or
more in a string format based on ISO 8601 and constructs an
xs:yearMonthDuration value
|
XsYearMonthDurationSeqVal |
yearMonthDurationSeq(javax.xml.datatype.Duration... values)
Takes any number of duration in increments of a
month or more as a Duration and constructs an xs:yearMonthDuration
sequence
|
XsYearMonthDurationSeqVal |
yearMonthDurationSeq(java.lang.String... values)
Takes any number of duration in increments of a
month or more as a string and constructs an xs:yearMonthDuration
sequence
|
XsYearMonthDurationSeqVal |
yearMonthDurationSeq(XsYearMonthDurationVal... values)
Takes any number of xs:yearMonthDuration values
and constructs an xs:yearMonthDuration sequence
|
XsAnyURIVal anyURI(java.lang.String value)
value
- the uri as a stringXsAnyURISeqVal anyURISeq(java.lang.String... values)
values
- the uris as stringsXsAnyURISeqVal anyURISeq(XsAnyURIVal... values)
values
- values with an xs:anyURI data typeXsBase64BinaryVal base64Binary(byte[] value)
value
- the binary as a byte arrayXsBase64BinarySeqVal base64BinarySeq(byte[]... values)
values
- the binary values as byte arraysXsBase64BinarySeqVal base64BinarySeq(XsBase64BinaryVal... values)
values
- values with an xs:base64Binary data
typeXsBooleanVal booleanVal(boolean value)
value
- the boolean primitiveXsBooleanSeqVal booleanSeq(boolean... values)
values
- the boolean primitivesXsBooleanSeqVal booleanSeq(XsBooleanVal... values)
values
- values with an xs:boolean data typeXsByteVal byteVal(byte value)
value
- the byte primitiveXsByteSeqVal byteSeq(byte... values)
values
- the byte primitivesXsByteSeqVal byteSeq(XsByteVal... values)
values
- values with an xs:byte data typeXsDateVal date(java.lang.String value)
value
- the date as a stringXsDateVal date(java.util.Calendar value)
value
- the date as a Calendar objectXsDateVal date(javax.xml.datatype.XMLGregorianCalendar value)
value
- the date as an XMLGregorianCalendar
objectXsDateSeqVal dateSeq(java.lang.String... values)
values
- the dates as stringsXsDateSeqVal dateSeq(java.util.Calendar... values)
values
- the dates as Calendar objectsXsDateSeqVal dateSeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the dates as XMLGregorianCalendar
objectsXsDateSeqVal dateSeq(XsDateVal... values)
values
- values with an xs:date data typeXsDateTimeVal dateTime(java.lang.String value)
value
- the timestamp as a stringXsDateTimeVal dateTime(java.util.Date value)
value
- the timestamp as a Date objectXsDateTimeVal dateTime(java.util.Calendar value)
value
- the timestamp as a Calendar objectXsDateTimeVal dateTime(javax.xml.datatype.XMLGregorianCalendar value)
value
- the timestamp as an XMLGregorianCalendar
objectXsDateTimeSeqVal dateTimeSeq(java.lang.String... values)
values
- the timestamps as stringsXsDateTimeSeqVal dateTimeSeq(java.util.Date... values)
values
- the timestamps as Date objectsXsDateTimeSeqVal dateTimeSeq(java.util.Calendar... values)
values
- the timestamps as Calendar objectsXsDateTimeSeqVal dateTimeSeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the timestamps as XMLGregorianCalendar
objectsXsDateTimeSeqVal dateTimeSeq(XsDateTimeVal... values)
values
- values with an xs:dateTime data typeXsDayTimeDurationVal dayTimeDuration(java.lang.String value)
value
- the duration as a stringXsDayTimeDurationVal dayTimeDuration(javax.xml.datatype.Duration value)
value
- the duration as a Duration objectXsDayTimeDurationSeqVal dayTimeDurationSeq(java.lang.String... values)
values
- the durations as stringsXsDayTimeDurationSeqVal dayTimeDurationSeq(javax.xml.datatype.Duration... values)
values
- the durations as Duration objectsXsDayTimeDurationSeqVal dayTimeDurationSeq(XsDayTimeDurationVal... values)
values
- values with an xs:dayTimeDuration data
typeXsDecimalVal decimal(java.lang.String value)
value
- the number as a stringXsDecimalVal decimal(long value)
value
- the number as a long primitiveXsDecimalVal decimal(double value)
value
- the number as a double primitiveXsDecimalVal decimal(java.math.BigDecimal value)
value
- the number as a BigDecimal objectXsDecimalSeqVal decimalSeq(java.lang.String... values)
values
- the real numbers as stringsXsDecimalSeqVal decimalSeq(long... values)
values
- the real numbers as long primitivesXsDecimalSeqVal decimalSeq(double... values)
values
- the real numbers as double
primitivesXsDecimalSeqVal decimalSeq(java.math.BigDecimal... values)
values
- the real numbers as BigDecimal
objectsXsDecimalSeqVal decimalSeq(XsDecimalVal... values)
values
- values with an xs:decimal data typeXsDoubleVal doubleVal(double value)
value
- the double primitiveXsDoubleSeqVal doubleSeq(double... values)
values
- the double primitivesXsDoubleSeqVal doubleSeq(XsDoubleVal... values)
values
- values with an xs:double data typeXsFloatVal floatVal(float value)
value
- the float primitiveXsFloatSeqVal floatSeq(float... values)
values
- the float primitivesXsFloatSeqVal floatSeq(XsFloatVal... values)
values
- values with an xs:float data typeXsGDayVal gDay(java.lang.String value)
value
- the day of the month as a stringXsGDayVal gDay(javax.xml.datatype.XMLGregorianCalendar value)
value
- the day of the month as a
XMLGregorianCalendar objectXsGDaySeqVal gDaySeq(java.lang.String... values)
values
- the days as stringsXsGDaySeqVal gDaySeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the days as XMLGregorianCalendar
objectsXsGDaySeqVal gDaySeq(XsGDayVal... values)
values
- values with an xs:gDay data typeXsGMonthVal gMonth(java.lang.String value)
value
- the month of the year as a stringXsGMonthVal gMonth(javax.xml.datatype.XMLGregorianCalendar value)
value
- the day of the month as a
XMLGregorianCalendar objectXsGMonthSeqVal gMonthSeq(java.lang.String... values)
values
- the months as stringsXsGMonthSeqVal gMonthSeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the months as XMLGregorianCalendar
objectsXsGMonthSeqVal gMonthSeq(XsGMonthVal... values)
values
- values with an xs:gMonth data typeXsGMonthDayVal gMonthDay(java.lang.String value)
value
- the day and month as a stringXsGMonthDayVal gMonthDay(javax.xml.datatype.XMLGregorianCalendar value)
value
- the day and month as a
XMLGregorianCalendar objectXsGMonthDaySeqVal gMonthDaySeq(java.lang.String... values)
values
- the days and months as stringsXsGMonthDaySeqVal gMonthDaySeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the days and months as
XMLGregorianCalendar objectsXsGMonthDaySeqVal gMonthDaySeq(XsGMonthDayVal... values)
values
- values with an xs:gMonthDay data
typeXsGYearVal gYear(java.lang.String value)
value
- the year as a stringXsGYearVal gYear(javax.xml.datatype.XMLGregorianCalendar value)
value
- the year as a XMLGregorianCalendar
objectXsGYearSeqVal gYearSeq(java.lang.String... values)
values
- the years as stringsXsGYearSeqVal gYearSeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the years as XMLGregorianCalendar
objectsXsGYearSeqVal gYearSeq(XsGYearVal... values)
values
- values with an xs:gYear data typeXsGYearMonthVal gYearMonth(java.lang.String value)
value
- the month and year as a stringXsGYearMonthVal gYearMonth(javax.xml.datatype.XMLGregorianCalendar value)
value
- the month and year as a
XMLGregorianCalendar objectXsGYearMonthSeqVal gYearMonthSeq(java.lang.String... values)
values
- the months and years as stringsXsGYearMonthSeqVal gYearMonthSeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the months and years as
XMLGregorianCalendar objectsXsGYearMonthSeqVal gYearMonthSeq(XsGYearMonthVal... values)
values
- values with an xs:gYearMonth data
typeXsHexBinaryVal hexBinary(byte[] value)
value
- the binary as a byte arrayXsHexBinarySeqVal hexBinarySeq(byte[]... values)
values
- the binary values as byte arraysXsHexBinarySeqVal hexBinarySeq(XsHexBinaryVal... values)
values
- values with an xs:hexBinary data
typeXsIntVal intVal(int value)
value
- the int primitiveXsIntSeqVal intSeq(int... values)
values
- the int primitivesXsIntSeqVal intSeq(XsIntVal... values)
values
- values with an xs:int data typeXsIntegerVal integer(java.lang.String value)
value
- the number as a stringXsIntegerVal integer(long value)
value
- the number as a long primitiveXsIntegerVal integer(java.math.BigInteger value)
value
- the number as a BigInteger objectXsIntegerSeqVal integerSeq(java.lang.String... values)
values
- the integer numbers as stringsXsIntegerSeqVal integerSeq(long... values)
values
- the integer numbers as long
primitivesXsIntegerSeqVal integerSeq(java.math.BigInteger... values)
values
- the integer numbers as BigInteger
objectsXsIntegerSeqVal integerSeq(XsIntegerVal... values)
values
- values with an xs:integer data typeXsLongVal longVal(long value)
value
- the long primitiveXsLongSeqVal longSeq(long... values)
values
- the long primitivesXsLongSeqVal longSeq(XsLongVal... values)
values
- values with an xs:long data typeXsShortVal shortVal(short value)
value
- the short primitiveXsShortSeqVal shortSeq(short... values)
values
- the short primitivesXsShortSeqVal shortSeq(XsShortVal... values)
values
- values with an xs:short data typeXsStringVal string(java.lang.String value)
value
- the String literalXsStringSeqVal stringSeq(java.lang.String... values)
values
- the String literalsXsStringSeqVal stringSeq(XsStringVal... values)
values
- the xs:string valuesXsTimeVal time(java.lang.String value)
value
- the time of day as a stringXsTimeVal time(java.util.Calendar value)
value
- the time of day as a Calendar objectXsTimeVal time(javax.xml.datatype.XMLGregorianCalendar value)
value
- the time of day as a XMLGregorianCalendar
objectXsTimeSeqVal timeSeq(java.lang.String... values)
values
- the times of day as stringsXsTimeSeqVal timeSeq(java.util.Calendar... values)
values
- the times of day as Calendar objectsXsTimeSeqVal timeSeq(javax.xml.datatype.XMLGregorianCalendar... values)
values
- the times of day as XMLGregorianCalendar
objectsXsTimeSeqVal timeSeq(XsTimeVal... values)
values
- values with an xs:time data typeXsUnsignedByteVal unsignedByte(byte value)
value
- the unsigned byte primitiveXsUnsignedByteSeqVal unsignedByteSeq(byte... values)
values
- the unsigned byte primitivesXsUnsignedByteSeqVal unsignedByteSeq(XsUnsignedByteVal... values)
values
- values with an xs:unsignedByte data
typeXsUnsignedIntVal unsignedInt(int value)
value
- the unsigned int primitiveXsUnsignedIntSeqVal unsignedIntSeq(int... values)
values
- the unsigned int primitivesXsUnsignedIntSeqVal unsignedIntSeq(XsUnsignedIntVal... values)
values
- values with an xs:unsignedInt data
typeXsUnsignedLongVal unsignedLong(long value)
value
- the unsigned long primitiveXsUnsignedLongSeqVal unsignedLongSeq(long... values)
values
- the unsigned long primitivesXsUnsignedLongSeqVal unsignedLongSeq(XsUnsignedLongVal... values)
values
- values with an xs:unsignedLong data
typeXsUnsignedShortVal unsignedShort(short value)
value
- the unsigned short primitiveXsUnsignedShortSeqVal unsignedShortSeq(short... values)
values
- the unsigned short primitivesXsUnsignedShortSeqVal unsignedShortSeq(XsUnsignedShortVal... values)
values
- values with an xs:unsignedShort data
typeXsUntypedAtomicVal untypedAtomic(java.lang.String value)
value
- the untyped atomic value as a stringXsUntypedAtomicSeqVal untypedAtomicSeq(java.lang.String... values)
values
- the untyped atomic values as stringsXsUntypedAtomicSeqVal untypedAtomicSeq(XsUntypedAtomicVal... values)
values
- values with an xs:untypedAtomic data
typeXsYearMonthDurationVal yearMonthDuration(java.lang.String value)
value
- the duration as a stringXsYearMonthDurationVal yearMonthDuration(javax.xml.datatype.Duration value)
value
- the duration as a Duration objectXsYearMonthDurationSeqVal yearMonthDurationSeq(java.lang.String... values)
values
- the durations as stringsXsYearMonthDurationSeqVal yearMonthDurationSeq(javax.xml.datatype.Duration... values)
values
- the durations as Duration objectsXsYearMonthDurationSeqVal yearMonthDurationSeq(XsYearMonthDurationVal... values)
values
- values with an xs:yearMonthDuration data
typeXsQNameVal QName(java.lang.String localName)
localName
- the local name for a qualified
nameXsQNameVal QName(java.lang.String namespace, java.lang.String localName)
namespace
- the namespace for the qualified
namelocalName
- the local name for a qualified
nameXsQNameVal QName(javax.xml.namespace.QName value)
value
- the qualified name as a QName objectXsQNameSeqVal QNameSeq(java.lang.String... localNames)
localNames
- the local names as stringsXsQNameSeqVal QNameSeq(java.lang.String namespace, java.lang.String... localNames)
namespace
- the namespace for the qualified
nameslocalNames
- the local names as stringsXsQNameSeqVal QNameSeq(javax.xml.namespace.QName... values)
values
- the qualified names as QName objectsXsQNameSeqVal QNameSeq(XsQNameVal... values)
values
- values with an xs:QName data typeCopyright © 2024 MarkLogic Corporation. All Rights Reserved.