
org.odata4j.core.OSimpleObject Maven / Gradle / Ivy
The newest version!
package org.odata4j.core;
import org.odata4j.edm.EdmSimpleType;
/**
* An instance of an {@link EdmSimpleType}, a primitive value in the OData type system.
*
* The {@link OSimpleObjects} static factory class can be used to create OSimpleObject
instances.
*
* @param the Java class used to represent the simple type
* @see OSimpleObjects
*/
public interface OSimpleObject extends OObject {
/** Gets the value. */
V getValue();
/** Gets the edm type, which will be an edm simple type */
@Override
EdmSimpleType getType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy