Uses of Class
org.odata4j.edm.EdmSimpleType

Packages that use EdmSimpleType
org.odata4j.core Core odata4j concepts. 
org.odata4j.edm Implementation of the EDM (Entity Data Model) - used as metadata in the OData protocol. 
org.odata4j.expression   
org.odata4j.format.json   
org.odata4j.producer The odata4j server-side (producer-side) API. 
org.odata4j.producer.inmemory   
org.odata4j.producer.jpa   
 

Uses of EdmSimpleType in org.odata4j.core
 

Methods in org.odata4j.core that return EdmSimpleType
 EdmSimpleType<V> OSimpleObject.getType()
          Gets the edm type, which will be an edm simple type
 

Methods in org.odata4j.core with parameters of type EdmSimpleType
static
<T> OSimpleObject<T>
OSimpleObjects.create(EdmSimpleType<T> type, Object value)
          Creates a new OSimpleObject instance given a type and value.
static OProperty<?> OProperties.null_(String name, EdmSimpleType<?> type)
          Creates a new OData property of the given edm simple type with a null value.
static
<V> OSimpleObject<V>
OSimpleObjects.parse(EdmSimpleType<V> type, String value)
          Parses a string value into a new OSimpleObject given an edm type.
static OProperty<?> OProperties.parseSimple(String name, EdmSimpleType type, String value)
          Creates a new OData property of the given edm-type with a value parsed from a string.
static
<T> OProperty<T>
OProperties.simple(String name, EdmSimpleType<T> type, Object value)
          Creates a new OData property of the given edm-type.
 

Uses of EdmSimpleType in org.odata4j.edm
 

Fields in org.odata4j.edm declared as EdmSimpleType
static EdmSimpleType<byte[]> EdmSimpleType.BINARY
           
static EdmSimpleType<Boolean> EdmSimpleType.BOOLEAN
           
static EdmSimpleType<UnsignedByte> EdmSimpleType.BYTE
           
static EdmSimpleType<LocalDateTime> EdmSimpleType.DATETIME
           
static EdmSimpleType<DateTime> EdmSimpleType.DATETIMEOFFSET
           
static EdmSimpleType<BigDecimal> EdmSimpleType.DECIMAL
           
static EdmSimpleType<Double> EdmSimpleType.DOUBLE
           
static EdmSimpleType<Guid> EdmSimpleType.GUID
           
static EdmSimpleType<Short> EdmSimpleType.INT16
           
static EdmSimpleType<Integer> EdmSimpleType.INT32
           
static EdmSimpleType<Long> EdmSimpleType.INT64
           
static EdmSimpleType<Byte> EdmSimpleType.SBYTE
           
static EdmSimpleType<Float> EdmSimpleType.SINGLE
           
static EdmSimpleType<String> EdmSimpleType.STRING
           
static EdmSimpleType<LocalTime> EdmSimpleType.TIME
           
 

Fields in org.odata4j.edm with type parameters of type EdmSimpleType
static Set<EdmSimpleType<?>> EdmSimpleType.ALL
          Immutable set of all edm simple types.
 

Methods in org.odata4j.edm that return EdmSimpleType
static
<V> EdmSimpleType<V>
EdmSimpleType.forJavaType(Class<?> javaType)
          Finds the edm simple type for a given java-type.
static EdmSimpleType<?> EdmType.getSimple(String fullyQualifiedTypeName)
          Gets an edm-type for a given type name.
 

Uses of EdmSimpleType in org.odata4j.expression
 

Methods in org.odata4j.expression with parameters of type EdmSimpleType
static LiteralExpression Expression.literal(EdmSimpleType<?> edmType, Object value)
           
 

Uses of EdmSimpleType in org.odata4j.format.json
 

Methods in org.odata4j.format.json with parameters of type EdmSimpleType
static OProperty<?> JsonTypeConverter.parse(String name, EdmSimpleType<?> type, String value, JsonStreamReaderFactory.JsonStreamTokenizer.JsonTokenType tokenType)
           
 

Uses of EdmSimpleType in org.odata4j.producer
 

Methods in org.odata4j.producer that return EdmSimpleType
 EdmSimpleType SimpleResponse.getType()
          Gets the type of the value
 

Methods in org.odata4j.producer with parameters of type EdmSimpleType
static SimpleResponse Responses.simple(EdmSimpleType<?> type, Object value)
           
static SimpleResponse Responses.simple(EdmSimpleType<?> type, String name, Object value)
           
 

Uses of EdmSimpleType in org.odata4j.producer.inmemory
 

Methods in org.odata4j.producer.inmemory that return EdmSimpleType
 EdmSimpleType<?> InMemoryTypeMapping.findEdmType(Class<?> clazz)
           
 

Uses of EdmSimpleType in org.odata4j.producer.jpa
 

Methods in org.odata4j.producer.jpa that return EdmSimpleType
 EdmSimpleType<T> PropertyResult.getType()
           
protected  EdmSimpleType<?> JPAEdmGenerator.toEdmType(SingularAttribute<?,?> sa)
           
 

Methods in org.odata4j.producer.jpa with parameters of type EdmSimpleType
static
<T> PropertyResult<T>
JPAResults.property(String name, EdmSimpleType<T> type, Object value)
           
 



http://odata4j.org