commands/FBXCTestCommands.py [1394:1410]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @classmethod
    def _attributes_by_value(cls):
        """
        :return: Hash of all attributes and their values
        :rtype: dict[int, str]
        """
        class_attributes = set(dir(cls)) - set(dir(object))
        return dict(
            [
                (getattr(cls, n), n)
                for n in class_attributes
                if not callable(getattr(cls, n)) and not n.startswith("__")
            ]
        )

    @classmethod
    def name_for_value(cls, value):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



commands/FBXCTestCommands.py [1448:1464]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @classmethod
    def _attributes_by_value(cls):
        """
        :return: Hash of all attributes and their values
        :rtype: dict[int, str]
        """
        class_attributes = set(dir(cls)) - set(dir(object))
        return dict(
            [
                (getattr(cls, n), n)
                for n in class_attributes
                if not callable(getattr(cls, n)) and not n.startswith("__")
            ]
        )

    @classmethod
    def name_for_value(cls, value):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



