Package es.caib.seycon.ng.comu
Class SoffidObjectTrigger
- java.lang.Object
-
- es.caib.seycon.ng.comu.SoffidObjectTrigger
-
- All Implemented Interfaces:
Serializable
public class SoffidObjectTrigger extends Object implements Serializable
Enumeration SoffidObjectTrigger- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static SoffidObjectTrigger
POST_DELETE
static SoffidObjectTrigger
POST_INSERT
static SoffidObjectTrigger
POST_SET_PASSWORD
static SoffidObjectTrigger
POST_UPDATE
static SoffidObjectTrigger
PRE_DELETE
static SoffidObjectTrigger
PRE_INSERT
static SoffidObjectTrigger
PRE_SET_PASSWORD
static SoffidObjectTrigger
PRE_UPDATE
-
Constructor Summary
Constructors Modifier Constructor Description protected
SoffidObjectTrigger()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Object that)
boolean
equals(Object object)
static SoffidObjectTrigger
fromString(String value)
Creates an instance of SoffidObjectTrigger fromvalue
.String
getValue()
Gets the underlying value of this type safe enumeration.int
hashCode()
static List
literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.static List
names()
Returns an unmodifiable list containing the names of the literals that are known by this enumeration.String
toString()
-
-
-
Field Detail
-
PRE_INSERT
public static final SoffidObjectTrigger PRE_INSERT
-
PRE_UPDATE
public static final SoffidObjectTrigger PRE_UPDATE
-
PRE_DELETE
public static final SoffidObjectTrigger PRE_DELETE
-
POST_INSERT
public static final SoffidObjectTrigger POST_INSERT
-
POST_UPDATE
public static final SoffidObjectTrigger POST_UPDATE
-
POST_DELETE
public static final SoffidObjectTrigger POST_DELETE
-
PRE_SET_PASSWORD
public static final SoffidObjectTrigger PRE_SET_PASSWORD
-
POST_SET_PASSWORD
public static final SoffidObjectTrigger POST_SET_PASSWORD
-
-
Method Detail
-
toString
public String toString()
- Overrides:
toString
in classObject
- See Also:
Object.toString()
-
fromString
public static SoffidObjectTrigger fromString(String value)
Creates an instance of SoffidObjectTrigger fromvalue
.- Parameters:
value
- the value to create the SoffidObjectTrigger from.
-
getValue
public String getValue()
Gets the underlying value of this type safe enumeration.- Returns:
- the underlying value.
-
compareTo
public int compareTo(Object that)
- See Also:
Comparable.compareTo(java.lang.Object)
-
literals
public static List literals()
Returns an unmodifiable list containing the literals that are known by this enumeration.- Returns:
- A List containing the actual literals defined by this enumeration, this list can not be modified.
-
names
public static List names()
Returns an unmodifiable list containing the names of the literals that are known by this enumeration.- Returns:
- A List containing the actual names of the literals defined by this enumeration, this list can not be modified.
-
equals
public boolean equals(Object object)
- Overrides:
equals
in classObject
- See Also:
Object.equals(java.lang.Object)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
- See Also:
Object.hashCode()
-
-