Interface EntityIdentifierDefinition
-
- All Known Subinterfaces:
EncapsulatedEntityIdentifierDefinition,NonEncapsulatedEntityIdentifierDefinition
public interface EntityIdentifierDefinitionDescribes aspects of the identifier for an entity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EntityDefinitiongetEntityDefinition()booleanisEncapsulated()Is the entity identifier encapsulated? Meaning, is it represented by a single attribute?
-
-
-
Method Detail
-
isEncapsulated
boolean isEncapsulated()
Is the entity identifier encapsulated? Meaning, is it represented by a single attribute?- Returns:
trueindicates the identifier is encapsulated (and therefore this is castable toEncapsulatedEntityIdentifierDefinition);falsemeans it is not encapsulated (and therefore castable toNonEncapsulatedEntityIdentifierDefinition).
-
getEntityDefinition
EntityDefinition getEntityDefinition()
-
-