Package | Description |
---|---|
com.liferay.portal.kernel.service.persistence |
This package defines the portal service persistence interfaces, classes, and utilities.
|
Modifier and Type | Method and Description |
---|---|
static ClassName |
ClassNameUtil.findByPrimaryKey(long classNameId)
Returns the class name with the primary key or throws a
NoSuchClassNameException if it could not be found. |
ClassName |
ClassNamePersistence.findByPrimaryKey(long classNameId)
Returns the class name with the primary key or throws a
NoSuchClassNameException if it could not be found. |
static ClassName |
ClassNameUtil.findByValue(String value)
Returns the class name where value = ? or throws a
NoSuchClassNameException if it could not be found. |
ClassName |
ClassNamePersistence.findByValue(String value)
Returns the class name where value = ? or throws a
NoSuchClassNameException if it could not be found. |
static ClassName |
ClassNameUtil.remove(long classNameId)
Removes the class name with the primary key from the database.
|
ClassName |
ClassNamePersistence.remove(long classNameId)
Removes the class name with the primary key from the database.
|
static ClassName |
ClassNameUtil.removeByValue(String value)
Removes the class name where value = ? from the database.
|
ClassName |
ClassNamePersistence.removeByValue(String value)
Removes the class name where value = ? from the database.
|