Get the full name of the state. Returns: The full name of the state.
(cls)
| 1074 | @classmethod |
| 1075 | @functools.lru_cache |
| 1076 | def get_full_name(cls) -> str: |
| 1077 | """Get the full name of the state. |
| 1078 | |
| 1079 | Returns: |
| 1080 | The full name of the state. |
| 1081 | """ |
| 1082 | name = cls.get_name() |
| 1083 | parent_state = cls.get_parent_state() |
| 1084 | if parent_state is not None: |
| 1085 | name = parent_state.get_full_name() + "." + name |
| 1086 | return name |
| 1087 | |
| 1088 | @classmethod |
| 1089 | @functools.lru_cache |