Class: Io::Flow::V0::Models::CurrencySymbolFormat
- Inherits:
-
Object
- Object
- Io::Flow::V0::Models::CurrencySymbolFormat
- 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 CurrencySymbolFormat for this value, creating a new instance for an unknown value.
-
.from_string(value) ⇒ Object
Returns the instance of CurrencySymbolFormat for this value, or nil if not found.
-
.narrow ⇒ Object
The narrow format refers to the Unicode Common Locale Data Repository (CLDR) ‘narrow’ symbols (e.g. ‘$’ for CAD and AUD).
-
.primary ⇒ Object
The primary format refers to the Unicode Common Locale Data Repository (CLDR) ‘primary’ symbols (e.g. ‘CA$’ for CAD and ‘A$’ for AUD).
Instance Method Summary collapse
-
#initialize(value) ⇒ CurrencySymbolFormat
constructor
A new instance of CurrencySymbolFormat.
- #to_hash ⇒ Object
Constructor Details
#initialize(value) ⇒ CurrencySymbolFormat
Returns a new instance of CurrencySymbolFormat.
18288 18289 18290 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18288 def initialize(value) @value = HttpClient::Preconditions.assert_class('value', value, String) end |
Instance Attribute Details
#value ⇒ Object (readonly)
Returns the value of attribute value.
18286 18287 18288 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18286 def value @value end |
Class Method Details
.ALL ⇒ Object
18308 18309 18310 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18308 def CurrencySymbolFormat.ALL @@all ||= [CurrencySymbolFormat.narrow, CurrencySymbolFormat.primary] end |
.apply(value) ⇒ Object
Returns the instance of CurrencySymbolFormat for this value, creating a new instance for an unknown value
18293 18294 18295 18296 18297 18298 18299 18300 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18293 def CurrencySymbolFormat.apply(value) if value.instance_of?(CurrencySymbolFormat) value else HttpClient::Preconditions.assert_class_or_nil('value', value, String) value.nil? ? nil : (from_string(value) || CurrencySymbolFormat.new(value)) end end |
.from_string(value) ⇒ Object
Returns the instance of CurrencySymbolFormat for this value, or nil if not found
18303 18304 18305 18306 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18303 def CurrencySymbolFormat.from_string(value) HttpClient::Preconditions.assert_class('value', value, String) CurrencySymbolFormat.ALL.find { |v| v.value == value } end |
.narrow ⇒ Object
The narrow format refers to the Unicode Common Locale Data Repository (CLDR) ‘narrow’ symbols (e.g. ‘$’ for CAD and AUD)
18314 18315 18316 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18314 def CurrencySymbolFormat.narrow @@_narrow ||= CurrencySymbolFormat.new('narrow') end |
.primary ⇒ Object
The primary format refers to the Unicode Common Locale Data Repository (CLDR) ‘primary’ symbols (e.g. ‘CA$’ for CAD and ‘A$’ for AUD)
18320 18321 18322 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18320 def CurrencySymbolFormat.primary @@_primary ||= CurrencySymbolFormat.new('primary') end |
Instance Method Details
#to_hash ⇒ Object
18324 18325 18326 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 18324 def to_hash value end |