Class: Seahorse::Model::Shapes::StructureShape

Inherits:
Shape
  • Object
show all
Defined in:
lib/seahorse/model/shapes.rb

Instance Attribute Summary collapse

Attributes inherited from Shape

#documentation, #name

Instance Method Summary collapse

Methods inherited from Shape

#[], #[]=

Constructor Details

#initialize(options = {}) ⇒ StructureShape

Returns a new instance of StructureShape.



209
210
211
212
213
214
# File 'lib/seahorse/model/shapes.rb', line 209

def initialize(options = {})
  @members = {}
  @members_by_location_name = {}
  @required = Set.new
  super
end

Instance Attribute Details

#requiredSet<Symbol>

Returns:

  • (Set<Symbol>)


217
218
219
# File 'lib/seahorse/model/shapes.rb', line 217

def required
  @required
end

#struct_classClass<Struct>

Returns:

  • (Class<Struct>)


220
221
222
# File 'lib/seahorse/model/shapes.rb', line 220

def struct_class
  @struct_class
end

Instance Method Details

#add_member(name, shape_ref) ⇒ Object

Parameters:



224
225
226
227
228
229
# File 'lib/seahorse/model/shapes.rb', line 224

def add_member(name, shape_ref)
  name = name.to_sym
  @required << name if shape_ref.required
  @members_by_location_name[shape_ref.location_name] = [name, shape_ref]
  @members[name] = shape_ref
end

#member(name) ⇒ ShapeRef

Parameters:

  • name (Symbol)

Returns:



250
251
252
253
254
255
256
# File 'lib/seahorse/model/shapes.rb', line 250

def member(name)
  if member?(name)
    @members[name.to_sym]
  else
    raise ArgumentError, "no such member #{name.inspect}"
  end
end

#member?(member_name) ⇒ Boolean

Returns ‘true` if there exists a member with the given name.

Parameters:

  • member_name (Symbol)

Returns:

  • (Boolean)

    Returns ‘true` if there exists a member with the given name.



239
240
241
# File 'lib/seahorse/model/shapes.rb', line 239

def member?(member_name)
  @members.key?(member_name.to_sym)
end

#member_by_location_name(location_name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



259
260
261
# File 'lib/seahorse/model/shapes.rb', line 259

def member_by_location_name(location_name)
  @members_by_location_name[location_name]
end

#member_namesArray<Symbol>

Returns:

  • (Array<Symbol>)


232
233
234
# File 'lib/seahorse/model/shapes.rb', line 232

def member_names
  @members.keys
end

#membersEnumerator<[Symbol,ShapeRef]>

Returns:



244
245
246
# File 'lib/seahorse/model/shapes.rb', line 244

def members
  @members.to_enum
end