Class: BagKadasterClient::StatusPand
- Inherits:
-
Object
- Object
- BagKadasterClient::StatusPand
- Defined in:
- lib/bag_kadaster_client/models/status_pand.rb
Constant Summary collapse
- BOUWVERGUNNING_VERLEEND =
"Bouwvergunning verleend".freeze
- NIET_GEREALISEERD_PAND =
"Niet gerealiseerd pand".freeze
- BOUW_GESTART =
"Bouw gestart".freeze
- PAND_IN_GEBRUIK__NIET_INGEMETEN =
"Pand in gebruik (niet ingemeten)".freeze
- PAND_IN_GEBRUIK =
"Pand in gebruik".freeze
- VERBOUWING_PAND =
"Verbouwing pand".freeze
- SLOOPVERGUNNING_VERLEEND =
"Sloopvergunning verleend".freeze
- PAND_GESLOOPT =
"Pand gesloopt".freeze
- PAND_BUITEN_GEBRUIK =
"Pand buiten gebruik".freeze
- PAND_TEN_ONRECHTE_OPGEVOERD =
"Pand ten onrechte opgevoerd".freeze
Class Method Summary collapse
-
.build_from_hash(value) ⇒ String
Builds the enum from string.
Instance Method Summary collapse
-
#build_from_hash(value) ⇒ String
Builds the enum from string.
Class Method Details
.build_from_hash(value) ⇒ String
Builds the enum from string
32 33 34 |
# File 'lib/bag_kadaster_client/models/status_pand.rb', line 32 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
39 40 41 42 43 |
# File 'lib/bag_kadaster_client/models/status_pand.rb', line 39 def build_from_hash(value) constantValues = StatusPand.constants.select { |c| StatusPand::const_get(c) == value } raise "Invalid ENUM value #{value} for class #StatusPand" if constantValues.empty? value end |