reorder map

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1925974 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2025-05-30 09:34:42 +00:00
parent de1c2b67d7
commit c8fc8a36a9

View File

@ -277,10 +277,10 @@ public final class CellUtil {
map.put(BORDER_RIGHT, CellPropertyType.BORDER_RIGHT);
map.put(BORDER_TOP, CellPropertyType.BORDER_TOP);
map.put(BOTTOM_BORDER_COLOR, CellPropertyType.BOTTOM_BORDER_COLOR);
map.put(DATA_FORMAT, CellPropertyType.DATA_FORMAT);
map.put(LEFT_BORDER_COLOR, CellPropertyType.LEFT_BORDER_COLOR);
map.put(RIGHT_BORDER_COLOR, CellPropertyType.RIGHT_BORDER_COLOR);
map.put(TOP_BORDER_COLOR, CellPropertyType.TOP_BORDER_COLOR);
map.put(DATA_FORMAT, CellPropertyType.DATA_FORMAT);
map.put(FILL_BACKGROUND_COLOR, CellPropertyType.FILL_BACKGROUND_COLOR);
map.put(FILL_FOREGROUND_COLOR, CellPropertyType.FILL_FOREGROUND_COLOR);
map.put(FILL_BACKGROUND_COLOR_COLOR, CellPropertyType.FILL_BACKGROUND_COLOR_COLOR);
@ -290,9 +290,9 @@ public final class CellUtil {
map.put(HIDDEN, CellPropertyType.HIDDEN);
map.put(INDENTION, CellPropertyType.INDENTION);
map.put(LOCKED, CellPropertyType.LOCKED);
map.put(QUOTE_PREFIXED, CellPropertyType.QUOTE_PREFIXED);
map.put(ROTATION, CellPropertyType.ROTATION);
map.put(SHRINK_TO_FIT, CellPropertyType.SHRINK_TO_FIT);
map.put(QUOTE_PREFIXED, CellPropertyType.QUOTE_PREFIXED);
map.put(VERTICAL_ALIGNMENT, CellPropertyType.VERTICAL_ALIGNMENT);
map.put(WRAP_TEXT, CellPropertyType.WRAP_TEXT);
namePropertyMap = Collections.unmodifiableMap(map);