ODataEntityType class

Consists of APIs related to OData EntityType.

Package

com.sap.mobile.lib.parser

Syntax

public class ODataEntityType extends ParserDocument implements IODataEntityType

Implemented interfaces

Derived classes

Members

All members of ODataEntityType, including inherited members.

Constructors
Modifier and Type Constructor Description
public ODataEntityType()  
protected ODataEntityType(int[], String[])  
public ODataEntityType(ParserDocument)  
Methods
Modifier and Type Method Description
public List< IODataProperty > getGPUseInSearchPropertiesData() Returns The list of appropriate OData elements with 'true' use-in-search (Generic Player names-pace) attribute value.
public List< IODataProperty > getGPVisibleInDetailPropertiesData() Returns The list of appropriate OData elements with 'true' visible-in-detail (Generic Player names-pace) attribute value.
public List< IODataProperty > getGPVisibleInListPropertiesData() Returns The list of appropriate OData elements with 'true' visible-in-list (Generic Player names-pace) attribute value.
public List< String > getKeyPropertyNames() Returns the list of the values of the 'PropertyRef' OData element contained by the 'Key' OData element.
public String getName() Returns The value of the appropriate OData attribute.
public List< IODataNavigationProperty > getNavigationProperties() Returns The list of appropriate OData elements.
public IODataNavigationProperty getNavigationProperty(String) Returns The appropriate OData element with the given name.
public List< IODataProperty > getProperties() Returns The list of appropriate OData elements.
public List< IODataProperty > getPropertiesWithAttribute(String, String) Returns The list of appropriate OData elements with given attribute value.
public List< IODataProperty > getPropertiesWithAttribute(String, String, boolean) Returns The list of appropriate OData elements with given attribute value.
public IODataProperty getProperty(String) Returns The appropriate OData element with the given name.
public List< IODataProperty > getSAPSearchablePropertiesData() Returns The list of appropriate OData elements with 'true' searchable (SAP names-pace) attribute value.
protected IODataSchema getSchema()  
public List< IODataProperty > getSearchablePropertiesData(String) Returns The list of appropriate OData elements with 'true' attribute value of the given attribute.
public boolean hasStream() Returns The value of the appropriate OData attribute.
protected void setSchema(IODataSchema)  
Inherited members from IParserDocument
Modifier and Type Member Description
public abstract IParserDocument clone() Creates a copy of this object.
public abstract String getAttribute(String...) Returns the value of the first attribute with the given route.
public abstract List< String > getAttributes(String...) Returns all the values of attributes with the given route.
public abstract Map< String, String > getChildAttributeMap(String...) Returns all the name-value pairs of attributes contained by the element with the given route.
public abstract List< String > getChildAttributes(String...) Returns all the values of attributes contained by the element with the given route.
public abstract List< IParserDocument > getChildDocuments(String...) Returns the elements contained by the element with the given route.
public abstract List< IParserDocument > getChildDocumentsWithAttribute(String, String, String...) Returns the elements contained by the element with the given route and having the given attribute with the given value.
public abstract List< IParserDocument > getChildDocumentsWithAttribute(String, String, boolean, String...) Returns the elements contained by the element with the given route and having the given attribute with the given value.
public abstract IParserDocument getDocument(String...) Returns the first element with the given route.
public abstract List< IParserDocument > getDocuments(String...) Returns all the elements with the given route.
public abstract List< IParserDocument > getDocumentsWithAttribute(String, String, String...) Returns the elements with the given route that contains the given attribute with the given value.
public abstract List< IParserDocument > getDocumentsWithAttribute(String, String, boolean, String...) Returns the elements with the given route that contains the given attribute with the given value.
public abstract IParserDocument getDocumentWithAttribute(String, String, String...) Returns the first element with the given route that contains the given attribute with the given value.
public abstract IParserDocument getDocumentWithAttribute(String, String, boolean, String...) Returns the first element with the given route that contains the given attribute with the given value.
public abstract String getElementName() Returns The name of the root element of this document.
public abstract String getFunctionImportComplexPropertyValue(String...)  
public abstract String getPrefixForUri(String) Returns the appropriate name-space prefix for the given XML name-space URI.
public abstract String[] getStrings() Returns all the string values contained by this document.
public abstract String getValue(String...) Returns the value of the first element with the given route.
public abstract List< String > getValues(String...) Returns all the values of elements with the given route.
public abstract void putAttribute(String, String...) Sets the value of the attribute with the given route If attribute does not exist it will be created as well as all other non existing elements in the route.
public abstract void putDocument(IParserDocument, String...) Insert the document under the element with the given route inserted document will be placed before already existing documents with the same route name under All missing elements from the route will be created.
public abstract void putValue(String, String...) Sets the value of the first element with the given route.
public abstract boolean removeAttribute(String...) Removes first element with the given route.
public abstract boolean removeAttributes(String...) Removes all the attribute with the given route.
public abstract boolean removeDocument(String...) Removes first element with the given route For removing multiple element use setDocuemtns with null arguments.
public abstract void setAttributes(List< String >, String...) Sets all the values of the attributes with the given route Values will be paired to attributes in order Attributes with greater or equals index than size of new values will be untouched Attributes paired with null values will be removed.
public abstract void setDocuments(List< IParserDocument >, String...) Replaces all the elements with the given route Documents will be paired to elements in order Elements with greater or equals index than size of new elements will be untouched Element paired with null will be removed.
public abstract void setElementName(String, String...) Sets the name of the root element with the given route Use empty route for setting root name of this document.
public abstract void setValues(List< String >, String...) Sets all the values of the elements with the given rout Values will be paired to elements in order Elements with greater or equals index than size of new values will be untouched Null values will be treated as empty strings.
public abstract String toXMLString() Returns the XML string representation of this object.
Inherited members from IPersistable
Modifier and Type Member Description
public void read(BufferedReader)  
public void write(BufferedWriter)