Class: Io::Flow::V0::Models::CurrencySymbolFormat

Inherits:
Object
  • Object
show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ CurrencySymbolFormat



8866
8867
8868
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8866

def initialize(value)
  @value = HttpClient::Preconditions.assert_class('value', value, String)
end

Instance Attribute Details

#valueObject (readonly)

Returns the value of attribute value.



8864
8865
8866
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8864

def value
  @value
end

Class Method Details

.ALLObject



8886
8887
8888
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8886

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



8871
8872
8873
8874
8875
8876
8877
8878
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8871

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



8881
8882
8883
8884
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8881

def CurrencySymbolFormat.from_string(value)
  HttpClient::Preconditions.assert_class('value', value, String)
  CurrencySymbolFormat.ALL.find { |v| v.value == value }
end

.narrowObject

The narrow format refers to the Unicode Common Locale Data Repository (CLDR) ‘narrow’ symbols (e.g. ‘$’ for CAD and AUD)



8892
8893
8894
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8892

def CurrencySymbolFormat.narrow
  @@_narrow ||= CurrencySymbolFormat.new('narrow')
end

.primaryObject

The primary format refers to the Unicode Common Locale Data Repository (CLDR) ‘primary’ symbols (e.g. ‘CA$’ for CAD and ‘A$’ for AUD)



8898
8899
8900
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8898

def CurrencySymbolFormat.primary
  @@_primary ||= CurrencySymbolFormat.new('primary')
end

Instance Method Details

#to_hashObject



8902
8903
8904
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 8902

def to_hash
  value
end