Package com.sleepycat.persist.model
Enum Class Relationship
- All Implemented Interfaces:
Serializable,Comparable<Relationship>,Constable
Defines the relationship between instances of the entity class and the
secondary keys. This can be specified using a
SecondaryKey.relate()
annotation.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRelates many entities to many secondary keys.Relates many entities to one secondary key.Relates one entity to many secondary keys.Relates one entity to one secondary key. -
Method Summary
Modifier and TypeMethodDescriptionstatic RelationshipReturns the enum constant of this class with the specified name.static Relationship[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MANY_TO_ONE
Relates many entities to one secondary key.The secondary index will have non-unique keys; in other words, duplicates will be allowed.
The secondary key field is singular, in other words, it may not be an array or collection type.
-
ONE_TO_MANY
Relates one entity to many secondary keys.The secondary index will have unique keys, in other words, duplicates will not be allowed.
The secondary key field must be an array or collection type.
-
MANY_TO_MANY
Relates many entities to many secondary keys.The secondary index will have non-unique keys, in other words, duplicates will be allowed.
The secondary key field must be an array or collection type.
-
ONE_TO_ONE
Relates one entity to one secondary key.The secondary index will have unique keys, in other words, duplicates will not be allowed.
The secondary key field is singular, in other words, it may not be an array or collection type.
-
-
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
-