Uses of Interface
org.odata4j.core.OProperty

Packages that use OProperty
org.odata4j.consumer   
org.odata4j.core   
org.odata4j.format.xml   
org.odata4j.internal   
org.odata4j.producer   
org.odata4j.producer.inmemory   
org.odata4j.producer.jpa   
 

Uses of OProperty in org.odata4j.consumer
 

Methods in org.odata4j.consumer with parameters of type OProperty
 OCreate<T> OCreateImpl.properties(OProperty<?>... props)
           
 OModify<T> OModifyImpl.properties(OProperty<?>... props)
           
 

Uses of OProperty in org.odata4j.core
 

Methods in org.odata4j.core that return OProperty
static OProperty<byte[]> OProperties.binary(String name, byte[] value)
           
static OProperty<Boolean> OProperties.boolean_(String name, Boolean value)
           
static OProperty<Byte> OProperties.byte_(String name, byte value)
           
static OProperty<List<OProperty<?>>> OProperties.complex(String name, String type, List<OProperty<?>> value)
           
static OProperty<LocalDateTime> OProperties.datetime(String name, Date value)
           
static OProperty<LocalDateTime> OProperties.datetime(String name, LocalDateTime value)
           
static OProperty<BigDecimal> OProperties.decimal(String name, BigDecimal value)
           
static OProperty<BigDecimal> OProperties.decimal(String name, double value)
           
static OProperty<BigDecimal> OProperties.decimal(String name, long value)
           
static OProperty<Double> OProperties.double_(String name, Double value)
           
 OProperty<?> OEntity.getProperty(String propName)
           
<T> OProperty<T>
OEntity.getProperty(String propName, Class<T> propClass)
           
static OProperty<Guid> OProperties.guid(String name, Guid value)
           
static OProperty<Guid> OProperties.guid(String name, String value)
           
static OProperty<Short> OProperties.int16(String name, Short value)
           
static OProperty<Integer> OProperties.int32(String name, Integer value)
           
static OProperty<Long> OProperties.int64(String name, Long value)
           
static OProperty<?> OProperties.null_(String name, String type)
           
static OProperty<?> OProperties.parse(String name, String type, String value)
           
static OProperty<Short> OProperties.short_(String name, Short value)
           
static
<T> OProperty<?>
OProperties.simple(String name, EdmType type, T value)
           
static OProperty<Float> OProperties.single(String name, Float value)
           
static OProperty<String> OProperties.string(String name, String value)
           
static OProperty<LocalTime> OProperties.time(String name, LocalTime value)
           
 

Methods in org.odata4j.core that return types with arguments of type OProperty
static OProperty<List<OProperty<?>>> OProperties.complex(String name, String type, List<OProperty<?>> value)
           
 List<OProperty<?>> OComplexType.getProperties()
           
 List<OProperty<?>> OEntity.getProperties()
           
 

Methods in org.odata4j.core with parameters of type OProperty
 OCreate<T> OCreate.properties(OProperty<?>... props)
           
 OModify<T> OModify.properties(OProperty<?>... props)
           
 

Method parameters in org.odata4j.core with type arguments of type OProperty
static OProperty<List<OProperty<?>>> OProperties.complex(String name, String type, List<OProperty<?>> value)
           
static OEntity OEntities.create(List<OProperty<?>> properties, List<OLink> links)
           
static OEntity OEntities.create(List<OProperty<?>> properties, List<OLink> links, String title)
           
 

Uses of OProperty in org.odata4j.format.xml
 

Fields in org.odata4j.format.xml with type parameters of type OProperty
 List<OProperty<?>> AtomFeedFormatParser.DataServicesAtomEntry.properties
           
 

Uses of OProperty in org.odata4j.internal
 

Method parameters in org.odata4j.internal with type arguments of type OProperty
static String InternalUtil.getEntityRelId(List<String> keyPropertyNames, List<OProperty<?>> entityProperties, String entitySetName)
           
 

Uses of OProperty in org.odata4j.producer
 

Method parameters in org.odata4j.producer with type arguments of type OProperty
 EntityResponse ODataProducer.createEntity(String entitySetName, List<OProperty<?>> properties)
           
 void ODataProducer.mergeEntity(String entitySetName, Object entityKey, List<OProperty<?>> properties)
           
 void ODataProducer.updateEntity(String entitySetName, Object entityKey, List<OProperty<?>> properties)
           
 

Uses of OProperty in org.odata4j.producer.inmemory
 

Method parameters in org.odata4j.producer.inmemory with type arguments of type OProperty
 EntityResponse InMemoryProducer.createEntity(String entitySetName, List<OProperty<?>> properties)
           
 void InMemoryProducer.mergeEntity(String entitySetName, Object entityKey, List<OProperty<?>> properties)
           
 void InMemoryProducer.updateEntity(String entitySetName, Object entityKey, List<OProperty<?>> properties)
           
 

Uses of OProperty in org.odata4j.producer.jpa
 

Method parameters in org.odata4j.producer.jpa with type arguments of type OProperty
 EntityResponse JPAProducer.createEntity(String entitySetName, List<OProperty<?>> properties)
           
 void JPAProducer.mergeEntity(String entitySetName, Object entityKey, List<OProperty<?>> properties)
           
 void JPAProducer.updateEntity(String entitySetName, Object entityKey, List<OProperty<?>> properties)
           
 



http://odata4j.org