if (value == null) {
return null;
}
final int ordinal = getIndex(value);
if (DtBorderStyle.keywords[ordinal] == null) {
final BorderStyle borderStyle = convertBorderStyle(value);
DtBorderStyle.keywords[ordinal] = new DtBorderStyle(borderStyle);
}
return DtBorderStyle.keywords[ordinal];
}