List of usage examples for com.liferay.portal.kernel.util StringPool NULL
String NULL
To view the source code for com.liferay.portal.kernel.util StringPool NULL.
Click Source Link
From source file:com.liferay.wiki.service.persistence.test.WikiPagePersistenceTest.java
License:Open Source License
@Test public void testCountByN_H_P_S() throws Exception { _persistence.countByN_H_P_S(RandomTestUtil.nextLong(), RandomTestUtil.randomBoolean(), StringPool.BLANK, RandomTestUtil.nextInt());//from ww w.ja v a 2 s . c om _persistence.countByN_H_P_S(0L, RandomTestUtil.randomBoolean(), StringPool.NULL, 0); _persistence.countByN_H_P_S(0L, RandomTestUtil.randomBoolean(), (String) null, 0); }
From source file:com.liferay.wiki.service.persistence.test.WikiPagePersistenceTest.java
License:Open Source License
@Test public void testCountByN_H_P_NotS() throws Exception { _persistence.countByN_H_P_NotS(RandomTestUtil.nextLong(), RandomTestUtil.randomBoolean(), StringPool.BLANK, RandomTestUtil.nextInt());//from ww w . ja va 2 s . com _persistence.countByN_H_P_NotS(0L, RandomTestUtil.randomBoolean(), StringPool.NULL, 0); _persistence.countByN_H_P_NotS(0L, RandomTestUtil.randomBoolean(), (String) null, 0); }
From source file:com.liferay.wiki.service.persistence.test.WikiPagePersistenceTest.java
License:Open Source License
@Test public void testCountByN_H_R_S() throws Exception { _persistence.countByN_H_R_S(RandomTestUtil.nextLong(), RandomTestUtil.randomBoolean(), StringPool.BLANK, RandomTestUtil.nextInt());/*from w w w . jav a2 s . co m*/ _persistence.countByN_H_R_S(0L, RandomTestUtil.randomBoolean(), StringPool.NULL, 0); _persistence.countByN_H_R_S(0L, RandomTestUtil.randomBoolean(), (String) null, 0); }
From source file:com.liferay.wiki.service.persistence.test.WikiPagePersistenceTest.java
License:Open Source License
@Test public void testCountByN_H_R_NotS() throws Exception { _persistence.countByN_H_R_NotS(RandomTestUtil.nextLong(), RandomTestUtil.randomBoolean(), StringPool.BLANK, RandomTestUtil.nextInt());//from ww w. ja v a 2 s. c o m _persistence.countByN_H_R_NotS(0L, RandomTestUtil.randomBoolean(), StringPool.NULL, 0); _persistence.countByN_H_R_NotS(0L, RandomTestUtil.randomBoolean(), (String) null, 0); }
From source file:com.liferay.wiki.service.persistence.test.WikiPagePersistenceTest.java
License:Open Source License
@Test public void testCountByG_N_H_P_S() throws Exception { _persistence.countByG_N_H_P_S(RandomTestUtil.nextLong(), RandomTestUtil.nextLong(), RandomTestUtil.randomBoolean(), StringPool.BLANK, RandomTestUtil.nextInt()); _persistence.countByG_N_H_P_S(0L, 0L, RandomTestUtil.randomBoolean(), StringPool.NULL, 0); _persistence.countByG_N_H_P_S(0L, 0L, RandomTestUtil.randomBoolean(), (String) null, 0); }
From source file:com.sohlman.liferay.bffss.service.persistence.test.FileDataPersistenceTest.java
License:Open Source License
@Test public void testCountByFingerPrint() throws Exception { _persistence.countByFingerPrint(StringPool.BLANK); _persistence.countByFingerPrint(StringPool.NULL); _persistence.countByFingerPrint((String) null); }
From source file:com.sohlman.liferay.bffss.service.persistence.test.FileInfoPersistenceTest.java
License:Open Source License
@Test public void testCountByC_R_P() throws Exception { _persistence.countByC_R_P(RandomTestUtil.nextLong(), RandomTestUtil.nextLong(), StringPool.BLANK); _persistence.countByC_R_P(0L, 0L, StringPool.NULL); _persistence.countByC_R_P(0L, 0L, (String) null); }
From source file:com.sohlman.liferay.bffss.service.persistence.test.FileInfoPersistenceTest.java
License:Open Source License
@Test public void testCountByC_R_LikeP() throws Exception { _persistence.countByC_R_LikeP(RandomTestUtil.nextLong(), RandomTestUtil.nextLong(), StringPool.BLANK); _persistence.countByC_R_LikeP(0L, 0L, StringPool.NULL); _persistence.countByC_R_LikeP(0L, 0L, (String) null); }
From source file:com.sohlman.liferay.bffss.service.persistence.test.FileInfoPersistenceTest.java
License:Open Source License
@Test public void testCountByC_R_P_V() throws Exception { _persistence.countByC_R_P_V(RandomTestUtil.nextLong(), RandomTestUtil.nextLong(), StringPool.BLANK, StringPool.BLANK);//from w w w. j a v a 2s .com _persistence.countByC_R_P_V(0L, 0L, StringPool.NULL, StringPool.NULL); _persistence.countByC_R_P_V(0L, 0L, (String) null, (String) null); }
From source file:com.sohlman.liferay.perm.integ.service.persistence.test.IntegrationInfoPersistenceTest.java
License:Open Source License
@Test public void testCountByG_CN() throws Exception { _persistence.countByG_CN(RandomTestUtil.nextLong(), StringPool.BLANK); _persistence.countByG_CN(0L, StringPool.NULL); _persistence.countByG_CN(0L, (String) null); }