@SuppressWarnings("rawtypes")
public static String getLabel(final Enum e, final String defaultLabel) {
if (e != null) {
if (e instanceof LabelSupport) {
LabelSupport labelSupport = (LabelSupport) e;
return labelSupport.getLabel();
}
return e.name();
}
return defaultLabel;
}