public enum Relationship extends java.lang.Enum<Relationship>
SecondaryKey.relate()
annotation.Enum Constant and Description |
---|
MANY_TO_MANY
Relates many entities to many secondary keys.
|
MANY_TO_ONE
Relates many entities to one secondary key.
|
ONE_TO_MANY
Relates one entity to many secondary keys.
|
ONE_TO_ONE
Relates one entity to one secondary key.
|
Modifier and Type | Method and Description |
---|---|
static Relationship |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Relationship[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Relationship MANY_TO_ONE
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.
public static final Relationship ONE_TO_MANY
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.
public static final Relationship MANY_TO_MANY
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.
public static final Relationship ONE_TO_ONE
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.
public static Relationship[] values()
for (Relationship c : Relationship.values()) System.out.println(c);
public static Relationship valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright (c) 2002, 2017 Oracle and/or its affiliates. All rights reserved.