class NoSE::Serialize::UpdatePlanStepRepresenter

Represent update plan steps

Public Instance Methods

cardinality() click to toggle source

The estimated cardinality of entities being updated @return [Integer]

# File lib/nose/serialize.rb, line 330
def cardinality
  state = represented.instance_variable_get(:@state)
  state.cardinality unless state.nil?
end
type() click to toggle source

Set the hidden type variable @return [Symbol]

# File lib/nose/serialize.rb, line 316
def type
  represented.instance_variable_get(:@type)
end
type=(type) click to toggle source

Set the hidden type variable @return [void]

# File lib/nose/serialize.rb, line 322
def type=(type)
  represented.instance_variable_set(:@type, type)
end