Class: When::V::TimezoneProperty
- Inherits:
-
Event
- Object
- BasicTypes::Object
- Root
- Event
- When::V::TimezoneProperty
- Defined in:
- lib/when_exe/icalendar.rb
Overview
Timezone Property の共通抽象クラス
Constant Summary collapse
- Properties =
[['dtstart', 'tzoffsetto', 'tzoffsetfrom'], [], [], [], ['rrule', 'comment', 'rdate', 'tzname']]
- Classes =
[]
Constants inherited from Event
Event::DayOfWeek, Event::RegisteredNoteMethods, Event::RegisteredNotes
Constants inherited from Root
Root::AwareProperties, Root::DefaultOptional, Root::DefaultUnique
Constants included from Parts::Resource
Parts::Resource::ConstList, Parts::Resource::ConstTypes, Parts::Resource::IRIDecode, Parts::Resource::IRIDecodeTable, Parts::Resource::IRIEncode, Parts::Resource::IRIEncodeTable, Parts::Resource::IRIHeader, Parts::Resource::LabelProperty
Constants included from Namespace
Namespace::DC, Namespace::DCQ, Namespace::DCT, Namespace::FOAF, Namespace::OWL, Namespace::RDF, Namespace::RDFC, Namespace::RDFS, Namespace::RSS, Namespace::XSD
Instance Attribute Summary collapse
-
#tzname ⇒ Array<String(サブクラスであるWhen::BasicTypes::M17nでもよい)>
readonly
TZNAME Property.
-
#tzoffsetfrom ⇒ When::TM::Clock
readonly
TZOFFSETFROM Property.
-
#tzoffsetto ⇒ When::TM::Clock
readonly
TZOFFSETTO Property.
Attributes inherited from Event
#dtend, #dtstart, #duration, #exdate, #first_occurrence, #google_api_props, #rdate, #rrule, #summary
Attributes inherited from Root
Attributes included from Parts::Resource
#_pool, #child, #keys, #locale, #namespace
Instance Method Summary collapse
-
#label ⇒ String
ユニーク識別名 - DTSTART Property をユニーク識別名とする.
Methods inherited from Event
#_enumerator_list, _setup_, _setup_info, default_until, #dtstop, #each, gcal2ical, iterator_for_ISO8601, #to_gcalevent
Methods included from Parts::Resource::Pool
#[], #[]=, #_pool, #_setup_, #pool_keys
Methods included from Parts::Resource::Synchronize
Methods inherited from Root
Methods included from Parts::Resource
#[], #^, _abbreviation_to_iri, _decode, _encode, _extract_prefix, _instance, _instantiate, _parse, _path_with_prefix, _replace_tags, _setup_, _setup_info, _simplify_path, base_uri, #each, #enum_for, #hierarchy, #include?, #included?, #iri, #leaf?, #m17n, #map, #parent, #registered?, root_dir
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class When::Parts::Resource
Instance Attribute Details
#tzname ⇒ Array<String(サブクラスであるWhen::BasicTypes::M17nでもよい)> (readonly)
RFC 5545 は複数個の指定を許しているため、Array としている。
TZNAME Property
948 949 950 |
# File 'lib/when_exe/icalendar.rb', line 948 def tzname @tzname end |
#tzoffsetfrom ⇒ When::TM::Clock (readonly)
イベント時刻前の時間帯 保持する When::TM::Clock の tz_prop は、本オブジェクトを参照している。
TZOFFSETFROM Property
958 959 960 |
# File 'lib/when_exe/icalendar.rb', line 958 def tzoffsetfrom @tzoffsetfrom end |
#tzoffsetto ⇒ When::TM::Clock (readonly)
イベント時刻後の時間帯 保持する When::TM::Clock の tz_prop は、本オブジェクトを参照している。
TZOFFSETTO Property
968 969 970 |
# File 'lib/when_exe/icalendar.rb', line 968 def tzoffsetto @tzoffsetto end |
Instance Method Details
#label ⇒ String
ユニーク識別名 - DTSTART Property をユニーク識別名とする
972 973 974 |
# File 'lib/when_exe/icalendar.rb', line 972 def label @label ||= @property['dtstart'].attribute['.'] end |