class RDF::Literal::UnsignedInt

unsignedInt is derived from unsignedLong by setting the value of maxInclusive to be 4294967295. The base type of unsignedInt is unsignedLong.

@see www.w3.org/TR/2004/REC-xmlschema-2-20041028/#unsignedInt

Constants

DATATYPE

Public Instance Methods

valid?() click to toggle source
Calls superclass method RDF::Literal::UnsignedLong#valid?
# File lib/rdf/xsd/integer.rb, line 160
def valid?
  super && @object >= 0 && @object <= 4294967295
end