Class PersonOneToOneLink<ObjectT extends VdmObject<?>>

java.lang.Object
com.sap.cloud.sdk.datamodel.odata.helper.EntityLink<PersonLink<ObjectT>,Person,ObjectT>
com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.ehsincidentcreate.link.PersonLink<ObjectT>
com.sap.cloud.sdk.s4hana.datamodel.odata.namespaces.ehsincidentcreate.link.PersonOneToOneLink<ObjectT>
Type Parameters:
ObjectT - Entity type of subclasses from VdmObject.
All Implemented Interfaces:
EntitySelectable<Person>, OneToOneLink<Person,ObjectT>, PersonSelectable

public class PersonOneToOneLink<ObjectT extends VdmObject<?>> extends PersonLink<ObjectT> implements OneToOneLink<Person,ObjectT>
Template class to represent entity navigation links of Person to other entities, where the cardinality of the related entity is at most 1. This class extends PersonLink and provides an additional filter function.
  • Constructor Details

    • PersonOneToOneLink

      public PersonOneToOneLink(String fieldName)
      Use the constants declared in each entity inner class. Instantiating directly requires knowing the underlying OData field names, so use with caution.
      Parameters:
      fieldName - OData navigation field name. Must match the field returned by the underlying OData service.
  • Method Details

    • filter

      @Nonnull public ExpressionFluentHelper<Person> filter(@Nonnull ExpressionFluentHelper<ObjectT> filterExpression)
      Query modifier to restrict the result set to entities for which this expression (formulated over a property of a related entity) evaluates to true. Note that filtering on a related entity does not expand the selection of the respective query to that entity.
      Specified by:
      filter in interface OneToOneLink<Person,ObjectT extends VdmObject<?>>
      Parameters:
      filterExpression - A filter expression on the related entity.
      Returns:
      A filter expression over a related entity, scoped to the parent entity.