Package org.apache.olingo.odata2.api.uri
Interface NavigationSegment
-
public interface NavigationSegmentNavigation segment, consisting of a navigation property, its target entity set, and, optionally, a list of key predicates to determine a single entity out of the target entity set. @org.apache.olingo.odata2.DoNotImplement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdmEntitySetgetEntitySet()Gets the target entity set.List<KeyPredicate>getKeyPredicates()Gets the key predicate for the target entity set.EdmNavigationPropertygetNavigationProperty()Gets the navigation property.
-
-
-
Method Detail
-
getNavigationProperty
EdmNavigationProperty getNavigationProperty()
Gets the navigation property.- Returns:
EdmNavigationPropertynavigation property of this navigation segment
-
getEntitySet
EdmEntitySet getEntitySet()
Gets the target entity set.- Returns:
EdmEntitySetentity set of this navigation segment
-
getKeyPredicates
List<KeyPredicate> getKeyPredicates()
Gets the key predicate for the target entity set.- Returns:
- List of
KeyPredicate: key predicate of this navigation segment
-
-