Class: BagKadasterClient::StatusVerblijfsobject

Inherits:
Object
  • Object
show all
Defined in:
lib/bag_kadaster_client/models/status_verblijfsobject.rb

Constant Summary collapse

VERBLIJFSOBJECT_GEVORMD =
"Verblijfsobject gevormd".freeze
NIET_GEREALISEERD_VERBLIJFSOBJECT =
"Niet gerealiseerd verblijfsobject".freeze
VERBLIJFSOBJECT_IN_GEBRUIK__NIET_INGEMETEN =
"Verblijfsobject in gebruik (niet ingemeten)".freeze
VERBLIJFSOBJECT_IN_GEBRUIK =
"Verblijfsobject in gebruik".freeze
VERBOUWING_VERBLIJFSOBJECT =
"Verbouwing verblijfsobject".freeze
VERBLIJFSOBJECT_INGETROKKEN =
"Verblijfsobject ingetrokken".freeze
VERBLIJFSOBJECT_BUITEN_GEBRUIK =
"Verblijfsobject buiten gebruik".freeze
VERBLIJFSOBJECT_TEN_ONRECHTE_OPGEVOERD =
"Verblijfsobject ten onrechte opgevoerd".freeze

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



30
31
32
# File 'lib/bag_kadaster_client/models/status_verblijfsobject.rb', line 30

def self.build_from_hash(value)
  new.build_from_hash(value)
end

Instance Method Details

#build_from_hash(value) ⇒ String

Builds the enum from string

Parameters:

  • The (String)

    enum value in the form of the string

Returns:

  • (String)

    The enum value



37
38
39
40
41
# File 'lib/bag_kadaster_client/models/status_verblijfsobject.rb', line 37

def build_from_hash(value)
  constantValues = StatusVerblijfsobject.constants.select { |c| StatusVerblijfsobject::const_get(c) == value }
  raise "Invalid ENUM value #{value} for class #StatusVerblijfsobject" if constantValues.empty?
  value
end