Package org.apache.olingo.odata2.api.edm
Interface EdmSimpleTypeFacade
-
public interface EdmSimpleTypeFacade@org.apache.olingo.odata2.DoNotImplement This facade is used as a hook into the core implementation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EdmSimpleTypegetEdmSimpleTypeInstance(EdmSimpleTypeKind typeKind)IMPORTANT: UseEdmSimpleTypeKind.getEdmSimpleTypeInstance()for the application development.EdmLiteralparseUriLiteral(String uriLiteral)IMPORTANT: UseEdmSimpleTypeKindparseUriLiteral for the implementation.
-
-
-
Method Detail
-
parseUriLiteral
EdmLiteral parseUriLiteral(String uriLiteral) throws EdmLiteralException
IMPORTANT: UseEdmSimpleTypeKindparseUriLiteral for the implementation.This method definition is used only inside the core of this library.
- Parameters:
uriLiteral- uniliteral- Returns:
- the parsed literal
- Throws:
EdmLiteralException- Caso ocorra uma exceção EDM
-
getEdmSimpleTypeInstance
EdmSimpleType getEdmSimpleTypeInstance(EdmSimpleTypeKind typeKind)
IMPORTANT: UseEdmSimpleTypeKind.getEdmSimpleTypeInstance()for the application development.This method definition is used only inside the core of this library.
- Parameters:
typeKind- for which an instance is requested- Returns:
- an instance of the corresponding
EdmSimpleTypeto givenEdmSimpleTypeKind
-
-