Module: MicrosoftKiotaAbstractions::ParseNode
- Defined in:
- lib/microsoft_kiota_abstractions/serialization/parse_node.rb
Instance Method Summary collapse
- #assign_field_values(_item) ⇒ Object
- #get_boolean_value ⇒ Object
- #get_child_node(_name) ⇒ Object
- #get_collection_of_object_values(_factory) ⇒ Object
- #get_collection_of_primitive_values ⇒ Object
- #get_date_time_value ⇒ Object
- #get_date_value ⇒ Object
- #get_duration_value ⇒ Object
- #get_enum_value(_type) ⇒ Object
- #get_guid_value ⇒ Object
- #get_number_value ⇒ Object
- #get_object_value(_factory) ⇒ Object
- #get_string_value ⇒ Object
- #get_time_value ⇒ Object
Instance Method Details
#assign_field_values(_item) ⇒ Object
49 50 51 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 49 def assign_field_values(_item) raise NotImplementedError end |
#get_boolean_value ⇒ Object
9 10 11 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 9 def get_boolean_value raise NotImplementedError end |
#get_child_node(_name) ⇒ Object
57 58 59 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 57 def get_child_node(_name) raise NotImplementedError end |
#get_collection_of_object_values(_factory) ⇒ Object
41 42 43 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 41 def get_collection_of_object_values(_factory) raise NotImplementedError end |
#get_collection_of_primitive_values ⇒ Object
37 38 39 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 37 def get_collection_of_primitive_values raise NotImplementedError end |
#get_date_time_value ⇒ Object
29 30 31 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 29 def get_date_time_value raise NotImplementedError end |
#get_date_value ⇒ Object
21 22 23 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 21 def get_date_value raise NotImplementedError end |
#get_duration_value ⇒ Object
33 34 35 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 33 def get_duration_value raise NotImplementedError end |
#get_enum_value(_type) ⇒ Object
53 54 55 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 53 def get_enum_value(_type) raise NotImplementedError end |
#get_guid_value ⇒ Object
17 18 19 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 17 def get_guid_value raise NotImplementedError end |
#get_number_value ⇒ Object
13 14 15 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 13 def get_number_value raise NotImplementedError end |
#get_object_value(_factory) ⇒ Object
45 46 47 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 45 def get_object_value(_factory) raise NotImplementedError end |
#get_string_value ⇒ Object
5 6 7 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 5 def get_string_value raise NotImplementedError end |
#get_time_value ⇒ Object
25 26 27 |
# File 'lib/microsoft_kiota_abstractions/serialization/parse_node.rb', line 25 def get_time_value raise NotImplementedError end |