Enum Class ValidateViaParents
- All Implemented Interfaces:
Serializable,Comparable<ValidateViaParents>,Constable
checks if a given value is valid in one of the parent domains
OFF - no validation
VALIDATE - the given value must be a valid pseudonym of one parent domain
ENSURE_EXISTS - the given value must exist as a pseudonym in one parent domain
CASCADE_DELETE - the given value must exist as a pseudonym in one parent domain and if that's no longer the case, the entry is delete from the child domain (ignoring
DomainProperties.PSNS_DELETABLE)- Author:
- geidell
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic ValidateViaParentsReturns the enum constant of this class with the specified name.static ValidateViaParents[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
-
VALIDATE
-
ENSURE_EXISTS
-
CASCADE_DELETE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-