class RDF::Literal::Month
gMonth is a gregorian month that recurs every year. The value space of gMonth is the space of a set of calendar months as defined in ยง 3 of [ISO 8601]. Specifically, it is a set of one-month long, yearly periodic instances.
Constants
- DATATYPE
- FORMAT
- GRAMMAR
Public Class Methods
new(value, datatype: nil, lexical: nil, **options)
click to toggle source
Calls superclass method
# File lib/rdf/xsd/date.rb, line 100 def initialize(value, datatype: nil, lexical: nil, **options) @string = lexical || value.to_s object = GRAMMAR.match(value.to_s) && ::Date.parse("0000-#{$1}-01#{$2}") super(object, lexical: @string) end