]> source.dussan.org Git - poi.git/commitdiff
make static maps final
authorPJ Fanning <fanningpj@apache.org>
Tue, 15 Oct 2024 16:33:15 +0000 (16:33 +0000)
committerPJ Fanning <fanningpj@apache.org>
Tue, 15 Oct 2024 16:33:15 +0000 (16:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1921340 13f79535-47bb-0310-9956-ffa450edef68

poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/Borders.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/BreakType.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/LineSpacingRule.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/TableRowAlign.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/TableRowHeightRule.java
poi-ooxml/src/main/java/org/apache/poi/xwpf/usermodel/TextAlignment.java
poi-scratchpad/src/main/java/org/apache/poi/hmef/attribute/TNEFProperty.java
poi-scratchpad/src/main/java/org/apache/poi/hsmf/datatypes/MAPIProperty.java
poi/src/main/java/org/apache/poi/ss/formula/functions/LookupUtils.java
poi/src/main/java/org/apache/poi/ss/usermodel/ConditionType.java

index 2ab27d37da98715c16d1d6d7ecfe4671f1fee694..6b08e0ee25f20dbb72aecd0cac6b358ec8ac98da 100644 (file)
@@ -604,7 +604,7 @@ public enum Borders {
     static {
         final Map<Integer, Borders> tempMap = new HashMap<>();
         for (Borders p : values()) {
-            tempMap.put(Integer.valueOf(p.getValue()), p);
+            tempMap.put(p.getValue(), p);
         }
         imap = Collections.unmodifiableMap(tempMap);
     }
index f86a89e25f8e150df2215481efd1f9f4fd92f445..5eaebd9b68e81af8222283b1f288281d03ba07fb 100644 (file)
@@ -16,6 +16,7 @@
 ==================================================================== */
 package org.apache.poi.xwpf.usermodel;
 
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
 
@@ -54,12 +55,14 @@ public enum BreakType {
      */
     TEXT_WRAPPING(3);
 
-    private static Map<Integer, BreakType> imap = new HashMap<>();
+    private static final Map<Integer, BreakType> imap;
 
     static {
+        final Map<Integer, BreakType> tempMap = new HashMap<>();
         for (BreakType p : values()) {
-            imap.put(p.getValue(), p);
+            tempMap.put(p.getValue(), p);
         }
+        imap = Collections.unmodifiableMap(tempMap);
     }
 
     private final int value;
index b8b6fbde7159d5e2444a812a9a08514c3a9e669d..4b9cb9804e03dc450151b4480cd8c95b53421e9e 100644 (file)
@@ -16,6 +16,7 @@
 ==================================================================== */
 package org.apache.poi.xwpf.usermodel;
 
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
 
@@ -47,12 +48,14 @@ public enum LineSpacingRule {
     AT_LEAST(3);
 
 
-    private static Map<Integer, LineSpacingRule> imap = new HashMap<>();
+    private static final Map<Integer, LineSpacingRule> imap;
 
     static {
+        final Map<Integer, LineSpacingRule> tempMap = new HashMap<>();
         for (LineSpacingRule p : values()) {
-            imap.put(p.getValue(), p);
+            tempMap.put(p.getValue(), p);
         }
+        imap = Collections.unmodifiableMap(tempMap);
     }
 
     private final int value;
index 35e80d33b1dd54d3b9dd1f205316cd82c48327c4..06653cdb33fcfdd2b37aa762ff76d4a7e5602924 100644 (file)
@@ -18,6 +18,7 @@ package org.apache.poi.xwpf.usermodel;
 
 import org.openxmlformats.schemas.wordprocessingml.x2006.main.STJcTable;
 
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
 
@@ -30,12 +31,14 @@ public enum TableRowAlign {
     CENTER(STJcTable.INT_CENTER),
     RIGHT(STJcTable.INT_END);
 
-    private static Map<Integer, TableRowAlign> imap = new HashMap<>();
+    private static final Map<Integer, TableRowAlign> imap;
 
     static {
+        final Map<Integer, TableRowAlign> tempMap = new HashMap<>();
         for (TableRowAlign p : values()) {
-            imap.put(p.getValue(), p);
+            tempMap.put(p.getValue(), p);
         }
+        imap = Collections.unmodifiableMap(tempMap);
     }
 
     private final int value;
index 2a42c76baf0f47923eb07e08ccaec0b2e910d2c9..cbe41afc6efe7720d31f2889c4cdc60f106129e1 100644 (file)
@@ -16,6 +16,7 @@
 ==================================================================== */
 package org.apache.poi.xwpf.usermodel;
 
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
 
@@ -28,12 +29,14 @@ public enum TableRowHeightRule {
     EXACT(2),
     AT_LEAST(3);
 
-    private static Map<Integer, TableRowHeightRule> imap = new HashMap<>();
+    private static final Map<Integer, TableRowHeightRule> imap;
 
     static {
+        final Map<Integer, TableRowHeightRule> tempMap = new HashMap<>();
         for (TableRowHeightRule p : values()) {
-            imap.put(p.getValue(), p);
+            tempMap.put(p.getValue(), p);
         }
+        imap = Collections.unmodifiableMap(tempMap);
     }
 
     private final int value;
index 3fb82315891989f35dcd76e6b45d237fd410094b..97d9e3cd5372012857ebe36332554ad01a8cf990 100644 (file)
@@ -16,6 +16,7 @@
 ==================================================================== */
 package org.apache.poi.xwpf.usermodel;
 
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
 
@@ -50,12 +51,14 @@ public enum TextAlignment {
      */
     AUTO(5);
 
-    private static Map<Integer, TextAlignment> imap = new HashMap<>();
+    private static final Map<Integer, TextAlignment> imap;
 
     static {
+        final Map<Integer, TextAlignment> tempMap = new HashMap<>();
         for (TextAlignment p : values()) {
-            imap.put(p.getValue(), p);
+            tempMap.put(p.getValue(), p);
         }
+        imap = Collections.unmodifiableMap(tempMap);
     }
 
     private final int value;
index e90c91047057ba48c82fb10488b41f3451b4a8cd..151ac152ff935fe98ea4b417f25ce455cdb6949f 100644 (file)
@@ -30,7 +30,7 @@ import java.util.Map;
  *  ones, so we can't just re-use the HSMF ones.
  */
 public final class TNEFProperty {
-   private static Map<Integer, List<TNEFProperty>> properties = new HashMap<>();
+   private static final Map<Integer, List<TNEFProperty>> properties = new HashMap<>();
    
    // Types taken from http://msdn.microsoft.com/en-us/library/microsoft.exchange.data.contenttypes.tnef.tnefattributetype%28v=EXCHG.140%29.aspx
    public static final int TYPE_TRIPLES = 0x0000;
index b09e39cc7aa48310c4b5a9741fe619c66139d30e..5afe53b6bffcea999bb20f3bc8c9af0de789f067 100644 (file)
@@ -46,7 +46,7 @@ import static org.apache.poi.hsmf.datatypes.Types.TIME;
  */
 @SuppressWarnings("unused")
 public class MAPIProperty {
-    private static Map<Integer, MAPIProperty> attributes = new HashMap<>();
+    private static final Map<Integer, MAPIProperty> attributes = new HashMap<>();
 
     public static final MAPIProperty AB_DEFAULT_DIR =
         new MAPIProperty(0x3d06, BINARY, "AbDefaultDir", "PR_AB_DEFAULT_DIR");
index d36ae34b7a8a42a96fb1f7c91233ae5aec7e2d0b..0c260e3975bda3485d33bf0d148e5df0093bf5cc 100644 (file)
@@ -17,6 +17,7 @@
 
 package org.apache.poi.ss.formula.functions;
 
+import java.util.Collections;
 import java.util.HashMap;
 import java.util.HashSet;
 import java.util.Iterator;
@@ -75,16 +76,20 @@ public final class LookupUtils {
         public int getIntValue() { return intValue; }
     }
 
-    private static Map<Integer, MatchMode> matchModeMap = new HashMap<>();
-    private static Map<Integer, SearchMode> searchModeMap = new HashMap<>();
+    private static final Map<Integer, MatchMode> matchModeMap;
+    private static final Map<Integer, SearchMode> searchModeMap;
 
     static {
+        final Map<Integer, MatchMode> mmMap = new HashMap<>();
         for (MatchMode mode : MatchMode.values()) {
-            matchModeMap.put(mode.getIntValue(), mode);
+            mmMap.put(mode.getIntValue(), mode);
         }
+        matchModeMap = Collections.unmodifiableMap(mmMap);
+        final Map<Integer, SearchMode> smMap = new HashMap<>();
         for (SearchMode mode : SearchMode.values()) {
-            searchModeMap.put(mode.getIntValue(), mode);
+            smMap.put(mode.getIntValue(), mode);
         }
+        searchModeMap = Collections.unmodifiableMap(smMap);
     }
 
     public static MatchMode matchMode(int m) {
@@ -588,7 +593,7 @@ public final class LookupUtils {
 
         if (valEval instanceof StringEval) {
             String stringValue = ((StringEval) valEval).getStringValue();
-            if(stringValue.length() < 1) {
+            if(stringValue.isEmpty()) {
                 // More trickiness:
                 // Empty string is not the same as BlankEval.  It causes #VALUE! error
                 throw EvaluationException.invalidValue();
index a5681cd4b9967c97f5a74a7f7fa581ae7e5a4500..111cc93f1aeb911628a075bc24e7c2fa503c80ae 100644 (file)
@@ -26,7 +26,7 @@ import java.util.Map;
  * Represents a type of a conditional formatting rule
  */
 public class ConditionType {
-    private static Map<Integer,ConditionType> lookup = new HashMap<>();
+    private static final Map<Integer, ConditionType> lookup = new HashMap<>();
     
     /**
      * This conditional formatting rule compares a cell value