コード例 #1
0
 /**
  * Creates a new OData property of the given edm simple type with a null value.
  *
  * @param name the property name
  * @param fqSimpleTypeName the property edm simple type
  * @return a new OData property instance
  */
 public static OProperty<?> null_(String name, String fqSimpleTypeName) {
   return new Impl<Object>(name, EdmType.getSimple(fqSimpleTypeName), null);
 }