Package org.apache.olingo.odata2.api.edm
Interface EdmTyped
-
- All Superinterfaces:
EdmNamed
- All Known Subinterfaces:
EdmElement,EdmNavigationProperty,EdmParameter,EdmProperty
public interface EdmTyped extends EdmNamed
@org.apache.olingo.odata2.DoNotImplement EdmTyped indicates if an EDM element is of a special type and holds the multiplicity of that type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdmMultiplicitygetMultiplicity()SeeEdmMultiplicityfor more information about possible multiplicities.EdmTypegetType()SeeEdmTypefor more information about possible types.
-
-
-
Method Detail
-
getType
EdmType getType() throws EdmException
SeeEdmTypefor more information about possible types.- Returns:
EdmType- Throws:
EdmException- Caso ocorra uma exceção EDM
-
getMultiplicity
EdmMultiplicity getMultiplicity() throws EdmException
SeeEdmMultiplicityfor more information about possible multiplicities.- Returns:
EdmMultiplicity- Throws:
EdmException- Caso ocorra uma exceção EDM
-
-