public class

OFunctionParameters

extends Object
java.lang.Object
   ↳ org.odata4j.core.OFunctionParameters

Class Overview

A static factory to create immutable OFunctionParameter instances.

Summary

Public Methods
static <T> OFunctionParameter create(String name, T value)
Creates a new OFunctionParameter, inferring the edm-type from the value provided, which cannot be null.
static OFunctionParameter parse(String name, EdmType type, String value)
Creates a new OFunctionParameter by parsing a string value
[Expand]
Inherited Methods
From class java.lang.Object

Public Methods

public static OFunctionParameter create (String name, T value)

Creates a new OFunctionParameter, inferring the edm-type from the value provided, which cannot be null.

Parameters
name The property name
value The property value
Returns
  • a new OData property instance

public static OFunctionParameter parse (String name, EdmType type, String value)

Creates a new OFunctionParameter by parsing a string value

Parameters
name
type
value