determine if an Object is of primitive type

This commit is contained in:
joe zhang
2020-07-30 21:00:51 +08:00
parent 91f676f5ca
commit c1eb5dfb08

View File

@@ -11,7 +11,7 @@ public class PrimitiveTypeUtilTest {
private PrimitiveTypeUtil primitiveTypeUtil;
private boolean booleanVal = false;
private Long longWrapper = 1L;
private String nonPrimitiveVal = "Test";
private String nonPrimitiveVal = "non primitive string";
@Before
public void setup() {