Class: SimpleEnumeration::TypeMethodsDefiner

Inherits:
Object
  • Object
show all
Defined in:
lib/simple_enumeration/type_methods_definer.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(enum_class:, collection:, type:) ⇒ TypeMethodsDefiner

Returns a new instance of TypeMethodsDefiner.



7
8
9
10
11
# File 'lib/simple_enumeration/type_methods_definer.rb', line 7

def initialize(enum_class:, collection:, type:)
  @enum_class = enum_class
  @collection = collection
  @type = type
end

Instance Attribute Details

#collectionObject (readonly)

Returns the value of attribute collection.



5
6
7
# File 'lib/simple_enumeration/type_methods_definer.rb', line 5

def collection
  @collection
end

#enum_classObject (readonly)

Returns the value of attribute enum_class.



5
6
7
# File 'lib/simple_enumeration/type_methods_definer.rb', line 5

def enum_class
  @enum_class
end

#typeObject (readonly)

Returns the value of attribute type.



5
6
7
# File 'lib/simple_enumeration/type_methods_definer.rb', line 5

def type
  @type
end

Class Method Details

.call(*params, **options, &block) ⇒ Object



13
14
15
# File 'lib/simple_enumeration/type_methods_definer.rb', line 13

def self.call(*params, **options, &block)
  new(*params, **options).call(&block)
end

Instance Method Details

#callObject



17
18
19
20
21
22
# File 'lib/simple_enumeration/type_methods_definer.rb', line 17

def call
  define_singleton_type_method
  define_singleton_type_value_method
  define_singleton_type_value_predicate_method
  define_instance_type_value_predicate_method
end