Enum Class IMetaAssociation.DeleteBehaviourChild
java.lang.Object
java.lang.Enum<IMetaAssociation.DeleteBehaviourChild>
com.mendix.systemwideinterfaces.core.meta.IMetaAssociation.DeleteBehaviourChild
- All Implemented Interfaces:
Serializable
,Comparable<IMetaAssociation.DeleteBehaviourChild>
,Constable
- Enclosing interface:
IMetaAssociation
public static enum IMetaAssociation.DeleteBehaviourChild
extends Enum<IMetaAssociation.DeleteBehaviourChild>
Defines the child's delete behaviour of the association.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDelete the parent if the child is deleted.Keep the parents if the child is deleted.Only delete the child if it has no parents. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DELETECHILDBUTKEEPPARENTS
Keep the parents if the child is deleted. -
DELETECHILDANDPARENTSASWELL
Delete the parent if the child is deleted. -
DELETECHILDONLYIFITHASNOPARENTS
Only delete the child if it has no parents.
-
-
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
-