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, _parse, _path_with_prefix, _replace_tags, _setup_, #each, #enum_for, #hierarchy, #included?, #iri, #leaf?, #m17n, #map, #next, #parent, #prev, #registered?

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) に委譲する

その他のメソッド



936
937
938
939
940
941
942
943
# File 'lib/when_exe/tmreference.rb', line 936

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



873
874
875
# File 'lib/when_exe/tmreference.rb', line 873

def begin
  @begin
end

Instance Method Details

#^(other) ⇒ Object

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



899
900
901
# File 'lib/when_exe/tmreference.rb', line 899

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

#endWhen::BasicTypes::DateTime

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

Date at which the ordinal era ended



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

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

#groupWhen::TM::OrdinalEra?

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

Ordinal era that contains this ordinal era

Returns:



863
864
865
# File 'lib/when_exe/tmreference.rb', line 863

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

#include?(other) ⇒ Boolean

日時が属するか?

Parameters:

Returns:

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


893
894
895
# File 'lib/when_exe/tmreference.rb', line 893

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

#systemWhen::TM::OrdinalReferenceSystem?

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

Ordinal reference system that contains this ordinal era



853
854
855
# File 'lib/when_exe/tmreference.rb', line 853

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