aspose file tools
The moose likes Java in General and the fly likes Convert from a Constructor to a Builder Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Convert from a Constructor to a Builder" Watch "Convert from a Constructor to a Builder" New topic
Author

Convert from a Constructor to a Builder

Daniel Afonso
Greenhorn

Joined: Jan 27, 2011
Posts: 16

Hi have the following code:




How would I convert this to a Builder. I'm pretty new on this.
Campbell Ritchie
Sheriff

Joined: Oct 13, 2005
Posts: 32599
    
    4
Several ways to do it. You will have to consider whether you want to permit any changes to those fields. You should also consider whether it is wise to have so many parameters for your constructor; for one thing it makes the code hard to read, and I had to insert some line breaks.That is one way to do it. You can set up lots of methods for different combinations.
  • In that case they all have the structure Address a = getBasicAddress(...); ... return a;
  • The getBasicAddress method requires postCode and town be not null, and other null fields are changed to "", so there are no nulls.
  • You can do validation of the fields in those methods, eg with a regex for post codes.
  • There are other ways to do it, too.
     
    I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
     
    subject: Convert from a Constructor to a Builder
     
    Similar Threads
    javabean problem
    javabean problem
    problem in parsing mapping document.
    Cant retrieve data from use bean
    Exception in thread "main" org.hibernate.exception.SQLGrammarException: could not execute query