Class KeyValuePair

  • All Implemented Interfaces:
    com.github.davidmoten.odata.client.ODataType

    public class KeyValuePair
    extends Object
    implements com.github.davidmoten.odata.client.ODataType
    “Key value pair for storing custom settings”
    • Field Detail

      • contextPath

        protected com.github.davidmoten.odata.client.ContextPath contextPath
      • unmappedFields

        protected com.github.davidmoten.odata.client.internal.UnmappedFieldsImpl unmappedFields
      • odataType

        protected String odataType
      • value

        protected String value
    • Constructor Detail

      • KeyValuePair

        protected KeyValuePair()
    • Method Detail

      • odataTypeName

        public String odataTypeName()
        Specified by:
        odataTypeName in interface com.github.davidmoten.odata.client.ODataType
      • getName

        public Optional<String> getName()
        “Name for this key-value pair”
        Returns:
        property name
      • withName

        public KeyValuePair withName​(String name)
        Returns an immutable copy of this with just the name field changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that when this.patch() is called (if available)on the returned object only the changed fields are submitted.

        “Name for this key-value pair”

        Parameters:
        name - new value of name field (as defined in service metadata)
        Returns:
        immutable copy of this with just the name field changed
      • getValue

        public Optional<String> getValue()
        “Value for this key-value pair”
        Returns:
        property value
      • withValue

        public KeyValuePair withValue​(String value)
        Returns an immutable copy of this with just the value field changed. Field description below. The field name is also added to an internal map of changed fields in the returned object so that when this.patch() is called (if available)on the returned object only the changed fields are submitted.

        “Value for this key-value pair”

        Parameters:
        value - new value of value field (as defined in service metadata)
        Returns:
        immutable copy of this with just the value field changed
      • getUnmappedFields

        public com.github.davidmoten.odata.client.UnmappedFields getUnmappedFields()
        Specified by:
        getUnmappedFields in interface com.github.davidmoten.odata.client.ODataType
      • postInject

        public void postInject​(boolean addKeysToContextPath)
        Specified by:
        postInject in interface com.github.davidmoten.odata.client.ODataType
      • builder

        public static KeyValuePair.Builder builder()
        Returns a builder which is used to create a new instance of this class (given that this class is immutable).
        Returns:
        a new Builder for this class