|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use OProperty | |
---|---|
org.odata4j.core | Core odata4j concepts. |
org.odata4j.format.json | |
org.odata4j.format.xml | |
org.odata4j.internal | |
org.odata4j.producer | The odata4j server-side (producer-side) API. |
org.odata4j.producer.jpa |
Uses of OProperty in org.odata4j.core |
---|
Methods in org.odata4j.core that return OProperty | ||
---|---|---|
static OProperty<byte[]> |
OProperties.binary(String name,
byte[] value)
Creates a new byte-array-valued OData property with EdmType.BINARY |
|
static OProperty<Byte[]> |
OProperties.binary(String name,
Byte[] value)
Creates a new byte-array-valued OData property with EdmType.BINARY |
|
static OProperty<Boolean> |
OProperties.boolean_(String name,
Boolean value)
Creates a new boolean-valued OData property with EdmType.BOOLEAN |
|
static OProperty<Byte> |
OProperties.byte_(String name,
byte value)
Creates a new byte-valued OData property with EdmType.BYTE |
|
static OProperty<Character> |
OProperties.character(String name,
Character value)
Creates a new String-valued OData property with EdmType.STRING |
|
static OProperty<List<OProperty<?>>> |
OProperties.complex(String name,
String type,
List<OProperty<?>> value)
Creates a new complex-valued OData property of the given edm-type. |
|
static OProperty<LocalDateTime> |
OProperties.datetime(String name,
Calendar value)
Creates a new LocalDateTime-valued OData property with EdmType.DATETIME |
|
static OProperty<LocalDateTime> |
OProperties.datetime(String name,
Date value)
Creates a new LocalDateTime-valued OData property with EdmType.DATETIME |
|
static OProperty<LocalDateTime> |
OProperties.datetime(String name,
LocalDateTime value)
Creates a new LocalDateTime-valued OData property with EdmType.DATETIME |
|
static OProperty<BigDecimal> |
OProperties.decimal(String name,
BigDecimal value)
Creates a new BigDecimal-valued OData property with EdmType.DECIMAL |
|
static OProperty<BigDecimal> |
OProperties.decimal(String name,
BigInteger value)
Creates a new BigDecimal-valued OData property with EdmType.DECIMAL |
|
static OProperty<BigDecimal> |
OProperties.decimal(String name,
double value)
Creates a new BigDecimal-valued OData property with EdmType.DECIMAL |
|
static OProperty<BigDecimal> |
OProperties.decimal(String name,
long value)
Creates a new BigDecimal-valued OData property with EdmType.DECIMAL |
|
static OProperty<Double> |
OProperties.double_(String name,
Double value)
Creates a new double-precision-valued OData property with EdmType.DOUBLE |
|
OProperty<?> |
OEntity.getProperty(String propName)
Get a property by name. |
|
|
OEntity.getProperty(String propName,
Class<T> propClass)
Get a property by name as a strongly-typed OProperty. |
|
static OProperty<Guid> |
OProperties.guid(String name,
Guid value)
Creates a new Guid-valued OData property with EdmType.GUID |
|
static OProperty<Guid> |
OProperties.guid(String name,
String value)
Creates a new Guid-valued OData property with EdmType.GUID |
|
static OProperty<Short> |
OProperties.int16(String name,
Short value)
Creates a new short-valued OData property with EdmType.INT16 |
|
static OProperty<Integer> |
OProperties.int32(String name,
Integer value)
Creates a new integer-valued OData property with EdmType.INT32 |
|
static OProperty<Long> |
OProperties.int64(String name,
Long value)
Creates a new long-valued OData property with EdmType.INT64 |
|
static OProperty<?> |
OProperties.null_(String name,
String type)
Creates a new OData property of the given edm-type with a null value. |
|
static OProperty<?> |
OProperties.parse(String name,
String type,
String value)
Creates a new OData property of the given edm-type with a value parsed from a string. |
|
static
|
OProperties.simple(String name,
EdmType type,
T value)
Creates a new OData property of the given edm-type. |
|
static
|
OProperties.simple(String name,
EdmType type,
T value,
boolean exceptionOnUnknownType)
Creates a new OData property of the given edm-type. |
|
static
|
OProperties.simple(String name,
T value)
Creates a new OData property, inferring the edm-type from the value provided, which cannot be null. |
|
static OProperty<Float> |
OProperties.single(String name,
Float value)
Creates a new single-precision-valued OData property with EdmType.SINGLE |
|
static OProperty<String> |
OProperties.string(String name,
char value)
Creates a new String-valued OData property with EdmType.STRING |
|
static OProperty<String> |
OProperties.string(String name,
String value)
Creates a new String-valued OData property with EdmType.STRING |
|
static OProperty<LocalTime> |
OProperties.time(String name,
Date value)
Creates a new LocalTime-valued OData property with EdmType.TIME |
|
static OProperty<LocalTime> |
OProperties.time(String name,
LocalTime value)
Creates a new LocalTime-valued OData property with EdmType.TIME |
Methods in org.odata4j.core that return types with arguments of type OProperty | ||
---|---|---|
Set<OProperty<?>> |
OEntityKey.asComplexProperties()
Gets the values of complex entity-key. |
|
static OProperty<List<OProperty<?>>> |
OProperties.complex(String name,
String type,
List<OProperty<?>> value)
Creates a new complex-valued OData property of the given edm-type. |
|
List<OProperty<?>> |
OEntity.getProperties()
Get all properties of this instance. |
|
static
|
OFuncs.namedValueToProperty()
|
|
static Func1<NamedValue,OProperty<?>> |
OFuncs.namedValueToPropertyRaw()
|
|
static Comparator<OProperty<?>> |
OComparators.propertyByName()
|
|
static Predicate1<OProperty<?>> |
OPredicates.propertyNameEquals(String propName)
|
Methods in org.odata4j.core with parameters of type OProperty | |
---|---|
OModifyRequest<T> |
OModifyRequest.properties(OProperty<?>... props)
Set properties on the new entity. |
OCreateRequest<T> |
OCreateRequest.properties(OProperty<?>... props)
Set properties on the new entity. |
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)
Creates a new complex-valued OData property of the given edm-type. |
static OEntity |
OEntities.create(EdmEntitySet entitySet,
OEntityKey entityKey,
List<OProperty<?>> properties,
List<OLink> links)
Creates a new entity. |
static OEntity |
OEntities.create(EdmEntitySet entitySet,
OEntityKey entityKey,
List<OProperty<?>> properties,
List<OLink> links,
String title,
String categoryTerm)
Creates a new entity with additional Atom information. |
static OEntity |
OEntities.createRequest(EdmEntitySet entitySet,
List<OProperty<?>> properties,
List<OLink> links)
Creates a new request-entity. |
static OEntity |
OEntities.createRequest(EdmEntitySet entitySet,
List<OProperty<?>> properties,
List<OLink> links,
String title,
String categoryTerm)
Creates a new request-entity with additional Atom information. |
static OEntityKey |
OEntityKey.infer(EdmEntitySet entitySet,
List<OProperty<?>> props)
Creates an entity-key using key information from the given entity-set and values from the given property list. |
OModifyRequest<T> |
OModifyRequest.properties(Iterable<OProperty<?>> props)
Set properties on the new entity. |
OCreateRequest<T> |
OCreateRequest.properties(Iterable<OProperty<?>> props)
Set properties on the new entity. |
Uses of OProperty in org.odata4j.format.json |
---|
Methods in org.odata4j.format.json that return OProperty | |
---|---|
static OProperty<?> |
JsonTypeConverter.parse(String name,
EdmType type,
String value)
|
Methods in org.odata4j.format.json with parameters of type OProperty | |
---|---|
protected void |
JsonFormatWriter.writeProperty(JsonWriter jw,
OProperty<?> prop)
|
Method parameters in org.odata4j.format.json with type arguments of type OProperty | |
---|---|
protected void |
JsonFormatWriter.writeOProperties(JsonWriter jw,
List<OProperty<?>> properties)
|
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
|
Methods in org.odata4j.format.xml that return types with arguments of type OProperty | |
---|---|
static Iterable<OProperty<?>> |
AtomFeedFormatParser.parseProperties(XMLEventReader2 reader,
StartElement2 propertiesElement)
|
Methods in org.odata4j.format.xml with parameters of type OProperty | |
---|---|
protected void |
XmlFormatWriter.writeProperty(XMLWriter2 writer,
OProperty<?> prop,
boolean isDocumentElement)
|
Method parameters in org.odata4j.format.xml with type arguments of type OProperty | |
---|---|
protected String |
XmlFormatWriter.writeEntry(XMLWriter2 writer,
OEntity oe,
List<OProperty<?>> entityProperties,
List<OLink> entityLinks,
String entitySetName,
String baseUri,
String updated,
EdmEntitySet ees,
boolean isResponse)
|
protected void |
XmlFormatWriter.writeProperties(XMLWriter2 writer,
List<OProperty<?>> 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 |
---|
Methods in org.odata4j.producer that return OProperty | |
---|---|
OProperty<?> |
PropertyResponse.getProperty()
Gets the property value. |
Methods in org.odata4j.producer with parameters of type OProperty | |
---|---|
static PropertyResponse |
Responses.property(OProperty<?> property)
Create a new PropertyResponse instance. |
Uses of OProperty in org.odata4j.producer.jpa |
---|
Methods in org.odata4j.producer.jpa with parameters of type OProperty | |
---|---|
protected static Object |
JPAProducer.coercePropertyValue(OProperty<?> prop,
Class<?> javaType)
|
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |