Enum Class PluralAttributeIndexNature
java.lang.Object
java.lang.Enum<PluralAttributeIndexNature>
org.hibernate.boot.model.source.spi.PluralAttributeIndexNature
- All Implemented Interfaces:
Serializable
,Comparable<PluralAttributeIndexNature>
,Constable
Describes the nature of plural attribute indexes in terms of relational implications.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe map key is an aggregated compositeThe collection indexes are basic, simple values.The map key is represented by a Hibernate ANY mappingThe map key is an association identified by a column(s) on the collection table.A sequential array/list index -
Method Summary
Modifier and TypeMethodDescriptionstatic PluralAttributeIndexNature
Returns the enum constant of this class with the specified name.static PluralAttributeIndexNature[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SEQUENTIAL
A sequential array/list index -
BASIC
The collection indexes are basic, simple values. -
AGGREGATE
The map key is an aggregated composite -
MANY_TO_MANY
The map key is an association identified by a column(s) on the collection table. -
MANY_TO_ANY
The map key is represented by a Hibernate ANY mapping
-
-
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
-