Class ImmutableAttributeMappingList
- java.lang.Object
-
- org.hibernate.metamodel.mapping.internal.ImmutableAttributeMappingList
-
- All Implemented Interfaces:
AttributeMappingsList
public final class ImmutableAttributeMappingList extends Object implements AttributeMappingsList
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
ImmutableAttributeMappingList.AttributeMappingIterator
static class
ImmutableAttributeMappingList.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
forEach(Consumer<? super AttributeMapping> attributeMappingConsumer)
AttributeMapping
get(int i)
void
indexedForEach(IndexedConsumer<? super AttributeMapping> consumer)
int
size()
-
-
-
Method Detail
-
size
public int size()
- Specified by:
size
in interfaceAttributeMappingsList
-
get
public AttributeMapping get(int i)
- Specified by:
get
in interfaceAttributeMappingsList
-
forEach
public void forEach(Consumer<? super AttributeMapping> attributeMappingConsumer)
- Specified by:
forEach
in interfaceAttributeMappingsList
-
indexedForEach
public void indexedForEach(IndexedConsumer<? super AttributeMapping> consumer)
- Specified by:
indexedForEach
in interfaceAttributeMappingsList
-
-