Class: OData::StringType
Instance Method Summary
collapse
Methods inherited from Type
#collection?, #initialize
Constructor Details
This class inherits a constructor from OData::Type
Instance Method Details
#coerce(value) ⇒ Object
7
8
9
|
# File 'lib/odata/types/primitive_types/string_type.rb', line 7
def coerce(value)
value.to_s
end
|
#name ⇒ Object
11
12
13
|
# File 'lib/odata/types/primitive_types/string_type.rb', line 11
def name
"Edm.String"
end
|
#valid_value?(value) ⇒ Boolean
3
4
5
|
# File 'lib/odata/types/primitive_types/string_type.rb', line 3
def valid_value?(value)
String === value
end
|