Sha256: 20b31424f2551369db70c7822130fcb9e51e0956c2c29120b06d8db58815af4e

Contents?: true

Size: 489 Bytes

Versions: 1

Compression:

Stored size: 489 Bytes

Contents

# encoding: utf-8

module Axiom
  class Attribute

    # Represents a DateTime value in a relation tuple
    class DateTime < Object
      include Comparable

      # The attribute type
      #
      # @example
      #   type = Axiom::Attribute::DateTime.type  # => Axiom::Types::DateTime
      #
      # @return [Class<Types::DateTime>]
      #
      # @api public
      def self.type
        Types::DateTime
      end

    end # class DateTime
  end # class Attribute
end # module Axiom

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
axiom-0.1.1 lib/axiom/attribute/date_time.rb