determine if an Object is of primitive type

This commit is contained in:
joe zhang 2020-07-30 21:00:51 +08:00
parent 45be1b6045
commit 1deeca3b47

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() {