getShowType method
Implementation
int getShowType() {
switch (this) {
case TShowType.noShow:
return 0;
case TShowType.showLeft:
return 1;
case TShowType.showCenter:
return 2;
case TShowType.showRight:
return 3;
}
}