Do you have any way to align type parameters?

Answered

With following class,

 

public class Some<T extends ............., U extends ............., V extends ............., W extends .............,> {

}

 

Can I align like this?

public class Some<T extends .............,

                              U extends .............,

                              V extends .............,

                              W extends .............,> {

}

 

0

Please sign in to leave a comment.