Class: Io::Flow::V0::Models::MeasurementSystem
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::MeasurementSystem
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Instance Attribute Summary collapse
-
#value ⇒ Object
readonly
Returns the value of attribute value.
Class Method Summary collapse
- .ALL ⇒ Object
-
.apply(value) ⇒ Object
Returns the instance of MeasurementSystem for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of MeasurementSystem for this value, or nil if not found.
- .imperial ⇒ Object
- .metric ⇒ Object
Instance Method Summary collapse
-
#initialize(value) ⇒ MeasurementSystem
constructor
A new instance of MeasurementSystem.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ MeasurementSystem
Returns a new instance of MeasurementSystem.
6347 6348 6349 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6347 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
6345 6346 6347 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6345 def value @value end |
Class Method Details
.ALL ⇒ Object
6367 6368 6369 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6367 def MeasurementSystem.ALL @@all ||= [MeasurementSystem.imperial, MeasurementSystem.metric] end |
.apply(value) ⇒ Object
Returns the instance of MeasurementSystem for this value, creating a new instance for an unknown value
6352 6353 6354 6355 6356 6357 6358 6359 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6352 def MeasurementSystem.apply(value) if value.instance_of?(MeasurementSystem) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || MeasurementSystem.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of MeasurementSystem for this value, or nil if not found
6362 6363 6364 6365 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6362 def MeasurementSystem.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) MeasurementSystem.ALL.find { |v| v.value == value } end |
.imperial ⇒ Object
6371 6372 6373 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6371 def MeasurementSystem.imperial @@_imperial ||= MeasurementSystem.new('imperial') end |
.metric ⇒ Object
6375 6376 6377 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6375 def MeasurementSystem.metric @@_metric ||= MeasurementSystem.new('metric') end |
Instance Method Details
#to_hash ⇒ Object
6379 6380 6381 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 6379 def to_hash value end |