Class: When::TM::OrdinalEra

Inherits:
Object show all
Includes:
Separation
Defined in:
lib/when_exe/tmreference.rb

Overview

順序時間参照系

see gml schema

Constant Summary

Constants included from Parts::Resource

Parts::Resource::LabelProperty

Instance Attribute Summary collapse

Attributes inherited from BasicTypes::Object

#label

Attributes included from Parts::Resource

#_pool, #child, #keys, #locale, #namespace

Instance Method Summary collapse

Methods included from Separation

#distance, #length

Methods included from Parts::Resource

#[], _decode, _encode, _extract_prefix, _instance, _instantiate, _parse, _path_with_prefix, _replace_tags, _setup_, _setup_info, _simplify_path, base_uri, #each, #enum_for, #hierarchy, #included?, #iri, #leaf?, #m17n, #map, #next, #parent, #prev, #registered?, root_dir

Methods included from Parts::Resource::Pool

#[], #[]=, #_pool, #_setup_, #pool_keys

Methods included from Parts::Resource::Synchronize

#synchronize

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object (private)

Note:

When::TM::OrdinalEra で定義されていないメソッドは 処理を @begin (type: When::TM::TemporalPosition) に委譲する

その他のメソッド



923
924
925
926
927
928
929
930
# File 'lib/when_exe/tmreference.rb', line 923

def method_missing(name, *args, &block)
  self.class.module_eval %Q{
    def #{name}(*args, &block)
      @begin.send("#{name}", *args, &block)
    end
  } unless When::Parts::MethodCash.escape(name)
  @begin.send(name, *args, &block)
end

Instance Attribute Details

#beginWhen::BasicTypes::DateTime (readonly)

この順序年代が始まる時点

Date at which the ordinal era began



860
861
862
# File 'lib/when_exe/tmreference.rb', line 860

def begin
  @begin
end

Instance Method Details

#^(other) ⇒ Object

When::TM::TemporalPosition ^ When::TM::OrdinalEra で呼ばれる



886
887
888
# File 'lib/when_exe/tmreference.rb', line 886

def ^(other)
  include?(other) ? self : nil
end

#endWhen::BasicTypes::DateTime

この順序年代が終わる時点

Date at which the ordinal era ended



868
869
870
# File 'lib/when_exe/tmreference.rb', line 868

def end
  @end || (@_pool['.->'] ? @_pool['.->'].begin : nil)
end

#groupWhen::TM::OrdinalEra?

この順序年代が属する上位順序年代 (relation - Composition)

Ordinal era that contains this ordinal era

Returns:



850
851
852
# File 'lib/when_exe/tmreference.rb', line 850

def group
  _pool['..'].kind_of?(String)? nil : _pool['..']
end

#include?(other) ⇒ Boolean

日時が属するか?

Parameters:

Returns:

  • (Boolean)
    true - 属する
    false - 属さない


880
881
882
# File 'lib/when_exe/tmreference.rb', line 880

def include?(other)
  self.begin <= other && other < self.end
end

#systemWhen::TM::OrdinalReferenceSystem?

この順序年代が属する順序時間参照系 (relation - Structure)

Ordinal reference system that contains this ordinal era



840
841
842
# File 'lib/when_exe/tmreference.rb', line 840

def system
  _pool['..'].kind_of?(String) ? _pool['..'] : nil
end