Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an object, Person p;. The following properties are p's properties:

Properties:
     PersonName: 'John Doe'
     JobType: [1x1 JobTypes]

JobType is an object from JobTypes class which contains enumeration of JobTypes. I want to see JobType: Manager instead of JobType: [1x1 JobTypes]. Any thoughts?

share|improve this question

2 Answers

up vote 2 down vote accepted

I have never been fond of enumeration classes in Matlab -- just too much hassle for my taste. Therefore, I have too little experience to truly understand what's going on here. Nevertheless, I'm going to try: an enumeration class only has a value. It is not a string. Things like

J = JobTypes.Manager

will assign a JobTypes class object to the variable J, set to the value associated with Manager. This value is chosen by Matlab's internals, and will never be shown to the user. The fact that it displays nicely as J = Manager on the command line, is due to Matlab's standard disp and display implementations for enumeration classes. I think this method does not work properly in combiation with a call to display from within another class.

To circumvent this, you could define your own display method for your Person:

classdef Person < handle

    properties
        PersonName = 'John Doe'
        JobType  = JobTypes.Manager
    end

    methods       
        function  display(self)   
            fprintf(...
                ['Properties:\n',...
                '   Personname: ''%s''\n',...
                '      JobType: %s\n'],...
                   self.PersonName,...
                   self.JobType.char);            
        end
    end

end

JobType.char is Matlab's version of a toString for enumeration classes, so inserting it in fprintf will show the actual string! (kudos to @zagy for this)

Take a look at how the Mathworks has implemented the display methods of some of their own classes to get a feel for how to get the links to Superclasses, Methods, Events, etc. in the display.

share|improve this answer
1  
I believe one can use JobTypes.char property to return the appropriate string rather than using a switch. – zagy Aug 24 '12 at 13:11
@zagy you're absolutely right. Let me edit that in. – Rody Oldenhuis Aug 24 '12 at 13:42

You would need to overwrite the display(obj) and disp(obj) methods of your class to achieve this.

Maybe these two pages help: 1,2

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.