Uses of Class
org.hibernate.testing.orm.domain.helpdesk.Status
-
Packages that use Status Package Description org.hibernate.testing.orm.domain.helpdesk -
-
Uses of Status in org.hibernate.testing.orm.domain.helpdesk
Methods in org.hibernate.testing.orm.domain.helpdesk that return Status Modifier and Type Method Description static Status
Status. fromCode(Integer code)
Status
Account. getLoginStatus()
Status
Account. getServiceStatus()
Status
Account. getSystemAccessStatus()
static Status
Status. valueOf(String name)
Returns the enum constant of this type with the specified name.static Status[]
Status. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.hibernate.testing.orm.domain.helpdesk with parameters of type Status Modifier and Type Method Description void
Account. setLoginStatus(Status loginStatus)
void
Account. setServiceStatus(Status serviceStatus)
void
Account. setSystemAccessStatus(Status systemAccessStatus)
Constructors in org.hibernate.testing.orm.domain.helpdesk with parameters of type Status Constructor Description Account(Integer id, Status loginStatus, Status systemAccessStatus, Status serviceStatus)
-