if (layout.equalsIgnoreCase(Layout.CARD.getValue())) {
this.setLayout(new CardLayout());
} else if (layout.equalsIgnoreCase(Layout.FIT.getValue())) {
this.setLayout(new FitLayout());
} else if (layout.equalsIgnoreCase(Layout.HBOX.getValue())) {
this.setLayout(new HBoxLayout());
} else if (layout.equalsIgnoreCase(Layout.VBOX.getValue())) {
this.setLayout(new VBoxLayout());
} else {
this.setLayout(new FitLayout());
}