Class EmptyAttributeMappingsMap
- java.lang.Object
-
- org.hibernate.metamodel.mapping.internal.EmptyAttributeMappingsMap
-
- All Implemented Interfaces:
AttributeMappingsMap
public final class EmptyAttributeMappingsMap extends Object implements AttributeMappingsMap
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.hibernate.metamodel.mapping.AttributeMappingsMap
AttributeMappingsMap.Builder
-
-
Field Summary
Fields Modifier and Type Field Description static EmptyAttributeMappingsMap
INSTANCE
-
Constructor Summary
Constructors Constructor Description EmptyAttributeMappingsMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
forEachValue(Consumer<? super AttributeMapping> action)
AttributeMapping
get(String name)
int
size()
Iterable<AttributeMapping>
valueIterator()
-
-
-
Field Detail
-
INSTANCE
public static final EmptyAttributeMappingsMap INSTANCE
-
-
Method Detail
-
forEachValue
public void forEachValue(Consumer<? super AttributeMapping> action)
- Specified by:
forEachValue
in interfaceAttributeMappingsMap
-
size
public int size()
- Specified by:
size
in interfaceAttributeMappingsMap
-
get
public AttributeMapping get(String name)
- Specified by:
get
in interfaceAttributeMappingsMap
-
valueIterator
public Iterable<AttributeMapping> valueIterator()
- Specified by:
valueIterator
in interfaceAttributeMappingsMap
-
-