public class ClassNameUtil
extends java.lang.Object
com.liferay.portal.service.persistence.impl.ClassNamePersistenceImpl
and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
Caching information and settings can be found in portal.properties
ClassNamePersistence
Constructor and Description |
---|
ClassNameUtil() |
Modifier and Type | Method and Description |
---|---|
static void |
cacheResult(ClassName className)
Caches the class name in the entity cache if it is enabled.
|
static void |
cacheResult(java.util.List<ClassName> classNames)
Caches the class names in the entity cache if it is enabled.
|
static void |
clearCache() |
static void |
clearCache(ClassName className) |
static int |
countAll()
Returns the number of class names.
|
static int |
countByValue(java.lang.String value)
Returns the number of class names where value = ?.
|
static long |
countWithDynamicQuery(DynamicQuery dynamicQuery) |
static ClassName |
create(long classNameId)
Creates a new class name with the primary key.
|
static ClassName |
fetchByPrimaryKey(long classNameId)
Returns the class name with the primary key or returns
null if it could not be found. |
static java.util.Map<java.io.Serializable,ClassName> |
fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys) |
static ClassName |
fetchByValue(java.lang.String value)
Returns the class name where value = ? or returns
null if it could not be found. |
static ClassName |
fetchByValue(java.lang.String value,
boolean useFinderCache)
Returns the class name where value = ? or returns
null if it could not be found, optionally using the finder cache. |
static java.util.List<ClassName> |
findAll()
Returns all the class names.
|
static java.util.List<ClassName> |
findAll(int start,
int end)
Returns a range of all the class names.
|
static java.util.List<ClassName> |
findAll(int start,
int end,
OrderByComparator<ClassName> orderByComparator)
Returns an ordered range of all the class names.
|
static java.util.List<ClassName> |
findAll(int start,
int end,
OrderByComparator<ClassName> orderByComparator,
boolean useFinderCache)
Returns an ordered range of all the class names.
|
static ClassName |
findByPrimaryKey(long classNameId)
Returns the class name with the primary key or throws a
NoSuchClassNameException if it could not be found. |
static ClassName |
findByValue(java.lang.String value)
Returns the class name where value = ? or throws a
NoSuchClassNameException if it could not be found. |
static java.util.List<ClassName> |
findWithDynamicQuery(DynamicQuery dynamicQuery) |
static java.util.List<ClassName> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end) |
static java.util.List<ClassName> |
findWithDynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<ClassName> orderByComparator) |
static ClassNamePersistence |
getPersistence() |
static ClassName |
remove(long classNameId)
Removes the class name with the primary key from the database.
|
static void |
removeAll()
Removes all the class names from the database.
|
static ClassName |
removeByValue(java.lang.String value)
Removes the class name where value = ? from the database.
|
static ClassName |
update(ClassName className) |
static ClassName |
update(ClassName className,
ServiceContext serviceContext) |
static ClassName |
updateImpl(ClassName className) |
public static void clearCache()
BasePersistence.clearCache()
public static void clearCache(ClassName className)
public static long countWithDynamicQuery(DynamicQuery dynamicQuery)
public static java.util.Map<java.io.Serializable,ClassName> fetchByPrimaryKeys(java.util.Set<java.io.Serializable> primaryKeys)
BasePersistence.fetchByPrimaryKeys(Set)
public static java.util.List<ClassName> findWithDynamicQuery(DynamicQuery dynamicQuery)
public static java.util.List<ClassName> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
public static java.util.List<ClassName> findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<ClassName> orderByComparator)
public static ClassName update(ClassName className, ServiceContext serviceContext)
public static ClassName findByValue(java.lang.String value) throws NoSuchClassNameException
NoSuchClassNameException
if it could not be found.value
- the valueNoSuchClassNameException
- if a matching class name could not be foundpublic static ClassName fetchByValue(java.lang.String value)
null
if it could not be found. Uses the finder cache.value
- the valuenull
if a matching class name could not be foundpublic static ClassName fetchByValue(java.lang.String value, boolean useFinderCache)
null
if it could not be found, optionally using the finder cache.value
- the valueuseFinderCache
- whether to use the finder cachenull
if a matching class name could not be foundpublic static ClassName removeByValue(java.lang.String value) throws NoSuchClassNameException
value
- the valueNoSuchClassNameException
public static int countByValue(java.lang.String value)
value
- the valuepublic static void cacheResult(ClassName className)
className
- the class namepublic static void cacheResult(java.util.List<ClassName> classNames)
classNames
- the class namespublic static ClassName create(long classNameId)
classNameId
- the primary key for the new class namepublic static ClassName remove(long classNameId) throws NoSuchClassNameException
classNameId
- the primary key of the class nameNoSuchClassNameException
- if a class name with the primary key could not be foundpublic static ClassName findByPrimaryKey(long classNameId) throws NoSuchClassNameException
NoSuchClassNameException
if it could not be found.classNameId
- the primary key of the class nameNoSuchClassNameException
- if a class name with the primary key could not be foundpublic static ClassName fetchByPrimaryKey(long classNameId)
null
if it could not be found.classNameId
- the primary key of the class namenull
if a class name with the primary key could not be foundpublic static java.util.List<ClassName> findAll()
public static java.util.List<ClassName> findAll(int start, int end)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from ClassNameModelImpl
.
start
- the lower bound of the range of class namesend
- the upper bound of the range of class names (not inclusive)public static java.util.List<ClassName> findAll(int start, int end, OrderByComparator<ClassName> orderByComparator)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from ClassNameModelImpl
.
start
- the lower bound of the range of class namesend
- the upper bound of the range of class names (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)public static java.util.List<ClassName> findAll(int start, int end, OrderByComparator<ClassName> orderByComparator, boolean useFinderCache)
Useful when paginating results. Returns a maximum of end - start
instances. start
and end
are not primary keys, they are indexes in the result set. Thus, 0
refers to the first result in the set. Setting both start
and end
to QueryUtil#ALL_POS
will return the full result set. If orderByComparator
is specified, then the query will include the given ORDER BY logic. If orderByComparator
is absent, then the query will include the default ORDER BY logic from ClassNameModelImpl
.
start
- the lower bound of the range of class namesend
- the upper bound of the range of class names (not inclusive)orderByComparator
- the comparator to order the results by (optionally null
)useFinderCache
- whether to use the finder cachepublic static void removeAll()
public static int countAll()
public static ClassNamePersistence getPersistence()