
org.odata4j.core.NamedValue Maven / Gradle / Ivy
The newest version!
package org.odata4j.core;
/**
* A strongly-typed named value.
* No behavior or semantics are implied, this is simply a convenient reusable interface.
* The {@link NamedValues} static factory class can be used to create NamedValue
instances.
*
* @param the value's java-type
* @see NamedValues
*/
public interface NamedValue extends Named {
/**
* Gets the value.
*
* @return the value
*/
T getValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy